On Wed, 2008-11-12 at 13:02 -0500, Dr. Michael J. Chudobiak wrote:
> What is the correct way to check for the presence of gdkx.h on a system? 

if CFLAGS and LIBS are required:

PKG_CHECK_MODULES(GDK_X11, [gdk-x11-2.0],
                  [have_gdk_x11=yes],
                  [have_gdk_x11=no])

or, if mere existence is required:

PKG_CHECK_EXISTS([gdk-x11-2.0],
                 [have_gdk_x11=yes],
                 [have_gdk_x11=no])

ciao,
 Emmanuele.

-- 
Emmanuele Bassi,
W: http://www.emmanuelebassi.net
B: http://log.emmanuelebassi.net

_______________________________________________
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