changeset 1569:50d9888d201d

Fixed bug #167 The configure script parses the value of $X_LIBS when looking at the --enable-x11-shared, which is getting set on Ubuntu 5.10 to "-L/usr/X11R6/lib" ... however, Ubuntu stores all the Xlib stuff in /usr/lib. The end result in SDL is that the dynamic X11 stuff gets disabled by default, unless you override like this: ./configure --x-libraries=/usr/lib
author Sam Lantinga <slouken@libsdl.org>
date Tue, 21 Mar 2006 09:51:33 +0000
parents 1f3f39f9cfcf
children a740bca2a1b1
files configure.in
diffstat 1 files changed, 9 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Tue Mar 21 09:40:01 2006 +0000
+++ b/configure.in	Tue Mar 21 09:51:33 2006 +0000
@@ -773,11 +773,15 @@
                     x11ext_lib='libXext.so'
                     ;;
                 *)
-                    if test "x$X_LIBS" = "x"; then X_LIBS="-L/usr/lib"; fi
-                    x11_lib_spec=[`echo $X_LIBS | sed 's/.*-L\([^ ]*\).*/\1\/libX11.so.[0-9]/'`]
-                    x11_lib=`ls $x11_lib_spec 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`
-                    x11ext_lib_spec=[`echo $X_LIBS | sed 's/.*-L\([^ ]*\).*/\1\/libXext.so.[0-9]/'`]
-                    x11ext_lib=`ls $x11ext_lib_spec 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`
+                    x11_lib_spec=[`echo $X_LIBS | sed 's/.*-L\([^ ]*\).*/\1/'`]
+                    for path in $x11_lib_path /usr/lib /usr/X11/lib /usr/X11R6/lib
+                    do if test "x$x11_lib" = "x"; then
+                           x11_lib=[`ls $path/libX11.so.[0-9] 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`]
+                       fi
+                       if test "x$x11ext_lib" = "x"; then
+                           x11ext_lib=[`ls $path/libXext.so.[0-9] 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`]
+                       fi
+                    done
                     ;;
             esac