diff options
author | itohy <itohy@pkgsrc.org> | 2001-11-17 06:36:14 +0000 |
---|---|---|
committer | itohy <itohy@pkgsrc.org> | 2001-11-17 06:36:14 +0000 |
commit | b17e26280afdb1035500588765642354ff4c30ff (patch) | |
tree | e982dd5809d4628b0f4bfa424021f04d21cec8cc /audio/audacity/Makefile | |
parent | 134fa1067afab19ee9c8ea2446fc171dd58ef013 (diff) | |
download | pkgsrc-b17e26280afdb1035500588765642354ff4c30ff.tar.gz |
Make it work on alpha (long -> int32_t, alignment fix, egcs XXX).
It still sometimes crashes, but I have no clue....
Diffstat (limited to 'audio/audacity/Makefile')
-rw-r--r-- | audio/audacity/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/audio/audacity/Makefile b/audio/audacity/Makefile index 28dd39eb708..acf5e797dc4 100644 --- a/audio/audacity/Makefile +++ b/audio/audacity/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/09/27 23:17:42 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2001/11/17 06:36:14 itohy Exp $ # DISTNAME= audacity-src-0.96 @@ -23,6 +23,11 @@ CONFIGURE_ARGS+= --without-xaudio --with-libmpeg3 CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" USE_GMAKE= yes +# XXX Internal compiler error with -O2 +.if (${MACHINE_ARCH} == alpha) +CFLAGS= -O +.endif + post-patch: ${SED} "s|XXXHELPDIRXXX|${PREFIX}/share|" \ <${WRKSRC}/Help.cpp >${WRKSRC}/Help.cpp.tmp \ |