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:
Laurent Montel 2006-12-07 14:13:46 +00:00
parent 2697c96ff7
commit df614076d8
4 changed files with 5 additions and 3 deletions

View File

@ -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)

View File

@ -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

View File

@ -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

View File

@ -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.