pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mail/sendmail/patches Updated to properly select statv...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8012597e5fec
branches:  trunk
changeset: 501586:8012597e5fec
user:      jklos <jklos%pkgsrc.org@localhost>
date:      Mon Oct 24 04:33:50 2005 +0000

description:
Updated to properly select statvfs.h and closefrom where appropriate.

diffstat:

 mail/sendmail/patches/patch-ag |  40 ++++++++++++++++++++++++++++++++++------
 1 files changed, 34 insertions(+), 6 deletions(-)

diffs (50 lines):

diff -r f56d2334f9e4 -r 8012597e5fec mail/sendmail/patches/patch-ag
--- a/mail/sendmail/patches/patch-ag    Mon Oct 24 02:27:47 2005 +0000
+++ b/mail/sendmail/patches/patch-ag    Mon Oct 24 04:33:50 2005 +0000
@@ -1,12 +1,40 @@
-$NetBSD: patch-ag,v 1.8 2004/08/30 20:16:28 adrianp Exp $
-
---- include/sm/conf.h.orig     Sun Aug  1 15:38:42 2004
-+++ include/sm/conf.h  Sun Aug  1 15:40:01 2004
-@@ -916,6 +916,7 @@
+--- include/sm/conf.h.orig     2005-06-30 01:12:13.000000000 +0000
++++ include/sm/conf.h  2005-10-24 04:26:55.000000000 +0000
+@@ -799,7 +799,11 @@
+ #  ifndef LA_TYPE
+ #   define LA_TYPE    LA_SUBR
+ #  endif /* ! LA_TYPE */
++#if defined(__NetBSD__) && (__NetBSD_Version__ > 299000900)
++#  define SFS_TYPE    SFS_STATVFS     /* use <sys/statvfs.h> statfs() impl */
++#else
+ #  define SFS_TYPE    SFS_MOUNT       /* use <sys/mount.h> statfs() impl */
++#endif
+ #  define SPT_TYPE    SPT_PSSTRINGS   /* use PS_STRINGS pointer */
+ # endif /* defined(BSD4_4) && !defined(__bsdi__) && !defined(__GNU__) && !defined(DARWIN)*/
+ 
+@@ -914,9 +918,9 @@
+ #  ifndef LA_TYPE
+ #   define LA_TYPE    LA_SUBR
+ #  endif /* ! LA_TYPE */
+-#  if defined(__NetBSD__) && defined(__NetBSD_Version__) && __NetBSD_Version__ >= 200040000
++#  if defined(__NetBSD__) && defined(__NetBSD_Version__) && __NetBSD_Version__ >= 299000900
+ #   undef SFS_TYPE
+-#   define SFS_TYPE   SFS_STATVFS
++#   define SFS_TYPE   SFS_STATVFS     /* use <sys/statvfs.h> statfs() impl */
+ #  else
+ #   define SFS_TYPE   SFS_MOUNT       /* use <sys/mount.h> statfs() impl */
+ #  endif
+@@ -930,11 +934,12 @@
+ #  if defined(__NetBSD__) && defined(__NetBSD_Version__) && __NetBSD_Version__ >= 104170000
+ #   define HASSETUSERCONTEXT  1       /* BSDI-style login classes */
+ #  endif
+-#  if defined(__NetBSD__) && defined(__NetBSD_Version__) && __NetBSD_Version__ >= 200060000
++#  if defined(__NetBSD__) && defined(__NetBSD_Version__) && __NetBSD_Version__ >= 299000900
+ #   define HASCLOSEFROM       1       /* closefrom(3) added in 2.0F */
  #  endif
  #  if defined(__NetBSD__)
  #   define USESYSCTL          1       /* use sysctl(3) for getting ncpus */
-+#   define SMRSH_CMDDIR                "@@SMRSH_CMDDIR@@"
++#   define SMRSH_CMDDIR                       "/usr/local/libexec/sm.bin"
  #   include <sys/param.h>
  #   include <sys/sysctl.h>
  #  endif



Home | Main Index | Thread Index | Old Index