X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=configure.in;h=9b76ddfd426c8b07039458259c59c021a7be1cd5;hp=76e920f2d76c44fc43c9c7ec02d3702d60a829ff;hb=1a6d560c7caf83a0419cd0f5c7337db2c672da0a;hpb=fc80e34e8e9e3c726073d321e2075ead77baba08 diff --git a/configure.in b/configure.in index 76e920f..9b76ddf 100644 --- a/configure.in +++ b/configure.in @@ -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= 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= 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,