aboutsummaryrefslogtreecommitdiffstats
path: root/tools/pkg-config
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-03-24 22:27:22 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-03-24 22:27:22 +0000
commita0b63920f32b0975f41bc5f61122833ab52905eb (patch)
treee6c5200e348c73d138608c509021d29948a769df /tools/pkg-config
parentbb8b46f7eb4ec8dfa654adcf19894120e5c7b540 (diff)
downloadmaster-187ad058-a0b63920f32b0975f41bc5f61122833ab52905eb.tar.gz
master-187ad058-a0b63920f32b0975f41bc5f61122833ab52905eb.tar.bz2
master-187ad058-a0b63920f32b0975f41bc5f61122833ab52905eb.zip
pkg-config: disable potentially recursive compat lookups which break on systems with gnome devel tools installed (thx, lubek)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15026 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/pkg-config')
-rw-r--r--tools/pkg-config/patches/100-disable_compat_cmd.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/pkg-config/patches/100-disable_compat_cmd.patch b/tools/pkg-config/patches/100-disable_compat_cmd.patch
new file mode 100644
index 0000000000..990784045e
--- /dev/null
+++ b/tools/pkg-config/patches/100-disable_compat_cmd.patch
@@ -0,0 +1,22 @@
+--- a/parse.c
++++ b/parse.c
+@@ -1187,15 +1187,12 @@ try_command (const char *command)
+ Package *
+ get_compat_package (const char *name)
+ {
+-#ifdef G_OS_WIN32
+- /* There has never been any of these legacy *-config scripts on
+- * Windows as far as I know. No use trying to execute them, will
+- * only confuse users to see the "blabla is not recognized as an
+- * internal or external command, operable program or batch file"
+- * messages.
++ /*
++ * We don't need this compatibility stuff on a system
++ * that is free of legacy stuff
+ */
+ return NULL;
+-#else
++#if 0
+
+ Package *pkg;
+