diff options
author | monsta <[email protected]> | 2018-01-13 22:23:36 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2018-01-13 22:23:36 +0300 |
commit | 4a48e270808eb51d40a071ba43d1e37433109142 (patch) | |
tree | 7b74873d0946aaf0af36c44208186a76a77cf7fc | |
parent | a31fa77632156eaad561035607119a637c1e0b8b (diff) | |
download | mate-user-share-4a48e270808eb51d40a071ba43d1e37433109142.tar.bz2 mate-user-share-4a48e270808eb51d40a071ba43d1e37433109142.tar.xz |
build: use correct macros to fix cross-build
patch by Helmut Grohne
https://bugs.debian.org/886578
-rw-r--r-- | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index fe1d0a9..a2f6370 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PROG_MAKE_SET AM_DISABLE_STATIC AM_PROG_LIBTOOL AC_PATH_XTRA -AC_PATH_PROG(PKG_CONFIG, pkg-config, no) +PKG_PROG_PKG_CONFIG AC_TYPE_PID_T AC_TYPE_SIGNAL @@ -53,13 +53,13 @@ AC_SUBST(HTTPD) BLUETOOTH_PKG="mate-bluetooth-1.0 >= 1.2.0" AC_ARG_ENABLE(bluetooth, AS_HELP_STRING([--disable-bluetooth],[compile without bluetooth support]),,enable_bluetooth=no) -if test "x$enable_bluetooth" = "xyes"; then +AS_IF([test "x$enable_bluetooth" = "xyes"],[ PKG_CHECK_MODULES(BLUETOOTH, $BLUETOOTH_PKG) AC_DEFINE(HAVE_BLUETOOTH, 1, [Set to true if mate-bluetooth support is available]) -else +],[ BLUETOOTH_PKG="" AC_MSG_WARN([Bluetooth support is disabled.]) -fi +]) AM_CONDITIONAL(USE_BLUETOOTH, [test "$enable_bluetooth" = "yes"]) GLIB_REQUIRED_VERSION=2.36.0 @@ -144,7 +144,7 @@ AC_ARG_WITH(cajadir, PKG_CHECK_MODULES(EXTENSION, libcaja-extension >= 1.17.1 $BLUETOOTH_PKG) if test "${ac_with_cajadir}" = ""; then - ac_with_cajadir=`pkg-config --variable=extensiondir libcaja-extension` + ac_with_cajadir=`$PKG_CONFIG --variable=extensiondir libcaja-extension` fi AC_SUBST(CAJADIR) AC_MSG_NOTICE([installing caja plugin in ${ac_with_cajadir}]) |