diff options
author | tv <tv@pkgsrc.org> | 2005-11-08 01:21:10 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-11-08 01:21:10 +0000 |
commit | 27af6fc2ab45fc55ccddd1a6f915cdbd0f402fc5 (patch) | |
tree | 7547aae9bfb085c77ef6003e386ff399b396235c /audio/flac/patches | |
parent | 3204cf97110dad576914fb52377beb4cd17ae4f8 (diff) | |
download | pkgsrc-27af6fc2ab45fc55ccddd1a6f915cdbd0f402fc5.tar.gz |
Another Interix fix (don't include <inttypes.h>).
Diffstat (limited to 'audio/flac/patches')
-rw-r--r-- | audio/flac/patches/patch-ad | 11 |
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; |