Mercurial > hg > libxtract
changeset 31:cb667e483ad4
Minor changes
author | Jamie Bullock <jamie@postlude.co.uk> |
---|---|
date | Fri, 20 Oct 2006 13:56:22 +0000 |
parents | 4df9012cebf1 |
children | 7c0f84f9874d |
files | README configure.in src/Makefile.am |
diffstat | 3 files changed, 7 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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 ----------
--- 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*)