-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
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
--with-pager=PAGER specify the default pager"
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"
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"
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],
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,