diff options
author | danw <danw> | 2004-05-09 20:02:59 +0000 |
---|---|---|
committer | danw <danw> | 2004-05-09 20:02:59 +0000 |
commit | a39b0bacf3eae80da4ce932fd78916a64da7f1ab (patch) | |
tree | f0b8c2763d913e23959e5075ff5c1a93ec6c43f6 /security/opencdk | |
parent | 10ff606bfd0236a56e49f28648a0d4743b2af2ec (diff) | |
download | pkgsrc-a39b0bacf3eae80da4ce932fd78916a64da7f1ab.tar.gz |
s/malloc.h/stdlib.h/ for darwin/freebsd
Diffstat (limited to 'security/opencdk')
-rw-r--r-- | security/opencdk/patches/patch-aa | 13 | ||||
-rw-r--r-- | security/opencdk/patches/patch-ab | 13 | ||||
-rw-r--r-- | security/opencdk/patches/patch-ac | 13 |
3 files changed, 39 insertions, 0 deletions
diff --git a/security/opencdk/patches/patch-aa b/security/opencdk/patches/patch-aa new file mode 100644 index 00000000000..cafb741f0e0 --- /dev/null +++ b/security/opencdk/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2004/05/09 20:02:59 danw Exp $ + +--- src/encrypt.c.orig Sat Mar 13 11:34:03 2004 ++++ src/encrypt.c +@@ -24,7 +24,7 @@ + #endif + #include <stdio.h> + #include <stdarg.h> +-#include <malloc.h> ++#include <stdlib.h> + #include <assert.h> + + #include "opencdk.h" diff --git a/security/opencdk/patches/patch-ab b/security/opencdk/patches/patch-ab new file mode 100644 index 00000000000..5a7cb19bcff --- /dev/null +++ b/security/opencdk/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2004/05/09 20:02:59 danw Exp $ + +--- src/main.c.orig Sat Mar 13 11:34:08 2004 ++++ src/main.c +@@ -24,7 +24,7 @@ + #endif + #include <stdio.h> + #include <errno.h> +-#include <malloc.h> ++#include <stdlib.h> + #ifdef HAVE_PWD_H + # include <pwd.h> + #endif diff --git a/security/opencdk/patches/patch-ac b/security/opencdk/patches/patch-ac new file mode 100644 index 00000000000..9681a478a76 --- /dev/null +++ b/security/opencdk/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2004/05/09 20:02:59 danw Exp $ + +--- src/misc.c.orig Sat Mar 13 11:34:11 2004 ++++ src/misc.c +@@ -27,7 +27,7 @@ + #include <string.h> + #include <ctype.h> + #include <time.h> +-#include <malloc.h> ++#include <stdlib.h> + + #include "opencdk.h" + #include "main.h" |