diff options
author | tv <tv@pkgsrc.org> | 2005-10-31 15:10:54 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-10-31 15:10:54 +0000 |
commit | f2838568c4af10f0c23894695261c0849414426b (patch) | |
tree | c372eaa212686fa230d1855971a1dc746c35b29a /audio/flac | |
parent | 0f630eb3269cbd109db9f20b34654dac33daee85 (diff) | |
download | pkgsrc-f2838568c4af10f0c23894695261c0849414426b.tar.gz |
Fix build on Interix (u_int64_t, not uint64_t).
Diffstat (limited to 'audio/flac')
-rw-r--r-- | audio/flac/distinfo | 3 | ||||
-rw-r--r-- | audio/flac/patches/patch-ad | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/audio/flac/distinfo b/audio/flac/distinfo index b42bfa8e93c..bf1971d0d41 100644 --- a/audio/flac/distinfo +++ b/audio/flac/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.10 2005/02/28 14:09:19 wiz Exp $ +$NetBSD: distinfo,v 1.11 2005/10/31 15:10:54 tv Exp $ SHA1 (flac-1.1.2.tar.gz) = 65501f3547df99b153951edb2ee7bfc13dd56946 RMD160 (flac-1.1.2.tar.gz) = 58656837b02e211eaed5010d84c4ed59841c82d3 @@ -6,4 +6,5 @@ Size (flac-1.1.2.tar.gz) = 1516235 bytes SHA1 (patch-aa) = debaf60c08f942682aca8a8461475a743c53034f SHA1 (patch-ab) = 232db53797c1533bfbe8bb619e713d771ddf27d1 SHA1 (patch-ac) = 1d305f4a48d96dc3e7cd80fd02f73340a643a982 +SHA1 (patch-ad) = 69ae29f24eb8a2120408d5092a5c60735d61952a SHA1 (patch-ae) = 60e14c3d6622d616b5ff2987224f57145c7fb504 diff --git a/audio/flac/patches/patch-ad b/audio/flac/patches/patch-ad new file mode 100644 index 00000000000..9b99c1a888a --- /dev/null +++ b/audio/flac/patches/patch-ad @@ -0,0 +1,17 @@ +$NetBSD: patch-ad,v 1.3 2005/10/31 15:10:54 tv Exp $ + +--- include/FLAC/ordinals.h.orig 2005-01-24 23:12:17.000000000 -0500 ++++ include/FLAC/ordinals.h +@@ -52,8 +52,12 @@ typedef int32_t FLAC__int32; + typedef int64_t FLAC__int64; + typedef uint16_t FLAC__uint16; + typedef uint32_t FLAC__uint32; ++#if defined __INTERIX ++typedef u_int64_t FLAC__uint64; ++#else + typedef uint64_t FLAC__uint64; + #endif ++#endif + + typedef int FLAC__bool; + |