Project

General

Profile

Patch #728 ยป typo.patch

Nikolai Saoukh, 22 Sep 2010 05:55

View differences:

CMakeLists.txt (working copy)
111 116
    ADD_SUBDIRECTORY( samples )
112 117
ENDIF( EXIV2_ENABLE_BUILD_SAMPLES )
113 118

  
114
IF( EXIV2_BUILD_PO )
119
IF( EXIV2_ENABLE_BUILD_PO )
115 120
    ADD_SUBDIRECTORY( po )
116
ENDIF( EXIV2_BUILD_PO )
121
ENDIF( EXIV2_ENABLE_BUILD_PO )
config/ConfigureChecks.cmake (working copy)
276 276
OptionOutput( "Nikon lens database:                " EXIV2_ENABLE_LENSDATA           )
277 277
OptionOutput( "Commercial build:                   " EXIV2_ENABLE_COMMERCIAL         )
278 278
OptionOutput( "Build the unit tests:               " EXIV2_ENABLE_BUILD_SAMPLES      )
279
OptionOutput( "Building translations files:        " EXIV2_BUILD_PO                  )
279
OptionOutput( "Building translations files:        " EXIV2_ENABLE_BUILD_PO           )
280 280
MESSAGE( STATUS "------------------------------------------------------------------" )
src/CMakeLists.txt (working copy)
172 172
ENDIF( MSVC )
173 173

  
174 174
IF( EXIV2_ENABLE_XMP )
175
    IF( NOT EXIV2_EXIV2_ENABLE_LIBXMP )
175
    IF( NOT EXIV2_ENABLE_LIBXMP )
176 176
        SET( LIBEXIV2_SRC ${XMPSRC} ${LIBEXIV2_SRC} )
177
    ENDIF( NOT EXIV2_EXIV2_ENABLE_LIBXMP )
177
    ENDIF( NOT EXIV2_ENABLE_LIBXMP )
178 178
ENDIF( EXIV2_ENABLE_XMP )
179 179

  
180 180
# ******************************************************************************
......
188 188

  
189 189
TARGET_LINK_LIBRARIES( exiv2 ${EXPAT_LIBRARIES} )
190 190

  
191
if( EXIV2_EXIV2_ENABLE_LIBXMP )
191
if( EXIV2_ENABLE_LIBXMP )
192 192
    TARGET_LINK_LIBRARIES( exiv2 ${XMPLIB} )
193
ENDIF( EXIV2_EXIV2_ENABLE_LIBXMP )
193
ENDIF( EXIV2_ENABLE_LIBXMP )
194 194

  
195 195
IF( EXIV2_ENABLE_PNG )
196 196
    IF( ZLIB_FOUND )
    (1-1/1)