aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.in12
1 files changed, 12 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index e71fbc37919..f364f685be9 100644
--- a/configure.in
+++ b/configure.in
@@ -125,6 +125,18 @@ AC_ARG_ENABLE(carbon-app,
125 specify install directory for Emacs.app on Mac OS X]], 125 specify install directory for Emacs.app on Mac OS X]],
126[ carbon_appdir_x=${enableval}]) 126[ carbon_appdir_x=${enableval}])
127 127
128AC_ARG_ENABLE(maintainer-mode,
129[ --enable-maintainer-mode enable make rules and dependencies not useful
130 (and sometimes confusing) to the casual installer],
131 USE_MAINTAINER_MODE=$enableval,
132 USE_MAINTAINER_MODE=no)
133if test $USE_MAINTAINER_MODE = yes; then
134 MAINT=
135else
136 MAINT=#
137fi
138AC_SUBST(MAINT)
139
128#### Make srcdir absolute, if it isn't already. It's important to 140#### Make srcdir absolute, if it isn't already. It's important to
129#### avoid running the path through pwd unnecessarily, since pwd can 141#### avoid running the path through pwd unnecessarily, since pwd can
130#### give you automounter prefixes, which can go away. We do all this 142#### give you automounter prefixes, which can go away. We do all this