diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2006-04-15 20:10:03 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2006-04-15 20:10:03 +0000 |
commit | ba1af8a6f99ebf4c883c0eb427906ae88a5ba775 (patch) | |
tree | 5ff7082a511dd728ef09f0b3dbf93f6a2c3bee3c | |
parent | 281dd575ad2fb4b570e9db426583b26017163904 (diff) | |
download | ports-ba1af8a6f99ebf4c883c0eb427906ae88a5ba775.tar.gz ports-ba1af8a6f99ebf4c883c0eb427906ae88a5ba775.zip |
Notes
-rw-r--r-- | audio/audacity/Makefile | 5 | ||||
-rw-r--r-- | audio/audacity/files/patch-src-effects-ToneGen.cpp | 11 |
2 files changed, 12 insertions, 4 deletions
diff --git a/audio/audacity/Makefile b/audio/audacity/Makefile index 0342ede6c54d..922fe175fdd2 100644 --- a/audio/audacity/Makefile +++ b/audio/audacity/Makefile @@ -21,6 +21,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-src-${PORTVERSION} GNU_CONFIGURE= yes USE_GMAKE= yes USE_X_PREFIX= yes +USE_GETTEXT= yes MAN1= audacity.1 MANCOMPRESSED= yes @@ -35,10 +36,6 @@ OPTIONS= ID3TAG "ID3 tag support" off \ SSE_CFLAGS= -mno-sse -mno-sse2 .endif -.if ${ARCH} != "i386" -BROKEN= "Does not build on !i386" -.endif - CONFIGURE_ENV+= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include ${SSE_CFLAGS} ${PTHREAD_CFLAGS}" \ CFLAGS="${CFLAGS} -I${LOCALBASE}/include ${SSE_CFLAGS} ${PTHREAD_CFLAGS}" \ diff --git a/audio/audacity/files/patch-src-effects-ToneGen.cpp b/audio/audacity/files/patch-src-effects-ToneGen.cpp new file mode 100644 index 000000000000..8e308f8d4d25 --- /dev/null +++ b/audio/audacity/files/patch-src-effects-ToneGen.cpp @@ -0,0 +1,11 @@ +--- work/audacity-src-1.2.4b/src/effects/ToneGen.cpp.old Sat Feb 11 11:53:25 2006 ++++ src/effects/ToneGen.cpp Sat Feb 11 11:52:07 2006 +@@ -265,7 +265,7 @@ + item2->Add(item3, 0, wxALIGN_CENTRE | wxALL, 5); + + wxChoice *item4 = new wxChoice(parent, ID_WAVEFORM, wxDefaultPosition, +- wxSize(80, -1), 0, NULL); ++ wxSize(80, -1), 0, NULL, 0); + item2->Add(item4, 0, wxALIGN_CENTRE | wxALL, 5); + + item0->Add(item2, 1, wxALIGN_CENTRE | wxALL, 5); |