configure.ac: add AUBIO_LIBS, now needs only -lm (closes: #553930)
authorPaul Brossier <piem@piem.org>
Sun, 15 Nov 2009 14:31:11 +0000 (15:31 +0100)
committerPaul Brossier <piem@piem.org>
Sun, 15 Nov 2009 14:31:11 +0000 (15:31 +0100)
configure.ac
examples/Makefile.am

index 57fdda00f91533d36c13f86669127a49241e10f1..ea41f08038ad21bd0e5f662cf8bf830e68f6c5e9 100644 (file)
@@ -35,6 +35,9 @@ AC_PROG_INSTALL
 
 AUBIO_CFLAGS=
 
+AC_CHECK_LIB(m, floorf)
+AUBIO_LIBS="-lm"
+
 dnl Enable double precision (no)
 AC_ARG_ENABLE(double,
   AC_HELP_STRING([--enable-double],[compile in double precision [[default=no]]]),
@@ -231,6 +234,7 @@ AC_ARG_ENABLE(testprogs,
 AM_CONDITIONAL(COMPILE_TESTS,test "${with_testprogs}" != "no")
 
 AC_SUBST(AUBIO_CFLAGS)
+AC_SUBST(AUBIO_LIBS)
 
 dnl Check for swig and python
 dnl should check for swig version and python headers
index 8372d9f393a83263b1b5337b1f0388bf8e800e61..a32ecea287f791b077a671c973e7e274ad9092bc 100644 (file)
@@ -1,6 +1,6 @@
 # global flags
 AM_CFLAGS = -DAUBIO_PREFIX=\"$(prefix)\" -DPACKAGE=\"@PACKAGE@\" -I$(top_srcdir)/src @AUBIO_CFLAGS@ @LASH_CFLAGS@ @SNDFILE_CFLAGS@ @JACK_CFLAGS@
-AM_LDFLAGS = -L$(top_builddir)/src -laubio @LASH_LIBS@
+AM_LDFLAGS = -L$(top_builddir)/src -laubio @AUBIO_LIBS@ @LASH_LIBS@
 
 # add your programs to this list
 bin_PROGRAMS = \