diff options
author | minskim <minskim@pkgsrc.org> | 2007-01-20 22:17:53 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2007-01-20 22:17:53 +0000 |
commit | 69b612a8067bbbf7ef8563f3c63f6c5282aa7370 (patch) | |
tree | dacd7242a2e75c93e0a6c6a4c56556b06e1f4abe | |
parent | be94bcce2319428790ecaf87a4702db3031416c7 (diff) | |
download | pkgsrc-69b612a8067bbbf7ef8563f3c63f6c5282aa7370.tar.gz |
Include stdlib.h instead of malloc.h.
-rw-r--r-- | graphics/graphviz/distinfo | 3 | ||||
-rw-r--r-- | graphics/graphviz/patches/patch-af | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/graphics/graphviz/distinfo b/graphics/graphviz/distinfo index 843d379cf50..c4b5a873b08 100644 --- a/graphics/graphviz/distinfo +++ b/graphics/graphviz/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.21 2007/01/20 14:07:12 joerg Exp $ +$NetBSD: distinfo,v 1.22 2007/01/20 22:17:53 minskim Exp $ SHA1 (graphviz-2.12.tar.gz) = aa48a926395a57c6c7e1e755b9432a29461538e3 RMD160 (graphviz-2.12.tar.gz) = 68d55176cd5ce0e6a25c90b443529747e738d5c6 @@ -8,3 +8,4 @@ SHA1 (patch-ab) = 7fd332e66c44b8a384b6dba4eeccdafe3eb0d930 SHA1 (patch-ac) = e0877aef8259172549e6b69f1478d1ccdef2bb6d SHA1 (patch-ad) = d14bfef61caec543812b9d5ea8d2c331bf350af8 SHA1 (patch-ae) = df8ec6959bf1b8212f8bfcaf48586aa52537a457 +SHA1 (patch-af) = cd1c185038155d5bcb21009eafe5dec3eb5f347f diff --git a/graphics/graphviz/patches/patch-af b/graphics/graphviz/patches/patch-af new file mode 100644 index 00000000000..6797d137849 --- /dev/null +++ b/graphics/graphviz/patches/patch-af @@ -0,0 +1,13 @@ +$NetBSD: patch-af,v 1.7 2007/01/20 22:17:53 minskim Exp $ + +--- tclpkg/gv/gv_lua.cpp.orig 2007-01-20 14:15:40.000000000 -0800 ++++ tclpkg/gv/gv_lua.cpp +@@ -708,7 +708,7 @@ extern "C" { + + #include "lua.h" + #include "lauxlib.h" +-#include <malloc.h> ++#include <stdlib.h> + #include <assert.h> /* for a few sanity tests */ + + /* ----------------------------------------------------------------------------- |