diff options
author | schwarz <schwarz@pkgsrc.org> | 2006-10-01 08:55:32 +0000 |
---|---|---|
committer | schwarz <schwarz@pkgsrc.org> | 2006-10-01 08:55:32 +0000 |
commit | 04b05c087cbfc015e86c3abf29f14280764645bb (patch) | |
tree | 23478a4aeb19605f30f910afc151ef6d3e96c686 /devel | |
parent | 659e601169b5d586988056bb35ee382454e819bf (diff) | |
download | pkgsrc-04b05c087cbfc015e86c3abf29f14280764645bb.tar.gz |
added support for non-C99 compilers (patch OK'd by original author)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/pkg-config/distinfo | 3 | ||||
-rw-r--r-- | devel/pkg-config/patches/patch-aa | 21 |
2 files changed, 23 insertions, 1 deletions
diff --git a/devel/pkg-config/distinfo b/devel/pkg-config/distinfo index a6ad1ab1a3b..185fa3883df 100644 --- a/devel/pkg-config/distinfo +++ b/devel/pkg-config/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.5 2006/08/22 18:21:22 wiz Exp $ +$NetBSD: distinfo,v 1.6 2006/10/01 08:55:32 schwarz Exp $ SHA1 (pkg-config-0.21.tar.gz) = b2508ba8404cad46ec42f6f58cbca43ae59d715f RMD160 (pkg-config-0.21.tar.gz) = 6d48e449a3cedb576c0f54b08825be6ab684d955 Size (pkg-config-0.21.tar.gz) = 998420 bytes +SHA1 (patch-aa) = c70e2133db34a6afe1b201a699300becad16c7e7 SHA1 (patch-ab) = b4c43bd021cca8b5fc78c268d52e3e96daf6c280 diff --git a/devel/pkg-config/patches/patch-aa b/devel/pkg-config/patches/patch-aa new file mode 100644 index 00000000000..e78bcef2ced --- /dev/null +++ b/devel/pkg-config/patches/patch-aa @@ -0,0 +1,21 @@ +$NetBSD: patch-aa,v 1.3 2006/10/01 08:55:32 schwarz Exp $ + +--- pkg.c.orig 2006-09-19 01:21:12.000000000 +0200 ++++ pkg.c 2006-09-19 01:21:50.000000000 +0200 +@@ -58,11 +58,11 @@ + gboolean ignore_private_libs = TRUE; + + static Package pkg_config_package = { +- .key = PACKAGE, +- .name = PACKAGE, +- .version = VERSION, /* .version */ +- .description = "returns metainformation about installed libraries", +- .url = "http://pkg-config.freedesktop.org", ++ PACKAGE, ++ PACKAGE, ++ VERSION, /* .version */ ++ "returns metainformation about installed libraries", ++ "http://pkg-config.freedesktop.org", + 0 /* keep the rest as null */ + }; + |