Fix create HAVE_ZLIB variable
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@611286
283d02a7-25f6-0310-bc7c-
ecb5cbfe19da
#check for libz using the cmake supplied FindZLIB.cmake
IF(ZLIB_FOUND)
- SET(HAVE_LIBZ 1)
+ SET(HAVE_ZLIB 1)
ELSE(ZLIB_FOUND)
- SET(HAVE_LIBZ 0)
+ SET(HAVE_ZLIB 0)
ENDIF(ZLIB_FOUND)
Otherwise please prefer adding to the relevant config-foo.h.cmake file,
to minimize recompilations and increase modularity. */
/* Define if you have libz */
-#cmakedefine HAVE_LIBZ 1
+#cmakedefine HAVE_ZLIB 1
class FileTypeResolver
{
public:
+ virtual ~FileTypeResolver() {}
/*!
* This method must be overriden to provide an additional file type
* resolver. If the resolver is able to determine the file type it should
class StringHandler
{
public:
+ virtual ~StringHandler(){}
/*!
* Decode a string from \a data. The default implementation assumes that
* \a data is an ISO-8859-1 (Latin1) character array.