diff options
author | Glenn Morris <rgm@gnu.org> | 2008-01-26 04:28:04 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-01-26 04:28:04 +0000 |
commit | 304484e4a0ba830c56a040cf8e137120573215a5 (patch) | |
tree | b5596983942a3f93dd7bfdb94b1de9149eca79b5 /configure.in | |
parent | 9f3b76d5b8f707aab54c25431b6d81866e4039cc (diff) | |
download | emacs-304484e4a0ba830c56a040cf8e137120573215a5.tar.gz |
(--without-gcc): By default, neither off nor on.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 950e86d8a04..a1db65b9f7a 100644 --- a/configure.in +++ b/configure.in @@ -70,7 +70,10 @@ AC_DEFUN([OPTION_DEFAULT_ON], [dnl m4_bpatsubst([with_$1], [[^0-9a-z]], [_])=yes])dnl ])dnl -OPTION_DEFAULT_ON([gcc],[don't use GCC to compile Emacs if GCC is found]) +dnl By default, neither off nor on. +AC_ARG_WITH([gcc], +[AS_HELP_STRING([--without-gcc], + [don't use GCC to compile Emacs even if GCC is found])]) OPTION_DEFAULT_ON([pop],[don't support POP mail retrieval with movemail]) if test "$with_pop" = yes; then |