mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
Fix warning
Fix create HAVE_ZLIB variable git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@611286 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
parent
2697c96ff7
commit
df614076d8
@ -14,7 +14,7 @@ include(CheckCXXSourceCompiles)
|
||||
#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)
|
||||
|
@ -4,4 +4,4 @@
|
||||
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
|
||||
|
@ -88,6 +88,7 @@ namespace TagLib {
|
||||
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
|
||||
|
@ -55,6 +55,7 @@ namespace TagLib {
|
||||
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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user