~ubuntu-branches/ubuntu/lucid/mumble/lucid-security

« back to all changes in this revision

Viewing changes to speex/configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Thorvald Natvig, Patrick Matthäi, Thorvald Natvig
  • Date: 2009-11-11 23:33:38 UTC
  • mfrom: (9.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20091111233338-yrojdl25rlm0f2zy
Tags: 1.2.0~beta1-1
[ Patrick Matthäi ]
* Do not build with missing libcap2-dev on kfreebsd-*.
* Merge 1.1.8-3 and 1.1.8-4 changelog.
* Merge remaining changes from the 1.1.8 branch.
* Also install the menu icon for the mumble-11x package.
* Extend the long description of the mumble-11x package. Thanks lintian.

[ Thorvald Natvig ]
* New upstream beta release.
* Update get-orig-source.
* Update dependencies.
* Let the qmake script find the celt/speex libraries on its own.

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
AC_ARG_ENABLE(blackfin-asm, [  --enable-blackfin-asm   Make use of Blackfin assembly optimizations],
189
189
[if test "$enableval" = yes; then
190
190
  AC_DEFINE([BFIN_ASM], , [Make use of Blackfin assembly optimizations])
191
 
  LDFLAGS="-Wl,-elf2flt=-s100000"
192
191
fi])
 
192
case $host_os in
 
193
  uclinux) LDFLAGS="-Wl,-elf2flt=-s100000 $LDFLAGS";;
 
194
esac
193
195
 
194
196
AC_ARG_ENABLE(fixed-point-debug, [  --enable-fixed-point-debug  Debug fixed-point implementation],
195
197
[if test "$enableval" = yes; then
202
204
  AC_DEFINE([TI_C55X], , [Enable support for TI C55X DSP])
203
205
fi])
204
206
 
 
207
AC_ARG_ENABLE(vorbis-psy, [  --enable-psy    Enable the Vorbis psy model],
 
208
[if test "$enableval" = yes; then
 
209
  vorbis_psy=yes;
 
210
  AC_DEFINE([VORBIS_PSYCHO], , [Enable support for the Vorbis psy model])
 
211
fi])
 
212
 
205
213
AC_ARG_WITH([fft], [AS_HELP_STRING([--with-fft=choice],[use an alternate FFT implementation. The available choices are
206
214
kiss (default fixed point), smallft (default floating point), gpl-fftw3 and proprietary-intel-mkl])],
207
215
[FFT=$withval]
239
247
AM_CONDITIONAL(BUILD_SMALLFT, [test "$FFT" = "smallft"])
240
248
AC_SUBST(FFT_PKGCONFIG)
241
249
 
 
250
AM_CONDITIONAL(BUILD_VORBIS_PSY, [test "x$vorbis_psy" = "xyes"])
242
251
 
243
252
AC_CHECK_SIZEOF(short)
244
253
AC_CHECK_SIZEOF(int)