diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2006-10-18 19:54:26 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2006-10-18 19:54:26 +0000 |
commit | 3eee8c9c8a209cccbb634bad930a7156c1058a9b (patch) | |
tree | 0f16fef1aea84caaf814f30b8905a62a4752ea54 /configure.in | |
parent | f5704e4bc7082c1a0b6f7c49d2dcce35713178f6 (diff) | |
download | LibXtract-3eee8c9c8a209cccbb634bad930a7156c1058a9b.tar.gz LibXtract-3eee8c9c8a209cccbb634bad930a7156c1058a9b.tar.bz2 LibXtract-3eee8c9c8a209cccbb634bad930a7156c1058a9b.zip |
PD example fixes
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 47001c0..880b492 100644 --- a/configure.in +++ b/configure.in @@ -205,9 +205,10 @@ AC_OUTPUT(Makefile src/Makefile xtract/Makefile doc/Makefile examples/Makefile e echo echo "**************************************************************" +echo echo "Summary:" - -echo you are using the ${host} architecture +echo +dnl echo you are using the ${host} architecture if test "$vector" = "true"; then echo "Fftw3: yes (using fftw3f)" @@ -215,11 +216,18 @@ else echo "Fftw3: no (not using fftw3, the vector functions will not work)" fi if test "$pd_example" = "true"; then - echo "PD external: yes" + echo "PD external: yes" + echo + echo "The PD help files will be installed in:" + echo ${prefix}"/lib/doc/5.reference/xtract/" + echo "You must make sure that this is in your PD help path" else echo "PD external: no" fi +echo echo "**************************************************************" +echo echo Configuration completed successfully. Type \'make\' to build ${PACKAGE} +echo |