diff options
author | phintuka <phintuka> | 2010-02-23 18:43:00 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-02-23 18:43:00 +0000 |
commit | 68075e250bd5b103ca9cf9e69097a229f2cb569c (patch) | |
tree | 3b42bc168421e8ca01b5c810f8062170eacee4d7 | |
parent | f1708770ceb1eba6cbdd68c251dabeac2fc543e7 (diff) | |
download | xineliboutput-68075e250bd5b103ca9cf9e69097a229f2cb569c.tar.gz xineliboutput-68075e250bd5b103ca9cf9e69097a229f2cb569c.tar.bz2 |
Fixed compilation with libextractor 0.6.0.
Note: metainfo menu has no libextractor 0.6.0 support yet !
-rw-r--r-- | tools/metainfo_menu.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/metainfo_menu.c b/tools/metainfo_menu.c index 4a31b18c..64558917 100644 --- a/tools/metainfo_menu.c +++ b/tools/metainfo_menu.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: metainfo_menu.c,v 1.8 2009-08-18 10:35:45 phintuka Exp $ + * $Id: metainfo_menu.c,v 1.9 2010-02-23 18:43:00 phintuka Exp $ * */ @@ -21,6 +21,10 @@ #include "metainfo_menu.h" +#if defined(HAVE_LIBEXTRACTOR) && EXTRACTOR_VERSION >= 0x00060000 +# undef HAVE_LIBEXTRACTOR +# warning metainfo menu: libextractor 0.6.0 API not supported +#endif // // cMetainfoMenu |