changeset 2330:4420aeeb8ff9

* configure: Add `--x-includes' and `--x-libraries' options. I think these are dopey, but no less than three alpha testers, at large sites, have said they have their X files installed in odd places. Implement them by setting C_SWITCH_X_SITE and LD_SWITCH_X_SITE in src/config.h.
author Jim Blandy <jimb@redhat.com>
date Tue, 23 Mar 1993 05:53:36 +0000
parents b8028b77b69a
children 4d6de8716513
files configure1.in
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/configure1.in	Tue Mar 23 05:31:35 1993 +0000
+++ b/configure1.in	Tue Mar 23 05:53:36 1993 +0000
@@ -96,7 +96,7 @@
 config_h_opts=" \
 HAVE_X_WINDOWS HAVE_X11 HAVE_X_MENU \
 SIGTYPE GNU_MALLOC REL_ALLOC LISP_FLOAT_TYPE HAVE_CONST\
-LD_SWITCH_SITE C_SWITCH_SITE"
+LD_SWITCH_X_SITE C_SWITCH_X_SITE"
 
 ### Record all the arguments, so we can save them in config.status.
 arguments="$@"
@@ -198,7 +198,7 @@
 	    shift; val="$1"
 	  fi
 	  x_includes="${val}"
-	  C_SWITCH_SITE="-I${x_includes}"
+	  C_SWITCH_X_SITE="-I${x_includes}"
         ;;
 	"x-libraries" )
 	  ## If the value was omitted, get it from the next argument.
@@ -213,7 +213,7 @@
 	    shift; val="$1"
 	  fi
 	  x_libraries="${val}"
-	  LD_SWITCH_SITE="-L${x_libraries}"
+	  LD_SWITCH_X_SITE="-L${x_libraries}"
         ;;
 
 	## Has the user asked for some help?