pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/audio/flac Fix build on Interix (u_int64_t, not uint64...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f8ed69657891
branches:  trunk
changeset: 501909:f8ed69657891
user:      tv <tv%pkgsrc.org@localhost>
date:      Mon Oct 31 15:10:54 2005 +0000

description:
Fix build on Interix (u_int64_t, not uint64_t).

diffstat:

 audio/flac/distinfo         |   3 ++-
 audio/flac/patches/patch-ad |  17 +++++++++++++++++
 2 files changed, 19 insertions(+), 1 deletions(-)

diffs (36 lines):

diff -r 6edc2159899c -r f8ed69657891 audio/flac/distinfo
--- a/audio/flac/distinfo       Mon Oct 31 15:06:19 2005 +0000
+++ b/audio/flac/distinfo       Mon Oct 31 15:10:54 2005 +0000
@@ -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 @@
 SHA1 (patch-aa) = debaf60c08f942682aca8a8461475a743c53034f
 SHA1 (patch-ab) = 232db53797c1533bfbe8bb619e713d771ddf27d1
 SHA1 (patch-ac) = 1d305f4a48d96dc3e7cd80fd02f73340a643a982
+SHA1 (patch-ad) = 69ae29f24eb8a2120408d5092a5c60735d61952a
 SHA1 (patch-ae) = 60e14c3d6622d616b5ff2987224f57145c7fb504
diff -r 6edc2159899c -r f8ed69657891 audio/flac/patches/patch-ad
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/flac/patches/patch-ad       Mon Oct 31 15:10:54 2005 +0000
@@ -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;
+ 



Home | Main Index | Thread Index | Old Index