From: Josh Bressers Date: Sun, 27 Aug 2006 01:19:39 +0000 (+0000) Subject: * configure.in: If we're not using dotlocking, there is no need to set inc X-Git-Tag: nmh-1_3_RC1~29 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=3f5557dc09fc17ede9a35059f36920abb2eb4d08;hp=63298d0f1870b5df16ac8664494e5a24b224dfc5 * configure.in: If we're not using dotlocking, there is no need to set inc sgid. --- diff --git a/ChangeLog b/ChangeLog index b2ebfe6..a0839ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-08-26 Josh Bressers + + * configure.in: If we're not using dotlocking, there is no need to set + inc sgid. + 2006-03-30 David Levine * uip/sendsbr.c: with attachformat values of 1 or 2, only diff --git a/configure.in b/configure.in index 59d9207..b66a6e5 100644 --- a/configure.in +++ b/configure.in @@ -426,7 +426,7 @@ fi dnl If mailspool is not world-writable and dotlockfile is not setgid, dnl we need to #define MAILGROUP to 1 and make inc setgid. -if test x"$nmh_cv_mailspool_world_writable" = x"no" -a x"$nmh_cv_dotlockfile_setgid" != x"yes" ; then +if test x"$LOCKTYPE" = x"dot" -a x"$nmh_cv_mailspool_world_writable" = x"no" -a x"$nmh_cv_dotlockfile_setgid" != x"yes" ; then dnl do we really need both of these? AC_DEFINE(MAILGROUP)dnl SETGID_MAIL=1