diff options
| author | Glenn Morris | 2008-01-25 04:32:52 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-01-25 04:32:52 +0000 |
| commit | 5b940d5a6974b2ec2a0090f8a77958c6d97b2df0 (patch) | |
| tree | 19d4525337880087abbdd2e1feacdf98b833115e | |
| parent | e0df1b73db61b652198ab72a7ab0d9791f29a0a8 (diff) | |
| download | emacs-5b940d5a6974b2ec2a0090f8a77958c6d97b2df0.tar.gz emacs-5b940d5a6974b2ec2a0090f8a77958c6d97b2df0.zip | |
Correct usage of OPTION_DEFAULT_ON, OPTION_DEFAULT_OFF so that the
defaults are as they used to be.
Default `Carbon' to off (it's unsupported).
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | configure.in | 26 |
2 files changed, 22 insertions, 10 deletions
| @@ -1,3 +1,9 @@ | |||
| 1 | 2008-01-25 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * configure.in: Correct usage of OPTION_DEFAULT_ON, | ||
| 4 | OPTION_DEFAULT_OFF so that the defaults are as they used to be. | ||
| 5 | Default `Carbon' to off (it's unsupported). | ||
| 6 | |||
| 1 | 2008-01-24 Glenn Morris <rgm@gnu.org> | 7 | 2008-01-24 Glenn Morris <rgm@gnu.org> |
| 2 | 8 | ||
| 3 | * configure.in: Standardize dbus-related messages. | 9 | * configure.in: Standardize dbus-related messages. |
diff --git a/configure.in b/configure.in index a13c1f31378..950e86d8a04 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -101,6 +101,7 @@ fi | |||
| 101 | 101 | ||
| 102 | OPTION_DEFAULT_ON([sound],[don't compile with sound support]) | 102 | OPTION_DEFAULT_ON([sound],[don't compile with sound support]) |
| 103 | 103 | ||
| 104 | dnl FIXME currently it is not the last. | ||
| 104 | dnl This should be the last --with option, because --with-x is | 105 | dnl This should be the last --with option, because --with-x is |
| 105 | dnl added later on when we find the path of X, and it's best to | 106 | dnl added later on when we find the path of X, and it's best to |
| 106 | dnl keep them together visually. | 107 | dnl keep them together visually. |
| @@ -122,19 +123,24 @@ this option's value should be `yes', `no', `lucid', `athena', `motif' or `gtk'. | |||
| 122 | with_x_toolkit=$val | 123 | with_x_toolkit=$val |
| 123 | ]) | 124 | ]) |
| 124 | 125 | ||
| 125 | OPTION_DEFAULT_OFF([xpm],[use -lXpm for displaying XPM images]) | 126 | dnl _ON results in a '--without' option in the --help output, so |
| 126 | OPTION_DEFAULT_OFF([jpeg],[use -ljpeg for displaying JPEG images]) | 127 | dnl the help text should refer to "don't compile", etc. |
| 127 | OPTION_DEFAULT_OFF([tiff],[use -ltiff for displaying TIFF images]) | 128 | OPTION_DEFAULT_ON([xpm],[don't compile with XPM image support]) |
| 128 | OPTION_DEFAULT_OFF([gif],[use -lgif (or -lungif) for displaying GIF images]) | 129 | OPTION_DEFAULT_ON([jpeg],[don't compile with JPEG image support]) |
| 129 | OPTION_DEFAULT_OFF([png],[use -lpng for displaying PNG images]) | 130 | OPTION_DEFAULT_ON([tiff],[don't compile with TIFF image support]) |
| 130 | OPTION_DEFAULT_OFF([gpm],[use -lgpm for mouse support on a GNU/Linux console]) | 131 | OPTION_DEFAULT_ON([gif],[don't compile with GIF image support]) |
| 131 | OPTION_DEFAULT_OFF([rsvg],[use -lrsvg-2 for displaying SVG images]) | 132 | OPTION_DEFAULT_ON([png],[don't compile with PNG image support]) |
| 132 | OPTION_DEFAULT_OFF([gtk],[use GTK (same as --with-x-toolkit=gtk)]) | 133 | OPTION_DEFAULT_ON([rsvg],[don't compile with SVG image support]) |
| 134 | |||
| 135 | OPTION_DEFAULT_OFF([gtk],[use GTK toolkit]) | ||
| 133 | OPTION_DEFAULT_ON([toolkit-scroll-bars],[don't use Motif or Xaw3d scroll bars]) | 136 | OPTION_DEFAULT_ON([toolkit-scroll-bars],[don't use Motif or Xaw3d scroll bars]) |
| 134 | OPTION_DEFAULT_ON([xaw3d],[don't use Xaw3d]) | 137 | OPTION_DEFAULT_ON([xaw3d],[don't use Xaw3d]) |
| 135 | OPTION_DEFAULT_ON([xim],[don't use X11 XIM]) | 138 | OPTION_DEFAULT_ON([xim],[don't use X11 XIM]) |
| 136 | OPTION_DEFAULT_ON([carbon],[don't use Carbon GUI on Mac OS X]) | 139 | OPTION_DEFAULT_OFF([carbon],[use Carbon GUI on Mac OS X. **UNSUPPORTED!**]) |
| 137 | OPTION_DEFAULT_ON([dbus],[use D-Bus]) | 140 | |
| 141 | OPTION_DEFAULT_ON([gpm],[don't use -lgpm for mouse support on a GNU/Linux console]) | ||
| 142 | OPTION_DEFAULT_OFF([dbus],[compile with D-Bus support]) | ||
| 143 | |||
| 138 | 144 | ||
| 139 | AC_ARG_WITH([pkg-config-prog],dnl | 145 | AC_ARG_WITH([pkg-config-prog],dnl |
| 140 | [AS_HELP_STRING([--with-pkg-config-prog=PATH], | 146 | [AS_HELP_STRING([--with-pkg-config-prog=PATH], |