summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2014-12-05 21:24:07 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2014-12-05 21:24:07 +0100
commit3d5e443e97bcc92febe3f4a3723def2d957a34ab (patch)
tree342f7163913f11ebf839c4673de842f3b38a8c8b
parent3b0d9e0c9c5e08b2e449aa266617fb1db86b5a22 (diff)
Fix linking in configure test.
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 641f2f7..eb11b35 100644
--- a/configure.ac
+++ b/configure.ac
@@ -351,8 +351,8 @@ if test x$enable_resampler != xno; then
CXXFLAGS=""
CPPFLAGS="$ZITA_CPPFLAGS"
CFLAGS=""
- LDFLAGS="$ZITA_LDFLAGS -lzita-resampler -lpthread"
- LIBS=""
+ LDFLAGS="$ZITA_LDFLAGS"
+ LIBS="-lzita-resampler -lpthread"
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([#include <zita-resampler/resampler.h>],
[Resampler r] ) ], has_zita=yes, has_zita=no)