summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorjlam <jlam>2001-05-22 22:07:00 +0000
committerjlam <jlam>2001-05-22 22:07:00 +0000
commitd3bee03b0a59c0bb8a6c457862009801fdc3b733 (patch)
treecf1700b4cdc95bfa18492dcd88266c30bed501d0 /net
parent078bd82265952054b528375d3bd2cf8fab61c7a1 (diff)
downloadpkgsrc-d3bee03b0a59c0bb8a6c457862009801fdc3b733.tar.gz
Add fix for platforms that don't define SHM_{R_W} in <sys/shm.h>. We
define them to IPC_{R,W} as they're the right values. Problem discovered by browsing current-users and port-alpha (why were there no PRs?!).
Diffstat (limited to 'net')
-rw-r--r--net/samba/distinfo3
-rw-r--r--net/samba/patches/patch-ac21
2 files changed, 23 insertions, 1 deletions
diff --git a/net/samba/distinfo b/net/samba/distinfo
index b603c51610f..40226c08807 100644
--- a/net/samba/distinfo
+++ b/net/samba/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.6 2001/05/22 21:49:28 jlam Exp $
+$NetBSD: distinfo,v 1.7 2001/05/22 22:07:00 jlam Exp $
SHA1 (samba-2.2.0.tar.gz) = a7010ff4b3e99a94e8a618184e551e3e61909859
Size (samba-2.2.0.tar.gz) = 5835104 bytes
SHA1 (patch-aa) = 191875ae477167a1937a011c5b2f9baf033e41d8
SHA1 (patch-ab) = 28cfc5703a2c04b48a3e52047453c27d30aab160
+SHA1 (patch-ac) = 5bfbb2eaa43bc33792839d4965a9271c515eba09
diff --git a/net/samba/patches/patch-ac b/net/samba/patches/patch-ac
new file mode 100644
index 00000000000..624bf0ef5de
--- /dev/null
+++ b/net/samba/patches/patch-ac
@@ -0,0 +1,21 @@
+$NetBSD: patch-ac,v 1.8 2001/05/22 22:07:01 jlam Exp $
+
+--- profile/profile.c.orig Thu Nov 16 16:44:48 2000
++++ profile/profile.c Tue May 22 17:53:46 2001
+@@ -26,6 +26,16 @@
+
+ extern int DEBUGLEVEL;
+
++/*
++ * Definitions for OSes without SHM_R or SHM_W in <sys/shm.h>.
++ */
++#ifndef SHM_R
++#define SHM_R IPC_R
++#endif
++#ifndef SHM_W
++#define SHM_W IPC_W
++#endif
++
+ #define IPC_PERMS ((SHM_R | SHM_W) | (SHM_R>>3) | (SHM_R>>6))
+
+ static int shm_id;