summaryrefslogtreecommitdiff
path: root/cad
diff options
context:
space:
mode:
authordmcmahill <dmcmahill>2005-02-03 12:39:22 +0000
committerdmcmahill <dmcmahill>2005-02-03 12:39:22 +0000
commitce176d2f482921e80f06fd74751595c195781903 (patch)
tree26b71cd2032e633db849528ce4e10276a1c26b83 /cad
parent3eb0bf95582829ebd7888bf7352908bc99265777 (diff)
downloadpkgsrc-ce176d2f482921e80f06fd74751595c195781903.tar.gz
use stdlib.h instead of malloc.h. Addresses PR29206 by John Baker
which prevented compilation on MacOS X 10.2.8.
Diffstat (limited to 'cad')
-rw-r--r--cad/geda/distinfo4
-rw-r--r--cad/geda/patches/patch-ac15
2 files changed, 12 insertions, 7 deletions
diff --git a/cad/geda/distinfo b/cad/geda/distinfo
index 2e7f922888e..174fe87e6d6 100644
--- a/cad/geda/distinfo
+++ b/cad/geda/distinfo
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.4 2005/01/11 03:16:22 dmcmahill Exp $
+$NetBSD: distinfo,v 1.5 2005/02/03 12:39:22 dmcmahill Exp $
SHA1 (geda/geda-20041228.tar.gz) = 6755093bcffddc785d311139caf6f838070c60ff
Size (geda/geda-20041228.tar.gz) = 390623 bytes
SHA1 (patch-aa) = 27f6766661153845e8333d4f83a1b2fbc42b70d1
SHA1 (patch-ab) = ca6c6c341fe3407b16d13efc154c2a9f93198c58
-SHA1 (patch-ac) = 3e9c0fcbfc8027eb08bf30d7bc646a31bbee34d8
+SHA1 (patch-ac) = d32c39616239537d39136d4265ae4f93bd0413d6
SHA1 (patch-ad) = 69caeab10a89574e0dec1be78b57573073da6559
SHA1 (patch-ae) = dde71f448a9af6fc04745d411f74a4efba39889e
SHA1 (patch-af) = 50ccb1f6a9afb18f80caabbac4b7da99e99908c5
diff --git a/cad/geda/patches/patch-ac b/cad/geda/patches/patch-ac
index 4c87ff3cc3c..6ad03ac85e2 100644
--- a/cad/geda/patches/patch-ac
+++ b/cad/geda/patches/patch-ac
@@ -1,12 +1,17 @@
-$NetBSD: patch-ac,v 1.1 2005/01/11 03:16:22 dmcmahill Exp $
+$NetBSD: patch-ac,v 1.2 2005/02/03 12:39:22 dmcmahill Exp $
--- src/doc.c.orig 2003-12-11 08:44:17.000000000 +0000
-+++ src/doc.c
-@@ -38,6 +38,7 @@
- #include "filetool.h"
++++ src/doc.c 2005-02-03 12:24:43.000000000 +0000
+@@ -20,5 +20,5 @@
+ /*******************************************************************************/
+
+-#include <malloc.h>
++#include <stdlib.h>
+ #include <stdio.h>
+ #include <string.h>
+@@ -39,4 +39,5 @@
#include "global.h"
#include "m_action.h"
+#include "m_project.h"
#include "msgbox.h"
#include "project.h"
- #include "support.h"