summaryrefslogtreecommitdiffstats
path: root/devel/pkgconfig/files/patch-parse.c
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-01-23 07:07:41 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-01-23 07:07:41 +0800
commit97c68299d2931949fe9ba8df0bb7907e17f4975a (patch)
tree09744cd87113d9fc1a5fd4deafaf7740f3e57b0d /devel/pkgconfig/files/patch-parse.c
parenta467b728ff420a417211b669327a7e4e76ff5cbe (diff)
downloadmarcuscom-ports-97c68299d2931949fe9ba8df0bb7907e17f4975a.tar
marcuscom-ports-97c68299d2931949fe9ba8df0bb7907e17f4975a.tar.gz
marcuscom-ports-97c68299d2931949fe9ba8df0bb7907e17f4975a.tar.bz2
marcuscom-ports-97c68299d2931949fe9ba8df0bb7907e17f4975a.tar.lz
marcuscom-ports-97c68299d2931949fe9ba8df0bb7907e17f4975a.tar.xz
marcuscom-ports-97c68299d2931949fe9ba8df0bb7907e17f4975a.tar.zst
marcuscom-ports-97c68299d2931949fe9ba8df0bb7907e17f4975a.zip
pkgconfig is now up-to-date in the main ports tree.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@410 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/pkgconfig/files/patch-parse.c')
-rw-r--r--devel/pkgconfig/files/patch-parse.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/devel/pkgconfig/files/patch-parse.c b/devel/pkgconfig/files/patch-parse.c
deleted file mode 100644
index 1f8fc6d91..000000000
--- a/devel/pkgconfig/files/patch-parse.c
+++ /dev/null
@@ -1,34 +0,0 @@
-
-$FreeBSD: ports/devel/pkgconfig/files/patch-parse.c,v 1.1 2001/08/01 17:46:50 sobomax Exp $
-
---- parse.c 2001/08/01 07:24:17 1.1
-+++ parse.c 2001/08/01 07:25:02
-@@ -952,9 +952,9 @@
- {
- char *output;
-
-- debug_spew ("Calling glib-config\n");
-+ debug_spew ("Calling glib12-config\n");
-
-- pkg->version = backticks ("glib-config --version");
-+ pkg->version = backticks ("glib12-config --version");
- if (pkg->version == NULL)
- {
- g_free (pkg);
-@@ -965,12 +965,12 @@
- pkg->key = g_strdup ("glib");
- pkg->description = g_strdup ("C Utility Library");
-
-- output = backticks ("glib-config --libs");
-- parse_libs (pkg, output, "glib-config");
-+ output = backticks ("glib12-config --libs");
-+ parse_libs (pkg, output, "glib12-config");
- g_free (output);
-
-- output = backticks ("glib-config --cflags");
-- parse_cflags (pkg, output, "glib-config");
-+ output = backticks ("glib12-config --cflags");
-+ parse_cflags (pkg, output, "glib12-config");
- g_free (output);
-
- return pkg;