diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-07-04 22:28:26 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-07-04 22:28:26 +0800 |
commit | 296c4b2f6cb0c6f837bd425644942215d2a21010 (patch) | |
tree | 4f00bed8a9a5429b1c4e6b11702ec2745f72666e /devel/pkg-config/files/patch-parse.c | |
parent | 8cb78a93424d521b86e23ad63ac4c874beb109e5 (diff) | |
download | marcuscom-ports-296c4b2f6cb0c6f837bd425644942215d2a21010.tar marcuscom-ports-296c4b2f6cb0c6f837bd425644942215d2a21010.tar.gz marcuscom-ports-296c4b2f6cb0c6f837bd425644942215d2a21010.tar.bz2 marcuscom-ports-296c4b2f6cb0c6f837bd425644942215d2a21010.tar.lz marcuscom-ports-296c4b2f6cb0c6f837bd425644942215d2a21010.tar.xz marcuscom-ports-296c4b2f6cb0c6f837bd425644942215d2a21010.tar.zst marcuscom-ports-296c4b2f6cb0c6f837bd425644942215d2a21010.zip |
Remove, now in ports... note to self, cvs update before committing to ports...
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9131 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/pkg-config/files/patch-parse.c')
-rw-r--r-- | devel/pkg-config/files/patch-parse.c | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/devel/pkg-config/files/patch-parse.c b/devel/pkg-config/files/patch-parse.c deleted file mode 100644 index a51f5a965..000000000 --- a/devel/pkg-config/files/patch-parse.c +++ /dev/null @@ -1,48 +0,0 @@ ---- parse.c.orig Sun Oct 16 13:09:39 2005 -+++ parse.c Sat Sep 2 14:09:44 2006 -@@ -707,6 +707,16 @@ static void _do_parse_libs (Package *pkg - i++; - g_free(framework); - } -+ else if ((strcmp("-Wl,--rpath",p) == 0 || strcmp("-Wl,-rpath",p) == 0) && -+ i+1 < argc) -+ { -+ gchar *rpath = trim_string (argv[i+1]); -+ -+ pkg->other_libs = g_slist_prepend (pkg->other_libs, -+ g_strconcat(arg, " ", rpath, NULL)); -+ i++; -+ g_free(rpath); -+ } - else - { - if (*arg != '\0') -@@ -1190,9 +1200,9 @@ get_compat_package (const char *name) - { - 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); -@@ -1203,12 +1213,12 @@ get_compat_package (const char *name) - 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; |