diff options
Diffstat (limited to 'audio/faad2/patches/patch-af')
-rw-r--r-- | audio/faad2/patches/patch-af | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/audio/faad2/patches/patch-af b/audio/faad2/patches/patch-af new file mode 100644 index 00000000000..169ead8d4a6 --- /dev/null +++ b/audio/faad2/patches/patch-af @@ -0,0 +1,29 @@ +$NetBSD: patch-af,v 1.1 2004/05/15 13:02:33 grant Exp $ + +--- common/mp4ff/mp4ff_int_types.h.orig 2003-12-14 09:26:56.000000000 +1100 ++++ common/mp4ff/mp4ff_int_types.h +@@ -1,3 +1,5 @@ ++#include "config.h" ++ + #ifndef _MP4FF_INT_TYPES_H_ + #define _MP4FF_INT_TYPES_H_ + +@@ -15,9 +17,16 @@ typedef unsigned __int64 uint64_t; + + #else + ++#if HAVE_SYS_TYPES_H ++#include <sys/types.h> ++#elif HAVE_INTTYPES_H ++#include <inttypes.h> ++#elif HAVE_STDINT_H + #include <stdint.h> ++#endif ++ + + #endif + + +-#endif +\ No newline at end of file ++#endif |