Mercurial > hg > libxtract
comparison configure.in @ 16:57c865715619
Added summary to configure.in
author | Jamie Bullock <jamie@postlude.co.uk> |
---|---|
date | Tue, 10 Oct 2006 08:04:36 +0000 |
parents | 582330cfa6e5 |
children | 3194fd1b6205 |
comparison
equal
deleted
inserted
replaced
15:b424f279dfa3 | 16:57c865715619 |
---|---|
171 | 171 |
172 AC_CONFIG_FILES([doc/documentation.doxygen | 172 AC_CONFIG_FILES([doc/documentation.doxygen |
173 libxtract.pc]) | 173 libxtract.pc]) |
174 | 174 |
175 AC_OUTPUT(Makefile src/Makefile xtract/Makefile doc/Makefile examples/Makefile examples/puredata/Makefile) | 175 AC_OUTPUT(Makefile src/Makefile xtract/Makefile doc/Makefile examples/Makefile examples/puredata/Makefile) |
176 | |
177 echo | |
178 echo "**************************************************************" | |
179 echo "Summary:" | |
180 | |
181 | |
182 if test "${BUILD_VECTOR}" = "1"; then | |
183 echo "Fftw3: yes (using fftw3f)" | |
184 else | |
185 if test "${BUILD_VECTOR}" = "1"; then | |
186 echo "Fftw3: yes (not using fftw3f)" | |
187 else | |
188 echo "Fftw3: no (that should not happen)" | |
189 fi | |
190 fi | |
191 if test "${BUILD_PD_EXAMPLE}" = "1"; then | |
192 echo "PD external: yes" | |
193 else | |
194 echo "PD external: no" | |
195 fi | |
196 echo "**************************************************************" | |
197 echo Configuration completed successfully. Type \'make\' to build ${PACKAGE} | |
198 | |
199 |