From 1000d15c859f7f1823704517c82ed0f3987a3e7b Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 2 Jun 2011 14:17:11 +0300 Subject: [PATCH] Move PKG_PROG_PKG_CONFIG earlier, and don't duplicate it --- configure.in | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/configure.in b/configure.in index f1131a7e8657..2eca92c00f7b 100755 --- a/configure.in +++ b/configure.in @@ -2407,6 +2407,13 @@ AC_SUBST(MSPDB_PATH) AC_SUBST(USE_MINGW) AC_SUBST(SHOWINCLUDES_PREFIX) +dnl =================================================================== +dnl Check for pkg-config +dnl =================================================================== +if test "$_os" != "WINNT" -o "$WITH_MINGW" = "yes"; then + PKG_PROG_PKG_CONFIG +fi + if test "$_os" != "WINNT" -o "$WITH_MINGW" = "yes"; then # If you use CC=/path/to/compiler/foo-gcc or even CC="ccache @@ -2416,7 +2423,6 @@ if test "$_os" != "WINNT" -o "$WITH_MINGW" = "yes"; then AC_CHECK_TOOL(AR,ar) AC_CHECK_TOOL(NM,nm) AC_CHECK_TOOL(OBJDUMP,objdump) - AC_PATH_TOOL(PKG_CONFIG,pkg-config) AC_CHECK_TOOL(RANLIB,ranlib) AC_CHECK_TOOL(STRIP,strip) if test "$_os" = "WINNT"; then @@ -4030,16 +4036,6 @@ else fi AC_SUBST(GPERF) -dnl =================================================================== -dnl Check for pkg-config -dnl # Note that if there is a possibility the first call to -dnl # PKG_CHECK_MODULES might not happen, you should be sure to include an -dnl # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac -dnl =================================================================== -if test "$_os" != "WINNT" -o "$WITH_MINGW" = "yes"; then - PKG_PROG_PKG_CONFIG -fi - dnl =================================================================== dnl Check for building stax dnl ===================================================================