diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2006-10-02 15:56:03 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2006-10-02 15:56:03 +0000 |
commit | e1f238b9b1cccad4627be4716320e767b621289d (patch) | |
tree | 7aaa4538c811dce87fcc4908dc5fef268fa207e9 /m4/_xine.m4 | |
parent | 6822d8e82afac62170ddb7e88f4fb26c2adbb3a6 (diff) | |
download | xine-lib-e1f238b9b1cccad4627be4716320e767b621289d.tar.gz xine-lib-e1f238b9b1cccad4627be4716320e767b621289d.tar.bz2 |
build cdio for builddir != .
update for attic platforms (mainly older MinGW)
unsupported attributes not used (fixes warnings)
added check for sentinel attribute
enabled TrueSpeech codec
CVS patchset: 8327
CVS date: 2006/10/02 15:56:03
Diffstat (limited to 'm4/_xine.m4')
-rw-r--r-- | m4/_xine.m4 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/m4/_xine.m4 b/m4/_xine.m4 index 897ba07a2..60baed8c1 100644 --- a/m4/_xine.m4 +++ b/m4/_xine.m4 @@ -265,6 +265,19 @@ EOF # define PRIx64 PRI64_PREFIX "x" #endif +#ifndef PRIX8 +# define PRIX8 "X" +#endif +#ifndef PRIX16 +# define PRIX16 "X" +#endif +#ifndef PRIX32 +# define PRIX32 "X" +#endif +#ifndef PRIX64 +# define PRIX64 PRI64_PREFIX "X" +#endif + #ifndef PRIdFAST8 # define PRIdFAST8 "d" #endif |