diff options
Diffstat (limited to 'tools/pkg-config/patches/.svn')
-rw-r--r-- | tools/pkg-config/patches/.svn/entries | 62 | ||||
-rw-r--r-- | tools/pkg-config/patches/.svn/text-base/100-disable_compat_cmd.patch.svn-base | 22 |
2 files changed, 84 insertions, 0 deletions
diff --git a/tools/pkg-config/patches/.svn/entries b/tools/pkg-config/patches/.svn/entries new file mode 100644 index 0000000..dcebcea --- /dev/null +++ b/tools/pkg-config/patches/.svn/entries @@ -0,0 +1,62 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/tools/pkg-config/patches +svn://svn.openwrt.org/openwrt + + + +2009-03-24T22:27:22.410267Z +15026 +nbd + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +100-disable_compat_cmd.patch +file + + + + +2013-03-17T12:13:22.000000Z +179c187372c52effc130251079d31cd3 +2009-03-24T22:27:22.410267Z +15026 +nbd + + + + + + + + + + + + + + + + + + + + + +602 + diff --git a/tools/pkg-config/patches/.svn/text-base/100-disable_compat_cmd.patch.svn-base b/tools/pkg-config/patches/.svn/text-base/100-disable_compat_cmd.patch.svn-base new file mode 100644 index 0000000..9907840 --- /dev/null +++ b/tools/pkg-config/patches/.svn/text-base/100-disable_compat_cmd.patch.svn-base @@ -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; + |