Commit 20d712b9 authored by Benjamin Peterson's avatar Benjamin Peterson

use autoconf macro to check for pkg-config (closes #15506)

parent ff663efe
...@@ -62,6 +62,9 @@ IDLE ...@@ -62,6 +62,9 @@ IDLE
Build Build
----- -----
- Issue #15506: Use standard PKG_PROG_PKG_CONFIG autoconf macro in the configure
script.
- Issue #23032: Fix installer build failures on OS X 10.4 Tiger - Issue #23032: Fix installer build failures on OS X 10.4 Tiger
by disabling assembly code in the OpenSSL build. by disabling assembly code in the OpenSSL build.
......
...@@ -648,6 +648,8 @@ USE_SIGNAL_MODULE ...@@ -648,6 +648,8 @@ USE_SIGNAL_MODULE
TCLTK_LIBS TCLTK_LIBS
TCLTK_INCLUDES TCLTK_INCLUDES
LIBFFI_INCLUDEDIR LIBFFI_INCLUDEDIR
PKG_CONFIG_LIBDIR
PKG_CONFIG_PATH
PKG_CONFIG PKG_CONFIG
SHLIBS SHLIBS
CFLAGSFORSHARED CFLAGSFORSHARED
...@@ -818,7 +820,10 @@ CFLAGS ...@@ -818,7 +820,10 @@ CFLAGS
LDFLAGS LDFLAGS
LIBS LIBS
CPPFLAGS CPPFLAGS
CPP' CPP
PKG_CONFIG
PKG_CONFIG_PATH
PKG_CONFIG_LIBDIR'
# Initialize some variables set by options. # Initialize some variables set by options.
...@@ -1501,6 +1506,11 @@ Some influential environment variables: ...@@ -1501,6 +1506,11 @@ Some influential environment variables:
CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
you have headers in a nonstandard directory <include dir> you have headers in a nonstandard directory <include dir>
CPP C preprocessor CPP C preprocessor
PKG_CONFIG path to pkg-config utility
PKG_CONFIG_PATH
directories to add to pkg-config's search path
PKG_CONFIG_LIBDIR
path overriding pkg-config's built-in search path
Use these variables to override the choices made by `configure' or to help Use these variables to override the choices made by `configure' or to help
it to find libraries and programs with nonstandard names/locations. it to find libraries and programs with nonstandard names/locations.
...@@ -8828,7 +8838,15 @@ $as_echo "no" >&6; } ...@@ -8828,7 +8838,15 @@ $as_echo "no" >&6; }
fi fi
if test -n "$ac_tool_prefix"; then
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
...@@ -8926,6 +8944,20 @@ else ...@@ -8926,6 +8944,20 @@ else
PKG_CONFIG="$ac_cv_path_PKG_CONFIG" PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
fi fi
fi
if test -n "$PKG_CONFIG"; then
_pkg_min_version=0.9.0
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
PKG_CONFIG=""
fi
fi
# Check for use of the system expat library # Check for use of the system expat library
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-system-expat" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-system-expat" >&5
......
...@@ -2271,7 +2271,7 @@ LIBS="$withval $LIBS" ...@@ -2271,7 +2271,7 @@ LIBS="$withval $LIBS"
], ],
[AC_MSG_RESULT(no)]) [AC_MSG_RESULT(no)])
AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) PKG_PROG_PKG_CONFIG
# Check for use of the system expat library # Check for use of the system expat library
AC_MSG_CHECKING(for --with-system-expat) AC_MSG_CHECKING(for --with-system-expat)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment