From: Paul Brossier Date: Sat, 30 Apr 2005 12:56:32 +0000 (+0000) Subject: add flags to fix compilation on os x X-Git-Tag: bzr2git~923 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b6f6d5861ca336b68ea9b1fc1cca24e064699d40;p=aubio.git add flags to fix compilation on os x --- diff --git a/configure.ac b/configure.ac index bc644bf0..9b6c667f 100644 --- a/configure.ac +++ b/configure.ac @@ -63,6 +63,8 @@ mingw*) darwin*) dnl on macosx, cosf went to -lmx LDFLAGS="$LDFLAGS -lmx" + dnl as long double doesn't sit well with -Wall -Werror + CFLAGS="$CLFAGS -Wno-long-double" AC_ISC_POSIX ;; *) diff --git a/examples/Makefile.am b/examples/Makefile.am index 0da729c7..2c49eddf 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -15,3 +15,6 @@ EXTRA_DIST = utils.h # optionally add sources file for these programs aubioonset_SOURCES = aubioonset.c utils.c aubionotes_SOURCES = aubionotes.c utils.c + +aubioonset_LDADD = @JACK_LIBS@ +aubionotes_LDADD = @JACK_LIBS@