difficult for config.status to get right.
Sat Jul 15 23:13:49 EDT 2000 Kimmo Suominen <kim@tac.nyc.ny.us>
- * Add configure option --with-backup-prefix so it can be set easily.
+ * Add configure option --with-hash-backup so the backup prefix can
+ be easily changed from "," to "#".
Tue Jul 11 14:18:01 2000 Dan Harkless <dan-nmh@dilvish.speed.net>
ac_help="$ac_help
--enable-debug enable nmh code debugging"
ac_help="$ac_help
- --with-backup-prefix=, set the backup prefix [,]"
+ --with-hash-backup use # as the backup prefix (default: ,)"
ac_help="$ac_help
--enable-masquerade[='draft_from mmailid username_extension']
enable up to 3 types of address masquerading [none]"
enable_debug=yes
fi
-# Check whether --with-backup-prefix or --without-backup-prefix was given.
-if test "${with_backup_prefix+set}" = set; then
- withval="$with_backup_prefix"
+# Check whether --with-hash-backup or --without-hash-backup was given.
+if test "${with_hash_backup+set}" = set; then
+ withval="$with_hash_backup"
:
fi
-if test x"$with_backup_prefix" != x -a x"$with_backup_prefix" != x"no"; then
- backup_prefix="$with_backup_prefix"
+if test x"$with_hash_backup" != x -a x"$with_hash_backup" != x"no"; then
+ backup_prefix="#"
else
backup_prefix=","
fi
libary install path : ${nmhlib2}
config files install path : ${nmhsysconf2}
man page install path : ${nmhman}
-transport system : ${MTS}
backup prefix : ${backup_prefix}
+transport system : ${MTS}
default smtp servers : ${smtpservers}
default editor : ${editorpath}
default pager : ${pagerpath}
dnl Set the backup prefix
undefine([backup-prefix])dnl
-AC_ARG_WITH([backup-prefix],
- [ --with-backup-prefix=, set the backup prefix [,]])
-if test x"$with_backup_prefix" != x -a x"$with_backup_prefix" != x"no"; then
- backup_prefix="$with_backup_prefix"
+AC_ARG_WITH([hash-backup],
+ [ --with-hash-backup use # as the backup prefix (default: ,)])
+if test x"$with_hash_backup" != x -a x"$with_hash_backup" != x"no"; then
+ backup_prefix="#"
else
backup_prefix=","
fi
libary install path : ${nmhlib2}
config files install path : ${nmhsysconf2}
man page install path : ${nmhman}
-transport system : ${MTS}
backup prefix : ${backup_prefix}
+transport system : ${MTS}
default smtp servers : ${smtpservers}
default editor : ${editorpath}
default pager : ${pagerpath}
-Thu Jul 13 14:25:10 PDT 2000
+Sat Jul 15 23:15:51 EDT 2000