Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / multimedia / ffmpeg / patches / patch-ap
blobe42442dd6be6a9fa1b86aa72eb20ff10d87cb986
1 $NetBSD$
3 --- libavutil/common.h.orig     2013-01-06 21:53:29.000000000 +0000
4 +++ libavutil/common.h
5 @@ -39,6 +39,22 @@
6  #include "version.h"
7  #include "libavutil/avconfig.h"
8  
9 +#if defined(__cplusplus)
10 +#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__linux__)
11 +#undef _STDINT_H_
12 +#undef _SYS_STDINT_H_
13 +#undef _STDINT_H
14 +#undef _GCC_WRAP_STDINT_H
15 +#ifndef __STDC_CONSTANT_MACROS
16 +#define __STDC_CONSTANT_MACROS
17 +#endif
18 +#include <stdint.h>
19 +#endif /* FreeBSD | OpenBSD | linux */
20 +#if defined(__DragonFly__) || defined(__NetBSD__)
21 +#include <machine/int_const.h>
22 +#endif /* DragonFly | NetBSD */
23 +#endif /* __cplusplus */
25  #if AV_HAVE_BIGENDIAN
26  #   define AV_NE(be, le) (be)
27  #else