diff options
Diffstat (limited to 'src/video_out/libdha/libdha.h')
-rw-r--r-- | src/video_out/libdha/libdha.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/video_out/libdha/libdha.h b/src/video_out/libdha/libdha.h index 53a96839d..850697ada 100644 --- a/src/video_out/libdha/libdha.h +++ b/src/video_out/libdha/libdha.h @@ -16,7 +16,11 @@ #ifndef LIBDHA_H #define LIBDHA_H -#include <stdint.h> +#if defined (__FreeBSD__) +# include <inttypes.h> +#else +# include <stdint.h> +#endif #ifdef __cplusplus extern "C" { |