From: Yann E. MORIN Date: Sat, 29 Nov 2014 16:24:02 +0000 (+0100) Subject: configure: fix static link with popt X-Git-Tag: 2.1.13~1^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F18%2Fhead;p=thirdparty%2Fshairport-sync.git configure: fix static link with popt Use pkg-config to find the popt library. Signed-off-by: "Yann E. MORIN" --- diff --git a/configure.ac b/configure.ac index 8a742887..2289efb5 100644 --- a/configure.ac +++ b/configure.ac @@ -31,7 +31,10 @@ fi AC_CHECK_LIB([daemon],[daemon_log], , AC_MSG_ERROR(libdaemon needed)) AC_CHECK_LIB([pthread],[pthread_create], , AC_MSG_ERROR(pthread library needed)) AC_CHECK_LIB([m],[exp], , AC_MSG_ERROR(maths library needed)) -AC_CHECK_LIB([popt],[poptGetContext], , AC_MSG_ERROR(libpopt needed)) +PKG_CHECK_MODULES( + [POPT], [popt], + [LIBS="${POPT_LIBS} ${LIBS}" + AC_DEFINE([HAVE_LIBPOPT],[1],[Define to 1 if you have popt])]) # Look for piddir flag AC_ARG_WITH(piddir, [ --with-piddir= Specify a pathname to a directory in which to write the PID file.], [