Commit b4b357ee authored by Rémi Duraffort's avatar Rémi Duraffort

taglib: use the taglib version to decide if apefile is available.

parent a1271085
...@@ -1778,7 +1778,6 @@ AS_IF([test "${enable_taglib}" != "no"], [ ...@@ -1778,7 +1778,6 @@ AS_IF([test "${enable_taglib}" != "no"], [
VLC_ADD_CXXFLAGS([taglib],[$TAGLIB_CFLAGS]) VLC_ADD_CXXFLAGS([taglib],[$TAGLIB_CFLAGS])
AC_LANG_PUSH(C++) AC_LANG_PUSH(C++)
AC_CHECK_HEADERS(taglib/mp4coverart.h) AC_CHECK_HEADERS(taglib/mp4coverart.h)
AC_CHECK_HEADERS(taglib/apefile.h)
AC_LANG_POP(C++) AC_LANG_POP(C++)
], [ ], [
AC_MSG_WARN(TagLib library not found)]) AC_MSG_WARN(TagLib library not found)])
......
...@@ -45,6 +45,12 @@ ...@@ -45,6 +45,12 @@
// Taglib headers // Taglib headers
#include <taglib.h>
#define VERSION_INT(a, b, c) ((a)<<16 | (b)<<8 | (c))
#define TAGLIB_VERSION VERSION_INT(TAGLIB_MAJOR_VERSION, \
TAGLIB_MINOR_VERSION, \
TAGLIB_PATCH_VERSION)
#include <fileref.h> #include <fileref.h>
#include <tag.h> #include <tag.h>
#include <tbytevector.h> #include <tbytevector.h>
...@@ -53,8 +59,9 @@ ...@@ -53,8 +59,9 @@
#include <id3v2tag.h> #include <id3v2tag.h>
#include <xiphcomment.h> #include <xiphcomment.h>
#ifdef HAVE_TAGLIB_APEFILE_H #if TAGLIB_VERSION >= VERSION_INT(1,7,0)
#include <apefile.h> # define TAGLIB_HAVE_APEFILE_H
# include <apefile.h>
#endif #endif
#include <flacfile.h> #include <flacfile.h>
#include <mpcfile.h> #include <mpcfile.h>
...@@ -438,7 +445,7 @@ static int ReadMeta( vlc_object_t* p_this) ...@@ -438,7 +445,7 @@ static int ReadMeta( vlc_object_t* p_this)
// Try now to read special tags // Try now to read special tags
#ifdef HAVE_TAGLIB_APEFILE_H #ifdef TAGLIB_HAVE_APEFILE_H
if( APE::File* ape = dynamic_cast<APE::File*>(f.file()) ) if( APE::File* ape = dynamic_cast<APE::File*>(f.file()) )
{ {
if( ape->APETag() ) if( ape->APETag() )
...@@ -664,7 +671,7 @@ static int WriteMeta( vlc_object_t *p_this ) ...@@ -664,7 +671,7 @@ static int WriteMeta( vlc_object_t *p_this )
// Try now to write special tags // Try now to write special tags
#ifdef HAVE_TAGLIB_APEFILE_H #ifdef TAGLIB_HAVE_APEFILE_H
if( APE::File* ape = dynamic_cast<APE::File*>(f.file()) ) if( APE::File* ape = dynamic_cast<APE::File*>(f.file()) )
{ {
if( ape->APETag() ) if( ape->APETag() )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment