aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid J. MacKenzie1994-11-22 03:22:43 +0000
committerDavid J. MacKenzie1994-11-22 03:22:43 +0000
commit4f734bde414dd92c11fe288753adce26cf12eaa3 (patch)
tree9e2e74ec41519175c6f7f9c66ef3d52dc40aa87f
parent12b28fb52506172616d56d34ac1b66fbfd960db5 (diff)
downloademacs-4f734bde414dd92c11fe288753adce26cf12eaa3.tar.gz
emacs-4f734bde414dd92c11fe288753adce26cf12eaa3.zip
rearrange --with options
-rw-r--r--configure.in25
1 files changed, 14 insertions, 11 deletions
diff --git a/configure.in b/configure.in
index 9f7e1b8b8b3..37c7f1ffbff 100644
--- a/configure.in
+++ b/configure.in
@@ -21,9 +21,21 @@ archlibdir='${libexecdir}/emacs/${version}/${configuration}'
21docdir='${datadir}/emacs/${version}/etc' 21docdir='${datadir}/emacs/${version}/etc'
22 22
23AC_ARG_WITH(gcc, 23AC_ARG_WITH(gcc,
24[ --with-gcc Use GCC to compile Emacs]) 24[ --with-gcc use GCC to compile Emacs])
25AC_ARG_WITH(pop,
26[ --with-pop support POP for mail retrieval],
27[AC_DEFINE(MAIL_USE_POP)])
28AC_ARG_WITH(kerberos,
29[ --with-kerberos support Kerberos-authenticated POP],
30[AC_DEFINE(KERBEROS)])
31AC_ARG_WITH(hesiod,
32[ --with-hesiod support Hesiod to get the POP server host],
33[AC_DEFINE(HESIOD)])
34dnl This should be the last --with option, because --with-x is
35dnl added later on when we find the path of X, and it's best to
36dnl keep them together visually.
25AC_ARG_WITH(x-toolkit, 37AC_ARG_WITH(x-toolkit,
26[ --with-x-toolkit=KIT Use an X toolkit (KIT = yes/lucid/athena/motif)], 38[ --with-x-toolkit=KIT use an X toolkit (KIT = yes/lucid/athena/motif)],
27[ case "${withval}" in 39[ case "${withval}" in
28 y | ye | yes ) val=athena ;; 40 y | ye | yes ) val=athena ;;
29 n | no ) val=no ;; 41 n | no ) val=no ;;
@@ -43,15 +55,6 @@ Currently, \`yes', \`athena' and \`lucid' are synonyms.])
43 esac 55 esac
44 with_x_toolkit=$val 56 with_x_toolkit=$val
45]) 57])
46AC_ARG_WITH(pop,
47[ --with-pop Support POP for mail retrieval],
48[AC_DEFINE(MAIL_USE_POP)])
49AC_ARG_WITH(kerberos,
50[ --with-kerberos Support Kerberos-authenticated POP],
51[AC_DEFINE(KERBEROS)])
52AC_ARG_WITH(hesiod,
53[ --with-hesiod Support Hesiod to get POP server host],
54[AC_DEFINE(HESIOD)])
55 58
56#### Make srcdir absolute, if it isn't already. It's important to 59#### Make srcdir absolute, if it isn't already. It's important to
57#### avoid running the path through pwd unnecessary, since pwd can 60#### avoid running the path through pwd unnecessary, since pwd can