]> code.delx.au - gnu-emacs/commitdiff
Make sure x_default_search_path is always set even
authorAndreas Schwab <schwab@suse.de>
Mon, 23 Oct 2006 15:28:18 +0000 (15:28 +0000)
committerAndreas Schwab <schwab@suse.de>
Mon, 23 Oct 2006 15:28:18 +0000 (15:28 +0000)
when x_libraries is empty, and look in .../share as well for each
library directory.

configure.in

index 03ef25375b41ef5bb5ee99ea02badbd91ff49b80..a64d161a79a74d7e0368fa0fa834353264d86588 100644 (file)
@@ -1720,11 +1720,18 @@ else
   window_system=x11
 fi
 
-if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
-  LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"`
-  LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"`
+if test "${x_libraries}" != NONE; then
+  if test -n "${x_libraries}"; then
+    LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"`
+    LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"`
+  fi
   x_default_search_path=""
-  for x_library in `echo ${x_libraries} | sed -e "s/:/ /g"`; do
+  x_search_path=${x_libraries}
+  if test -z "${x_search_path}"; then
+    x_search_path=/usr/lib
+  fi
+  for x_library in `echo ${x_search_path}: | \
+                   sed -e "s/:/ /g" -e p -e "s:/lib[[^ /]]* :/share :g"`; do
     x_search_path="\
 ${x_library}/X11/%L/%T/%N%C%S:\
 ${x_library}/X11/%l/%T/%N%C%S:\