diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-03-25 01:08:13 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-03-25 01:08:13 +0000 |
commit | 1de1bfe314bb8c48b3e508f5001927988588fcf6 (patch) | |
tree | e6ce56cbabdcd4420b16c4dd9e9707205c5619f1 /src/mp4ff | |
parent | 63a62a45142380d67db3d2d5cb57891b2c9371e7 (diff) | |
download | mpd-1de1bfe314bb8c48b3e508f5001927988588fcf6.tar.gz mpd-1de1bfe314bb8c48b3e508f5001927988588fcf6.tar.xz mpd-1de1bfe314bb8c48b3e508f5001927988588fcf6.zip |
fix and detect differences between faad2 1.1 and 2.0
git-svn-id: https://svn.musicpd.org/mpd/trunk@459 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/mp4ff')
-rw-r--r-- | src/mp4ff/mp4ff_int_types.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mp4ff/mp4ff_int_types.h b/src/mp4ff/mp4ff_int_types.h index 8dbf7bc2e..88651a81c 100644 --- a/src/mp4ff/mp4ff_int_types.h +++ b/src/mp4ff/mp4ff_int_types.h @@ -15,9 +15,16 @@ typedef unsigned __int64 uint64_t; #else -#include <stdint.h> +#include "../../config.h" +#ifdef HAVE_STDINT_H +#include <stdint.h> +#else +#ifdef HAVE_INTTYPES_H +#include <inttypes.h> +#endif #endif +#endif #endif |