From: Jörg Krause Date: Sat, 20 Feb 2016 15:13:57 +0000 (+0100) Subject: Fix static linking with openssl and alsa X-Git-Tag: 2.9.1~3^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F230%2Fhead;p=thirdparty%2Fshairport-sync.git Fix static linking with openssl and alsa Otherwise build fails for cross-compilation. See http://autobuild.buildroot.net/results/682/6821605cf12e1a5393c29b30baf00cb0f1e1a451/build-end.log --- diff --git a/configure.ac b/configure.ac index 2ed835dc..7ca65ee6 100644 --- a/configure.ac +++ b/configure.ac @@ -114,7 +114,7 @@ AC_ARG_WITH(ssl, [ choose --with-ssl=openssl or --with-ssl=polarssl for encrypti AC_MSG_ERROR(choose either "openssl" or "polarssl" encryption) fi if test "x${with_ssl}" = xopenssl ; then - if test "x${with_pkg_config}" = x1 ; then + if test "x${with_pkg_config}" = xyes ; then PKG_CHECK_MODULES( [SSL], [libssl,libcrypto], [LIBS="${SSL_LIBS} ${LIBS}" @@ -169,7 +169,7 @@ AC_ARG_WITH(alsa, [ --with-alsa = choose ALSA API support (GNU/Linux only)], HAS_ALSA=1 AM_CONDITIONAL([USE_ALSA], [test 0]) AC_DEFINE([CONFIG_ALSA], 1, [Needed by the compiler.]) - if test "x${with_pkg_config}" = x1 ; then + if test "x${with_pkg_config}" = xyes ; then PKG_CHECK_MODULES( [ALSA], [alsa], [LIBS="${ALSA_LIBS} ${LIBS}"