From: Felix Fietkau Date: Tue, 24 Mar 2009 22:27:22 +0000 (+0000) Subject: pkg-config: disable potentially recursive compat lookups which break on systems with... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=87bca1ab9617e19f08b040a6eb766c945f0688b1 pkg-config: disable potentially recursive compat lookups which break on systems with gnome devel tools installed (thx, lubek) SVN-Revision: 15026 --- 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; +