pkgsrc/multimedia/ffmpeg3/patches/patch-libavutil_common.h
he c18a996753 Add comments to the patches which didn't have one already.
No revision bump, no source or binary change.
2017-05-17 15:28:51 +00:00

29 lines
816 B
C

$NetBSD: patch-libavutil_common.h,v 1.2 2017/05/17 15:28:51 he Exp $
Add required int includes on various opensource platforms.
--- libavutil/common.h.orig 2016-01-15 16:58:36.000000000 +0000
+++ libavutil/common.h
@@ -43,6 +43,22 @@
#include "version.h"
#include "libavutil/avconfig.h"
+#if defined(__cplusplus)
+#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__linux__)
+#undef _STDINT_H_
+#undef _SYS_STDINT_H_
+#undef _STDINT_H
+#undef _GCC_WRAP_STDINT_H
+#ifndef __STDC_CONSTANT_MACROS
+#define __STDC_CONSTANT_MACROS
+#endif
+#include <stdint.h>
+#endif /* FreeBSD | OpenBSD | linux */
+#if defined(__DragonFly__) || defined(__NetBSD__)
+#include <machine/int_const.h>
+#endif /* DragonFly | NetBSD */
+#endif /* __cplusplus */
+
#if AV_HAVE_BIGENDIAN
# define AV_NE(be, le) (be)
#else