On Samstag, 15. September 2007, Stefan Lucke wrote:
> Hi,
> 
> for some reason X11 is enabled by autogen.sh:
> Building Core Systems:
>   Linux FBDev support       yes
>   X11 support               yes
>   OSX support               no
>   SDL support               no
>   VNC support               no

> A grep 11 con.log finds:
> 
> checking X11/X.h usability... no
> checking X11/X.h presence... no
> checking for X11/X.h... no
> config.status: creating systems/x11/Makefile
>   X11 support               yes
> 

Seems to fixable :-) see attached fix.


-- 
Stefan Lucke
diff --git a/configure.in b/configure.in
index 3582f3e..7130451 100644
--- a/configure.in
+++ b/configure.in
@@ -133,7 +133,7 @@ AC_ARG_ENABLE(x11,
 if test "$enable_x11" = "yes"; then
   CFLAGS_saved="$CFLAGS"
   CFLAGS="$CFLAGS -I/usr/X11R6/include"
-  AC_CHECK_HEADER(X11/X.h, x11_found=yes, x11_found=yes)
+  AC_CHECK_HEADER(X11/X.h, x11_found=yes, x11_found=no)
   CFLAGS="$CFLAGS_saved"
   if test "$x11_found" = no; then
     enable_x11=no
_______________________________________________
directfb-dev mailing list
[email protected]
http://mail.directfb.org/cgi-bin/mailman/listinfo/directfb-dev

Reply via email to