diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-08-01 17:46:50 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-08-01 17:46:50 +0000 |
commit | 195ea8f9a4118de20a50f2cef70465819236a7f5 (patch) | |
tree | e483b1fb973039d6e46d701139519a988264aad2 /devel/pkg-config/files/patch-parse.c | |
parent | Update to 0.9 (diff) |
- Update to 0.8.0;
- disconnect the build from gtk12 port - it was a bad idea from begining.
Diffstat (limited to 'devel/pkg-config/files/patch-parse.c')
-rw-r--r-- | devel/pkg-config/files/patch-parse.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/devel/pkg-config/files/patch-parse.c b/devel/pkg-config/files/patch-parse.c new file mode 100644 index 000000000000..b591663c5709 --- /dev/null +++ b/devel/pkg-config/files/patch-parse.c @@ -0,0 +1,34 @@ + +$FreeBSD$ + +--- 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; |