diff options
| author | Richard M. Stallman | 1993-05-25 16:47:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-05-25 16:47:29 +0000 |
| commit | b735d4b34ba59e11d35e55bb3630c96fdcda98b6 (patch) | |
| tree | 9e014270751cfa80e4526a2b7168cda7a1eef40f | |
| parent | f6f6d98c0fd7393dd99826eec5d63fdb12f4f897 (diff) | |
| download | emacs-b735d4b34ba59e11d35e55bb3630c96fdcda98b6.tar.gz emacs-b735d4b34ba59e11d35e55bb3630c96fdcda98b6.zip | |
Fix some messages. Support -with-gnu-cc.
| -rwxr-xr-x | configure1.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure1.in b/configure1.in index 1238db91d6d..5635474b0fb 100755 --- a/configure1.in +++ b/configure1.in | |||
| @@ -71,9 +71,9 @@ short_usage="Usage: ${progname} CONFIGURATION [-OPTION[=VALUE] ...] | |||
| 71 | Set compilation and installation parameters for GNU Emacs, and report. | 71 | Set compilation and installation parameters for GNU Emacs, and report. |
| 72 | CONFIGURATION specifies the machine and operating system to build for. | 72 | CONFIGURATION specifies the machine and operating system to build for. |
| 73 | --with-x Support the X Window System. | 73 | --with-x Support the X Window System. |
| 74 | --with-x=no Don't support the X Window System. | 74 | --with-x=no Don't support X. |
| 75 | --x-includes=DIR Search for X Window System header files in DIR. | 75 | --x-includes=DIR Search for X header files in DIR. |
| 76 | --x-libraries=DIR Search for X Window System libraries in DIR. | 76 | --x-libraries=DIR Search for X libraries in DIR. |
| 77 | --with-gcc Use GCC to compile Emacs. | 77 | --with-gcc Use GCC to compile Emacs. |
| 78 | --with-gcc=no Don't use GCC to compile Emacs. | 78 | --with-gcc=no Don't use GCC to compile Emacs. |
| 79 | --run-in-place Use libraries and data files directly out of the | 79 | --run-in-place Use libraries and data files directly out of the |
| @@ -148,7 +148,7 @@ Set it to either \`yes' or \`no'." | |||
| 148 | ;; | 148 | ;; |
| 149 | 149 | ||
| 150 | ## Has the user specified whether or not they want GCC? | 150 | ## Has the user specified whether or not they want GCC? |
| 151 | "with_gcc" ) | 151 | "with_gcc" | "with_gnu_cc" ) |
| 152 | ## Make sure the value given was either "yes" or "no". | 152 | ## Make sure the value given was either "yes" or "no". |
| 153 | case "${val}" in | 153 | case "${val}" in |
| 154 | y | ye | yes ) val=yes ;; | 154 | y | ye | yes ) val=yes ;; |
| @@ -912,7 +912,7 @@ esac | |||
| 912 | case "${window_system}" in | 912 | case "${window_system}" in |
| 913 | "none" | "x11" | "x10" ) ;; | 913 | "none" | "x11" | "x10" ) ;; |
| 914 | "" ) | 914 | "" ) |
| 915 | echo " No window system specifed. Looking for X Windows." | 915 | echo " No window system specifed. Looking for X window system." |
| 916 | window_system=none | 916 | window_system=none |
| 917 | if [ -r /usr/lib/libX11.a \ | 917 | if [ -r /usr/lib/libX11.a \ |
| 918 | -o -d /usr/include/X11 \ | 918 | -o -d /usr/include/X11 \ |