diff options
author | joerg <joerg@pkgsrc.org> | 2013-10-28 23:43:03 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2013-10-28 23:43:03 +0000 |
commit | b82a0bf156ebd3ac9487518be61c485c19b6f936 (patch) | |
tree | cfef29cc8c4087d1c6c912f3d15236be38a15406 /audio | |
parent | 964c136f056afcbd766765ab9be056cfb51ca70e (diff) | |
download | pkgsrc-b82a0bf156ebd3ac9487518be61c485c19b6f936.tar.gz |
Don't use -fcheck-new. With exceptions, it won't happen anyway and even
without, malloc() is unlikely to ever fail.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/audacity/distinfo | 3 | ||||
-rw-r--r-- | audio/audacity/patches/patch-lib-src_soundtouch_source_SoundTouch_Makefile.in | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/audio/audacity/distinfo b/audio/audacity/distinfo index fc08f71e1b5..41eb784aa29 100644 --- a/audio/audacity/distinfo +++ b/audio/audacity/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.21 2012/02/15 20:01:54 hans Exp $ +$NetBSD: distinfo,v 1.22 2013/10/28 23:43:03 joerg Exp $ SHA1 (audacity-src-1.2.6.tar.gz) = 1bfdd119fdc09d1aa334aee21d4831ef6e939fce RMD160 (audacity-src-1.2.6.tar.gz) = f59ca075ae430a518b77ce2ed08441abe2b67a0c @@ -20,6 +20,7 @@ SHA1 (patch-ba) = c27676c7110bf6ef2fcd448d68402b7bfd21b631 SHA1 (patch-bb) = 050c6edc0a174e2496ef0b572002eca185bd38de SHA1 (patch-bc) = 8a08526c37e025a89a747fa2c7a48668fe797572 SHA1 (patch-bd) = dc24c670cdf078f08c29318c5c5dc8efed398f59 +SHA1 (patch-lib-src_soundtouch_source_SoundTouch_Makefile.in) = 882de67691e6b7b4b611ead0e1fe20ebafa57d40 SHA1 (patch-lib_src_portmixer_px__unix__oss_px__unix__oss.c) = 4c78a5b39ea0fc1d022c8bfabd68a77989b33a54 SHA1 (patch-src_AudioIO.cpp) = 79af6045ae0a9ff754ae0ea30d987f47363df18f SHA1 (patch-src_effects_NoiseRemoval.cpp) = 1487650a4784feb5d57ee0ceeda3346fb4abf8de diff --git a/audio/audacity/patches/patch-lib-src_soundtouch_source_SoundTouch_Makefile.in b/audio/audacity/patches/patch-lib-src_soundtouch_source_SoundTouch_Makefile.in new file mode 100644 index 00000000000..5ae684b56f6 --- /dev/null +++ b/audio/audacity/patches/patch-lib-src_soundtouch_source_SoundTouch_Makefile.in @@ -0,0 +1,13 @@ +$NetBSD: patch-lib-src_soundtouch_source_SoundTouch_Makefile.in,v 1.1 2013/10/28 23:43:03 joerg Exp $ + +--- lib-src/soundtouch/source/SoundTouch/Makefile.in.orig 2013-10-17 12:43:29.000000000 +0000 ++++ lib-src/soundtouch/source/SoundTouch/Makefile.in +@@ -189,7 +189,7 @@ libSoundTouch_la_SOURCES = AAFilter.cpp + + # ??? test for -fcheck-new in configure.ac + # other compiler flags to add +-AM_CXXFLAGS = -O3 -fcheck-new -I../../include ++AM_CXXFLAGS = -O3 -I../../include + all: all-am + + .SUFFIXES: |