From 98b6cb55d0e167f47c6c89412e29c135d2ae649a Mon Sep 17 00:00:00 2001 From: "v.audacity" Date: Wed, 25 Jul 2012 05:30:47 +0000 Subject: [PATCH] Bug 539 (P2) - Audacity does not build if configured --without-ffmpeg Revert to quick fix of r 11867. Steve reports Debian build error with r11868. Left that code in, because this should override it. --- src/Experimental.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Experimental.h b/src/Experimental.h index 9f0b06c7c..f6c06c9be 100644 --- a/src/Experimental.h +++ b/src/Experimental.h @@ -84,7 +84,9 @@ // 2.0 release //#define EXPERIMENTAL_OD_FLAC // similarly for FFmpeg: -#define EXPERIMENTAL_OD_FFMPEG 1 +#ifndef __WXGTK__ // Won't build on Fedora 17, per http://bugzilla.audacityteam.org/show_bug.cgi?id=539. + #define EXPERIMENTAL_OD_FFMPEG 1 +#endif // Philip Van Baren 01 July 2009 // Replace RealFFT() and PowerSpectrum function to use (faster) RealFFTf function