# HG changeset patch # User Jamie Bullock # Date 1161352582 0 # Node ID cb667e483ad47f6026b106f737c561e3fef9d543 # Parent 4df9012cebf1645239f15b71f401598806388f37 Minor changes diff -r 4df9012cebf1 -r cb667e483ad4 README --- a/README Fri Oct 20 12:30:46 2006 +0000 +++ b/README Fri Oct 20 13:56:22 2006 +0000 @@ -26,14 +26,15 @@ Type: -./configure --enable-pd_example --enable-vector +./configure --enable-pd_example --enable-fft make sudo make install There following configure flags are optional: --enable-pd_example (to build the PD example) ---enable-vector (to enable functions that require fftw3) +--enable-fft (to enable functions that require fftw3) +--enable-simpletest (to build the simpletest example) Disclaimer ---------- diff -r 4df9012cebf1 -r cb667e483ad4 configure.in --- a/configure.in Fri Oct 20 12:30:46 2006 +0000 +++ b/configure.in Fri Oct 20 13:56:22 2006 +0000 @@ -64,8 +64,8 @@ # age to 0. XTRACT_SO_VERSION=0:0:0 -CFLAGS="$CFLAGS -pedantic -ansi -O3" -LDFLAGS="$LDFLAGS -lm --allow-shlib-undefined" +CFLAGS="$CFLAGS -pedantic -ansi" +LDFLAGS="$LDFLAGS -lm" AC_ARG_WITH(pd_dir, [ --with-pd-dir=path pd header path (default=/usr/local/include) ], @@ -184,7 +184,7 @@ ;; *86-*-darwin*) PD_CFLAGS="$PD_CFLAGS -DUNIX -Wall -Wimplicit -Wunused -Wmissing-prototypes" - PD_LDFLAGS="$PD_LDFLAGS -bundle -arch i686 -undefined suppress -flat_namespace" + PD_LDFLAGS="$PD_LDFLAGS -dynamiclib -mmacosx-version-min=10.3 -undefined dynamic_lookup -single_module" PD_SUFFIX=pd_darwin ;; *-*-darwin*) diff -r 4df9012cebf1 -r cb667e483ad4 src/Makefile.am --- a/src/Makefile.am Fri Oct 20 12:30:46 2006 +0000 +++ b/src/Makefile.am Fri Oct 20 13:56:22 2006 +0000 @@ -12,4 +12,4 @@ lib_LTLIBRARIES = libxtract.la libxtract_la_CFLAGS = $(FFT_DEFINE) libxtract_la_SOURCES = $(SOURCES) -libxtract_la_LDFLAGS = -shared +libxtract_la_LDFLAGS = -export-dynamic