]> git.cworth.org Git - fips/commitdiff
configure: Add pkg-config-based check for libX11
authorCarl Worth <cworth@cworth.org>
Thu, 27 Jun 2013 20:22:54 +0000 (13:22 -0700)
committerCarl Worth <cworth@cworth.org>
Thu, 27 Jun 2013 20:22:54 +0000 (13:22 -0700)
Nothing in fips itself needs to link against libX11, but we'll soon be
adding a test-suite program that needs to be able to.

configure

index dd0a6a686d2dc73599e4791fa458ca1b59a8f7d7..c59820fee7cbd6f571604689505c6531e7f4d84e 100755 (executable)
--- a/configure
+++ b/configure
@@ -309,6 +309,17 @@ else
 fi
 rm -f glx-minimal glx-minimal.c
 
+printf "       Checking for X11... "
+have_x11=No
+if pkg-config --exists x11; then
+  printf "Yes.\n"
+  have_x11=Yes
+  x11_cflags=$(pkg-config --cflags x11)
+  x11_ldflags=$(pkg-config --libs x11)
+else
+  printf "No.\n"
+fi
+
 printf "       Checking for EGL/egl.h... "
 have_egl=No
 if pkg-config --exists egl; then
@@ -528,10 +539,17 @@ LIBELF_LDFLAGS = ${libelf_ldflags}
 # Whether GLX headers are available
 HAVE_GLX = ${have_glx}
 
-# Flags needed to find GL and GLX header files (GL/gl.h and GL/glx.h)
+# Flags needed to compile and link against libGL
 GL_CFLAGS = ${gl_cflags}
 GL_LDFLAGS = ${gl_ldflags}
 
+# Wheter X11 headers and library are available
+HAVE_X11 = ${have_x11}
+
+# Flags needs to compile and link against libX11
+X11_CLFLAGS = ${x11_cflags}
+X11_LDFLAGS = ${x11_ldflags}
+
 # Whether EGL headers are available
 HAVE_EGL = ${have_egl}