]> git.marmaro.de Git - mmh/commitdiff
People did not preserve my alphabetization of the --with options when they added
authorDan Harkless <dan@harkless.org>
Fri, 21 Jul 2000 01:43:58 +0000 (01:43 +0000)
committerDan Harkless <dan@harkless.org>
Fri, 21 Jul 2000 01:43:58 +0000 (01:43 +0000)
new ones.  Re-alphabetized.

ChangeLog
configure
configure.in
stamp-h.in

index ead1a4a5a2a10414c902db3b3d0a98fe9ab8a98b..9850614efc625e26147b9abd1c2a9d1641a52db1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,9 @@
-Mon Jul 17 13:11:52 2000 Dan Harkless <dan-nmh@dilvish.speed.net>
+Mon Jul 17 13:53:26 2000 Dan Harkless <dan-nmh@dilvish.speed.net>
 
        * Moved Kimmo's new "--with-hash-backup" to be output with the
-       rest of the --with options in the configure --help output.
+       rest of the --with options in the configure --help output.  Also,
+       people did not preserve my alphabetization of the --with options
+       when they added new ones.  Re-alphabetized.
 
        * One more pass at README.developers now that it's clear that my
        previously-suggested one-line autoconf-file commit can cause
index 4eb59512062ce62fa3af06896f4dbc0d7e3bdc96..c8ebc1c5350298f62e33c541620a77fe24057288 100755 (executable)
--- a/configure
+++ b/configure
@@ -22,16 +22,16 @@ ac_help="$ac_help
   --enable-mhe            enable mhe support (DEFAULT)"
 ac_help="$ac_help
   --enable-pop            enable client-side support for plain POP3"
+ac_help="$ac_help
+  --with-cyrus-sasl=<dir> Specify location of Cyrus SASL library for auth"
+ac_help="$ac_help
+  --with-editor=EDITOR    specify the default editor"
 ac_help="$ac_help
   --with-hash-backup      use # as the backup prefix (default: ,)"
 ac_help="$ac_help
   --with-hesiod=PREFIX    specify location of Hesiod"
 ac_help="$ac_help
   --with-krb4=PREFIX      specify location of Kerberos V4 for KPOP support"
-ac_help="$ac_help
-  --with-editor=EDITOR    specify the default editor"
-ac_help="$ac_help
-  --with-cyrus-sasl=<dir> Specify location of Cyrus SASL library for auth"
 ac_help="$ac_help
   --with-mts=MTS          specify the default mail transport agent/service"
 ac_help="$ac_help
@@ -727,6 +727,29 @@ if test x"$enable_nmh_pop" = x"yes"; then
   enable_pop=yes
 fi
 
+# Check whether --with-cyrus-sasl or --without-cyrus-sasl was given.
+if test "${with_cyrus_sasl+set}" = set; then
+  withval="$with_cyrus_sasl"
+  :
+fi
+
+if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != "no"; then
+  cat >> confdefs.h <<\EOF
+#define CYRUS_SASL 1
+EOF
+fi
+
+# Check whether --with-editor or --without-editor was given.
+if test "${with_editor+set}" = set; then
+  withval="$with_editor"
+  :
+fi
+
+
+if test -n "$with_editor"; then
+  editorpath="$with_editor"
+fi
+
 # Check whether --with-hash-backup or --without-hash-backup was given.
 if test "${with_hash_backup+set}" = set; then
   withval="$with_hash_backup"
@@ -780,29 +803,6 @@ else
   POPSED='/^%nmhbeginpop%/,/^%nmhendpop%/d'
 fi
 
-# Check whether --with-editor or --without-editor was given.
-if test "${with_editor+set}" = set; then
-  withval="$with_editor"
-  :
-fi
-
-
-if test -n "$with_editor"; then
-  editorpath="$with_editor"
-fi
-
-# Check whether --with-cyrus-sasl or --without-cyrus-sasl was given.
-if test "${with_cyrus_sasl+set}" = set; then
-  withval="$with_cyrus_sasl"
-  :
-fi
-
-if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != "no"; then
-  cat >> confdefs.h <<\EOF
-#define CYRUS_SASL 1
-EOF
-fi
-
 # Check whether --with-mts or --without-mts was given.
 if test "${with_mts+set}" = set; then
   withval="$with_mts"
index 76e920f2d76c44fc43c9c7ec02d3702d60a829ff..9b76ddfd426c8b07039458259c59c021a7be1cd5 100644 (file)
@@ -84,6 +84,23 @@ if test x"$enable_nmh_pop" = x"yes"; then
   enable_pop=yes
 fi
 
+dnl Do you want client-side support for using SASL for authentication?
+dnl Note that this code will be enabled for both POP and SMTP
+AC_ARG_WITH(cyrus-sasl,
+[  --with-cyrus-sasl=<dir> Specify location of Cyrus SASL library for auth])
+if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != "no"; then
+  AC_DEFINE(CYRUS_SASL)dnl
+fi
+
+dnl What should be the default editor?
+undefine([editor])dnl
+AC_ARG_WITH(editor,
+[  --with-editor=EDITOR    specify the default editor])
+
+if test -n "$with_editor"; then
+  editorpath="$with_editor"
+fi
+
 dnl Set the backup prefix
 undefine([backup-prefix])dnl
 AC_ARG_WITH([hash-backup],
@@ -122,23 +139,6 @@ fi
 AC_SUBST(POPLIB)dnl
 AC_SUBST(POPSED)dnl
 
-dnl What should be the default editor?
-undefine([editor])dnl
-AC_ARG_WITH(editor,
-[  --with-editor=EDITOR    specify the default editor])
-
-if test -n "$with_editor"; then
-  editorpath="$with_editor"
-fi
-
-dnl Do you want client-side support for using SASL for authentication?
-dnl Note that this code will be enabled for both POP and SMTP
-AC_ARG_WITH(cyrus-sasl,
-[  --with-cyrus-sasl=<dir> Specify location of Cyrus SASL library for auth])
-if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != "no"; then
-  AC_DEFINE(CYRUS_SASL)dnl
-fi
-
 dnl What method of posting should post use?
 undefine([mts])dnl
 AC_ARG_WITH(mts,
index 93863e878886ac572892d3b35cdddf90e9cf923a..300d02b0e6bb0ddee0b230155393cb63c27118f6 100644 (file)
@@ -1 +1 @@
-Thu Jul 20 13:02:27 PDT 2000
+Thu Jul 20 18:40:01 PDT 2000