El sáb, 05-04-2008 a las 13:22 -0700, Daniel Fetchinson escribió:
> Hi folks,
> 
> I've written a gtk app which I'd like to distribute in source format
> but I don't have too much experience with autoconf and friends. I
> compile the program manually like this:
> 
> gcc -DHAVE_CONFIG_H -I. -g -O2 -MT myprog.o -MD -MP -MF
> ".deps/myprog.Tpo" `pkg-config --cflags gtk+-2.0` -c -o myprog.o
> myprog.c
> gcc -g -O2 -o myprog myprog.o -lXrandr -lXrender -lX11 `pkg-config
> --libs gtk+-2.0`
> 
[...]
> I got this by copying configure.ac from some other project. As you can
> see the X dependencies are there but how do I put in the right gtk
> flags and dependencies?


You use PKG_CHECK_MODULES with the gtk+-2.0 module, in the same way you
did for xrandr.

In general, you should use PKG_CHECK_MODULES for any module that works
with pkg-config. Check pkg-config --list-all to see these modules.

Claudio

-- 
Claudio Saavedra <[EMAIL PROTECTED]>

_______________________________________________
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Reply via email to