]> code.delx.au - gnu-emacs/commitdiff
Comments
authorGlenn Morris <rgm@gnu.org>
Wed, 8 Aug 2012 16:01:28 +0000 (09:01 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 8 Aug 2012 16:01:28 +0000 (09:01 -0700)
configure.ac
lib-src/movemail.c

index 1741513d05258c4bfed038386ea6f8db4c948f17..3fbea8c80eadf40acceb116c3f95cb86a31d5d85 100644 (file)
@@ -2709,6 +2709,9 @@ case "$opsys" in
     ;;
 esac
 
+dnl FIXME?  If using FLOCK, also define MAIL_USE_SYSTEM_LOCK?
+dnl Only win32 seems to use that.
+dnl See comments in lib-src/movemail.c.
 BLESSMAIL_TARGET=
 case "$mail_lock" in
   flock) AC_DEFINE(MAIL_USE_FLOCK, 1, [Define if the mailer uses flock to interlock the mail spool.]) ;;
index c87d97778d1a4d21738c10fe03308695ff39bcab..c950d06f5d24e6daee131e2ecdea3aa8a8e21e99 100644 (file)
@@ -300,10 +300,10 @@ main (int argc, char **argv)
         which uses lock files for this purpose.  Some systems use other methods.
 
         If your system uses the `flock' system call for mail locking,
-        define MAIL_USE_SYSTEM_LOCK in config.h or the s-*.h file
-        and recompile movemail.  If the s- file for your system
-        should define MAIL_USE_SYSTEM_LOCK but does not, send a bug report
-        to bug-gnu-emacs@prep.ai.mit.edu so we can fix it.  */
+        define MAIL_USE_SYSTEM_LOCK in config.h and recompile movemail.
+        If your system type should always define MAIL_USE_SYSTEM_LOCK
+        but does not, send a bug report to bug-gnu-emacs@gnu.org so we
+        can change the default in configure.  */
 
       inname_len = strlen (inname);
       lockname = xmalloc (inname_len + sizeof ".lock");