aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/mpeg/id3v2/id3v2framefactory.cpp
diff options
context:
space:
mode:
authorTsuda Kageyu <tsuda.kageyu@gmail.com>2013-05-02 23:03:13 +0900
committerTsuda Kageyu <tsuda.kageyu@gmail.com>2013-05-02 23:26:06 +0900
commit8f8ef3788f606696b47b4983638795f520ad77ae (patch)
treeb8db01c9f481decee2f17514eb5084e1aaadbbd8 /taglib/mpeg/id3v2/id3v2framefactory.cpp
parentb0938a3cf1ab3a6261821169b882c300382de023 (diff)
Prefixed public variables
Diffstat (limited to 'taglib/mpeg/id3v2/id3v2framefactory.cpp')
-rw-r--r--taglib/mpeg/id3v2/id3v2framefactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/taglib/mpeg/id3v2/id3v2framefactory.cpp b/taglib/mpeg/id3v2/id3v2framefactory.cpp
index 5c223e1a..d5a173c7 100644
--- a/taglib/mpeg/id3v2/id3v2framefactory.cpp
+++ b/taglib/mpeg/id3v2/id3v2framefactory.cpp
@@ -133,7 +133,7 @@ Frame *FrameFactory::createFrame(const ByteVector &origData, Header *tagHeader)
// TagLib doesn't mess with encrypted frames, so just treat them
// as unknown frames.
-#if HAVE_ZLIB == 0
+#if !defined(TAGLIB_HAVE_ZLIB) || TAGLIB_HAVE_ZLIB == 0
if(header->compression()) {
debug("Compressed frames are currently not supported.");
return new UnknownFrame(data, header);