You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
581 B

--- a/configure 2005-08-24 09:45:23.000000000 +0200
+++ b/configure 2005-08-24 09:45:08.000000000 +0200
@@ -1977,11 +1977,15 @@
if test "$x_includes" != "NONE"; then
- CFLAGS="$CFLAGS -I$x_includes"
+ if test "$x_includes" != ""; then
+ CFLAGS="$CFLAGS -I$x_includes"
+ fi
fi
if test "$x_libraries" != "NONE"; then
- LDFLAGS="$LDFLAGS -L$x_libraries"
+ if test "$x_libraries" != ""; then
+ LDFLAGS="$LDFLAGS -L$x_libraries"
+ fi
fi
echo $ac_n "checking for XOpenDisplay in -lX11""... $ac_c" 1>&6