summaryrefslogtreecommitdiff
path: root/audio/flac/patches
diff options
context:
space:
mode:
authortv <tv>2005-11-08 01:21:10 +0000
committertv <tv>2005-11-08 01:21:10 +0000
commit4b946ec28aca53f72a59cfa06f20500f9c884c04 (patch)
tree7547aae9bfb085c77ef6003e386ff399b396235c /audio/flac/patches
parent993de1b09ce89972d51c1ae75c00b41131e8c901 (diff)
downloadpkgsrc-4b946ec28aca53f72a59cfa06f20500f9c884c04.tar.gz
Another Interix fix (don't include <inttypes.h>).
Diffstat (limited to 'audio/flac/patches')
-rw-r--r--audio/flac/patches/patch-ad11
1 files changed, 10 insertions, 1 deletions
diff --git a/audio/flac/patches/patch-ad b/audio/flac/patches/patch-ad
index 9b99c1a888a..a552f2975bc 100644
--- a/audio/flac/patches/patch-ad
+++ b/audio/flac/patches/patch-ad
@@ -1,7 +1,16 @@
-$NetBSD: patch-ad,v 1.3 2005/10/31 15:10:54 tv Exp $
+$NetBSD: patch-ad,v 1.4 2005/11/08 01:21:11 tv Exp $
--- include/FLAC/ordinals.h.orig 2005-01-24 23:12:17.000000000 -0500
+++ include/FLAC/ordinals.h
+@@ -32,7 +32,7 @@
+ #ifndef FLAC__ORDINALS_H
+ #define FLAC__ORDINALS_H
+
+-#ifndef _MSC_VER
++#if !defined(_MSC_VER) && !defined(__INTERIX)
+ #include <inttypes.h>
+ #endif
+
@@ -52,8 +52,12 @@ typedef int32_t FLAC__int32;
typedef int64_t FLAC__int64;
typedef uint16_t FLAC__uint16;