diff options
| author | Jim Blandy | 1993-03-23 05:53:36 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-03-23 05:53:36 +0000 |
| commit | 033791beb4bca2b91f74c39c346972f9432f442c (patch) | |
| tree | 507fb09aa3a56b060a39a9fa258b5de19ddd7ff4 | |
| parent | 9c7a7556b5479e03cb4c852836fb33f24cb9f8d1 (diff) | |
| download | emacs-033791beb4bca2b91f74c39c346972f9432f442c.tar.gz emacs-033791beb4bca2b91f74c39c346972f9432f442c.zip | |
* 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.
| -rwxr-xr-x | configure1.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure1.in b/configure1.in index 88aee113e2e..89b8450a620 100755 --- a/configure1.in +++ b/configure1.in | |||
| @@ -96,7 +96,7 @@ unsuccessful after disturbing the status quo, it removes config.status." | |||
| 96 | config_h_opts=" \ | 96 | config_h_opts=" \ |
| 97 | HAVE_X_WINDOWS HAVE_X11 HAVE_X_MENU \ | 97 | HAVE_X_WINDOWS HAVE_X11 HAVE_X_MENU \ |
| 98 | SIGTYPE GNU_MALLOC REL_ALLOC LISP_FLOAT_TYPE HAVE_CONST\ | 98 | SIGTYPE GNU_MALLOC REL_ALLOC LISP_FLOAT_TYPE HAVE_CONST\ |
| 99 | LD_SWITCH_SITE C_SWITCH_SITE" | 99 | LD_SWITCH_X_SITE C_SWITCH_X_SITE" |
| 100 | 100 | ||
| 101 | ### Record all the arguments, so we can save them in config.status. | 101 | ### Record all the arguments, so we can save them in config.status. |
| 102 | arguments="$@" | 102 | arguments="$@" |
| @@ -198,7 +198,7 @@ Set it to either \`yes' or \`no'." | |||
| 198 | shift; val="$1" | 198 | shift; val="$1" |
| 199 | fi | 199 | fi |
| 200 | x_includes="${val}" | 200 | x_includes="${val}" |
| 201 | C_SWITCH_SITE="-I${x_includes}" | 201 | C_SWITCH_X_SITE="-I${x_includes}" |
| 202 | ;; | 202 | ;; |
| 203 | "x-libraries" ) | 203 | "x-libraries" ) |
| 204 | ## If the value was omitted, get it from the next argument. | 204 | ## If the value was omitted, get it from the next argument. |
| @@ -213,7 +213,7 @@ Set it to either \`yes' or \`no'." | |||
| 213 | shift; val="$1" | 213 | shift; val="$1" |
| 214 | fi | 214 | fi |
| 215 | x_libraries="${val}" | 215 | x_libraries="${val}" |
| 216 | LD_SWITCH_SITE="-L${x_libraries}" | 216 | LD_SWITCH_X_SITE="-L${x_libraries}" |
| 217 | ;; | 217 | ;; |
| 218 | 218 | ||
| 219 | ## Has the user asked for some help? | 219 | ## Has the user asked for some help? |