diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2006-10-10 08:04:36 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2006-10-10 08:04:36 +0000 |
commit | d0779800f72f682f5b2a874e8bcde1caadbf5a5d (patch) | |
tree | 204daa6908468f7cbc220a20b9df900ed02f0876 | |
parent | 84ecf703be1806fdd0e7e41ca4d8ec8ed2e17bc7 (diff) | |
download | LibXtract-d0779800f72f682f5b2a874e8bcde1caadbf5a5d.tar.gz LibXtract-d0779800f72f682f5b2a874e8bcde1caadbf5a5d.tar.bz2 LibXtract-d0779800f72f682f5b2a874e8bcde1caadbf5a5d.zip |
Added summary to configure.in
-rw-r--r-- | configure.in | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 1196160..ec86fcb 100644 --- a/configure.in +++ b/configure.in @@ -173,3 +173,27 @@ AC_CONFIG_FILES([doc/documentation.doxygen libxtract.pc]) AC_OUTPUT(Makefile src/Makefile xtract/Makefile doc/Makefile examples/Makefile examples/puredata/Makefile) + +echo +echo "**************************************************************" +echo "Summary:" + + +if test "${BUILD_VECTOR}" = "1"; then + echo "Fftw3: yes (using fftw3f)" +else +if test "${BUILD_VECTOR}" = "1"; then + echo "Fftw3: yes (not using fftw3f)" +else + echo "Fftw3: no (that should not happen)" +fi +fi +if test "${BUILD_PD_EXAMPLE}" = "1"; then + echo "PD external: yes" +else + echo "PD external: no" +fi +echo "**************************************************************" +echo Configuration completed successfully. Type \'make\' to build ${PACKAGE} + + |