diff options
author | drochner <drochner> | 2005-05-10 20:22:39 +0000 |
---|---|---|
committer | drochner <drochner> | 2005-05-10 20:22:39 +0000 |
commit | 63d9f8c888417b0fba87e308a4dc72e1d0b4dab0 (patch) | |
tree | 1cdf179611c7ee6d4c5620cc30aa83d94cc501a6 /graphics | |
parent | e543f0548e8c667ad20d064b5ab412b66c2ba5d6 (diff) | |
download | pkgsrc-63d9f8c888417b0fba87e308a4dc72e1d0b4dab0.tar.gz |
while harmless appearently, fix a configure test checking the boehm-gc
version which was broken die to a GNU'ism
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/inkscape/distinfo | 3 | ||||
-rw-r--r-- | graphics/inkscape/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/graphics/inkscape/distinfo b/graphics/inkscape/distinfo index 4556eb15b10..f696a0ac8d2 100644 --- a/graphics/inkscape/distinfo +++ b/graphics/inkscape/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.5 2005/05/10 18:38:15 drochner Exp $ +$NetBSD: distinfo,v 1.6 2005/05/10 20:22:39 drochner Exp $ SHA1 (inkscape-0.41.tar.bz2) = 9f1f1ad6fa1feea39395f143c23cedb3e8aceb75 RMD160 (inkscape-0.41.tar.bz2) = ffcc13816c99f8bb9bfed61689854cc1dadae124 Size (inkscape-0.41.tar.bz2) = 4430290 bytes +SHA1 (patch-aa) = e1fef64ba4c3f40edaa4c8f7e11b6b0933e272f6 SHA1 (patch-ab) = ef9ad1dc4a49270d9e7dacccc4e2ea6d41712940 diff --git a/graphics/inkscape/patches/patch-aa b/graphics/inkscape/patches/patch-aa new file mode 100644 index 00000000000..6c8a7d15b6f --- /dev/null +++ b/graphics/inkscape/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.5 2005/05/10 20:22:39 drochner Exp $ + +--- configure.orig 2005-05-11 00:15:17.000000000 +0200 ++++ configure +@@ -21905,7 +21905,7 @@ fi + + done + +-if test "x$gc_ok" == "xyes"; then ++if test "x$gc_ok" = "xyes"; then + echo "$as_me:$LINENO: checking libgc version 6.4+" >&5 + echo $ECHO_N "checking libgc version 6.4+... $ECHO_C" >&6 + if test "$cross_compiling" = yes; then |