search for: fftw3f

Displaying 4 results from an estimated 4 matches for "fftw3f".

Did you mean: fftw3
2009 Feb 28
2
having trouble building on Mac OS X 10.5
I'm getting this error trying to build speex on MacOS X 10.5.6: ./configure: line 21256: syntax error near unexpected token `FFT,' ./configure: line 21256: ` PKG_CHECK_MODULES(FFT, fftw3f)' Thanks for any tips. Details ... I'd like to use speex with ffmpeg but when I run ffmpegs configure with: --enable-libspeex I get: ERROR: libspeex not found Soo ... I installed libogg in /usr/local wget http://downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz tar xzf l...
2009 Oct 25
0
having trouble building on Mac OS X 10.5
...on Feb 27 21:19:46 PST 2009: > Stephen Bannasch wrote: > > > I'm getting this error trying to build speex on MacOS X 10.5.6: > > > > ./configure: line 21256: syntax error near unexpected token `FFT,' > > ./configure: line 21256: ` PKG_CHECK_MODULES(FFT, fftw3f)' > > Why are you compling from Git? If you grab a release tarball you should > never see an error like that. > > If you really must compile from Git then you need to have pkg-config > installed ( http://pkg-config.freedesktop.org/ ). I ran into the same problem on my new Mac...
2009 Feb 28
1
having trouble building on Mac OS X 10.5
>Stephen Bannasch wrote: > >> I'm getting this error trying to build speex on MacOS X 10.5.6: >> >> ./configure: line 21256: syntax error near unexpected token `FFT,' >> ./configure: line 21256: ` PKG_CHECK_MODULES(FFT, fftw3f)' > >Why are you compling from Git? If you grab a release tarball you should >never see an error like that. Thanks Erik, I started with the release tarball, had the problem with missing ogg dependency, then changed TWO variables at once -- not so smart. The speex-1.2rc1 tarball com...
2017 May 29
0
[PATCH] Add CMake build script
...fftw.h, etc. +# FFTW_LIBRARIES - List of libraries when using fftw. +# FFTW_FOUND - True if fftw found. + +if(FFTW_INCLUDE_DIR) + # Already in cache, be silent + set(FFTW_FIND_QUIETLY TRUE) +endif(FFTW_INCLUDE_DIR) + +find_package (PkgConfig QUIET) +pkg_check_modules(PC_FFTW QUIET fftw3f) + +find_path(FFTW_INCLUDE_DIR fftw3.h HINTS ${PC_FFTW_INCLUDEDIR} ${PC_FFTW_INCLUDE_DIRS} ${FFTW_ROOT} PATH_SUFFIXES include) +find_library(FFTW_LIBRARY NAMES fftw3f HINTS ${PC_FFTW_LIBDIR} ${PC_FFTW_LIBRARY_DIRS} ${FFTW_ROOT} PATH_SUFFIXES lib) +# Handle the QUIETLY and REQUIRED arguments and set...