View | Details | Raw Unified | Return to bug 207892 | Differences between
and this patch

Collapse All | Expand All

(-)audio/audacity/Makefile (-3 / +10 lines)
Lines 37-45 Link Here
37
DOS2UNIX_GLOB=	Makefile.* *.c* *.h
37
DOS2UNIX_GLOB=	Makefile.* *.c* *.h
38
SHEBANG_FILES=	lib-src/lv2/build
38
SHEBANG_FILES=	lib-src/lv2/build
39
39
40
OPTIONS_DEFINE=	NLS DEBUG DOCS DYNLOAD FFMPEG FLAC ID3TAG LADSPA LAME LV2 MAD \
40
OPTIONS_DEFINE=	NLS DEBUG DOCS ALSA DYNLOAD FFMPEG FLAC ID3TAG LADSPA LAME LV2 \
41
		SBSMS SOUNDTOUCH TWOLAME VAMP VORBIS VST
41
		MAD SBSMS SOUNDTOUCH TWOLAME VAMP VORBIS VST
42
OPTIONS_DEFAULT=	FLAC ID3TAG LADSPA MAD \
42
OPTIONS_DEFAULT=	ALSA FLAC ID3TAG LADSPA MAD \
43
			SBSMS SOUNDTOUCH TWOLAME VAMP VORBIS VST
43
			SBSMS SOUNDTOUCH TWOLAME VAMP VORBIS VST
44
44
45
OPTIONS_DEFINE_amd64=	SSE
45
OPTIONS_DEFINE_amd64=	SSE
Lines 80-85 Link Here
80
DOCS_BUILD_DEPENDS=	docbook-to-man:${PORTSDIR}/textproc/docbook-to-man \
80
DOCS_BUILD_DEPENDS=	docbook-to-man:${PORTSDIR}/textproc/docbook-to-man \
81
			docbook2man:${PORTSDIR}/textproc/docbook-utils
81
			docbook2man:${PORTSDIR}/textproc/docbook-utils
82
82
83
ALSA_CONFIGURE_OFF=	--disable-alsa
84
ALSA_CONFIGURE_WITH=	alsa
85
ALSA_CFLAGS=		-I${LOCALBASE}/include
86
ALSA_CXXFLAGS=		-I${LOCALBASE}/include
87
ALSA_LDFLAGS=		-L${LOCALBASE}/lib
88
ALSA_LIB_DEPENDS=	libasound.so:${PORTSDIR}/audio/alsa-lib
89
83
DYNLOAD_BUILD_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/libavcodec.pc:${PORTSDIR}/multimedia/ffmpeg
90
DYNLOAD_BUILD_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/libavcodec.pc:${PORTSDIR}/multimedia/ffmpeg
84
DYNLOAD_BUILD_DEPENDS=	${LOCALBASE}/include/lame/lame.h:${PORTSDIR}/audio/lame
91
DYNLOAD_BUILD_DEPENDS=	${LOCALBASE}/include/lame/lame.h:${PORTSDIR}/audio/lame
85
DYNLOAD_CONFIGURE_ENABLE=	dynamic-loading
92
DYNLOAD_CONFIGURE_ENABLE=	dynamic-loading
(-)audio/audacity/files/patch-lib-src_libnyquist_nyquist_nyqsrc_sound.h (+11 lines)
Line 0 Link Here
1
--- lib-src/libnyquist/nyquist/nyqsrc/sound.h.orig	2016-01-08 22:05:48 UTC
2
+++ lib-src/libnyquist/nyquist/nyqsrc/sound.h
3
@@ -459,7 +459,7 @@ double step_to_hz(double);
4
 
5
 #ifdef WIN32
6
 double log2(double x);
7
-#endif WIN32
8
+#endif /*WIN32*/
9
 
10
 /* macros for access to samples within a suspension */
11
 /* NOTE: assume suspension structure is named "susp" */
(-)audio/audacity/files/patch-lib-src_portmixer_src_px__linux__alsa.c (+10 lines)
Line 0 Link Here
1
--- lib-src/portmixer/src/px_linux_alsa.c.orig	2016-01-08 22:05:48 UTC
2
+++ lib-src/portmixer/src/px_linux_alsa.c
3
@@ -42,6 +42,7 @@
4
 
5
 #include "portaudio.h"
6
 #include "pa_unix_oss.h"
7
+#include <pa_linux_alsa.h>
8
 
9
 #include "portmixer.h"
10
 #include "px_mixer.h"
(-)audio/audacity/files/patch-src_BatchCommands.cpp (+11 lines)
Line 0 Link Here
1
--- src/BatchCommands.cpp.orig	2016-01-08 22:05:48 UTC
2
+++ src/BatchCommands.cpp
3
@@ -151,7 +151,7 @@ bool BatchCommands::ReadChain(const wxSt
4
          else if (cmd == wxT("ExportWav"))
5
             cmd = wxT("ExportWAV");
6
          else if (cmd == wxT("Compressor") && (parm.find(wxT("DecayTime")) != parm.npos))
7
-            parm.Replace(wxT("DecayTime"), wxT("ReleaseTime"), NULL);   // 2.0.6
8
+            parm.Replace(wxT("DecayTime"), wxT("ReleaseTime"), false);   // 2.0.6
9
 
10
          // Add to lists
11
          mCommandChain.Add(cmd);

Return to bug 207892