diff options
author | marino <marino@pkgsrc.org> | 2011-11-23 22:34:58 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2011-11-23 22:34:58 +0000 |
commit | ea31a0b579efd48744aacf3342893485459865e4 (patch) | |
tree | b391f11d310600eaaa7407a5b8d96d73b6ed743e /audio | |
parent | c912da6183cc76c73ffb42c9ed81ee1452aa6bed (diff) | |
download | pkgsrc-ea31a0b579efd48744aacf3342893485459865e4.tar.gz |
audio/audacity: Fix DragonFly breakage
Conditionally add <strings.h> for DragonFly.
No PKGREVISION bump required.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/audacity/distinfo | 3 | ||||
-rw-r--r-- | audio/audacity/patches/patch-bd | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/audio/audacity/distinfo b/audio/audacity/distinfo index 4a97509bf78..94c4c2c4945 100644 --- a/audio/audacity/distinfo +++ b/audio/audacity/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.18 2009/01/13 12:38:49 drochner Exp $ +$NetBSD: distinfo,v 1.19 2011/11/23 22:34:58 marino Exp $ SHA1 (audacity-src-1.2.6.tar.gz) = 1bfdd119fdc09d1aa334aee21d4831ef6e939fce RMD160 (audacity-src-1.2.6.tar.gz) = f59ca075ae430a518b77ce2ed08441abe2b67a0c @@ -19,3 +19,4 @@ SHA1 (patch-am) = 3210d8632ee9f5361008277e2c887f24d87205a1 SHA1 (patch-ba) = c27676c7110bf6ef2fcd448d68402b7bfd21b631 SHA1 (patch-bb) = 050c6edc0a174e2496ef0b572002eca185bd38de SHA1 (patch-bc) = 8a08526c37e025a89a747fa2c7a48668fe797572 +SHA1 (patch-bd) = ce30d573ac8d34099c754c3777e7e4781c1edf3a diff --git a/audio/audacity/patches/patch-bd b/audio/audacity/patches/patch-bd new file mode 100644 index 00000000000..59d45141094 --- /dev/null +++ b/audio/audacity/patches/patch-bd @@ -0,0 +1,14 @@ +$NetBSD: patch-bd,v 1.1 2011/11/23 22:34:58 marino Exp $ + +--- lib-src/soundtouch/source/example/SoundStretch/WavFile.cpp.orig 2006-11-15 04:12:11.000000000 +0000 ++++ lib-src/soundtouch/source/example/SoundStretch/WavFile.cpp +@@ -50,6 +50,9 @@ + #include <string>
+ #include <assert.h>
+ #include <limits.h>
++#if defined (__DragonFly__)
++#include <string.h>
++#endif
+
+ #include "WavFile.h"
+
|