summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMickael Savinaud <savmickael@users.noreply.github.com>2011-08-11 14:27:08 +0000
committerMickael Savinaud <savmickael@users.noreply.github.com>2011-08-11 14:27:08 +0000
commit8ed4cb1a1ef01a5843f97b8a05e9218e73624c54 (patch)
tree024ae9d455d52588d12b86c5306198d30164e5d0
parent721904bc261f8198e33476f8dff69fbe3bcef006 (diff)
Fixed issue #76 (openjpeg-1.5)
-rw-r--r--CHANGES1
-rw-r--r--thirdparty/CMakeLists.txt10
2 files changed, 6 insertions, 5 deletions
diff --git a/CHANGES b/CHANGES
index 53d95e74..0ab2350e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,7 @@ What's New for OpenJPEG
+ : added
August 11, 2011
+* [mickael] Fixed issue #76
* [antonin] minor bug fix in configure.ac (credit to Vincent Torri)
! [mickael] backport rev[824-834] and rev[837-859] into the openjpeg-1.5 branch
diff --git a/thirdparty/CMakeLists.txt b/thirdparty/CMakeLists.txt
index 5bcd6113..00415933 100644
--- a/thirdparty/CMakeLists.txt
+++ b/thirdparty/CMakeLists.txt
@@ -18,7 +18,7 @@ IF(ZLIB_FOUND)
SET(Z_LIBNAME ${ZLIB_LIBRARIES} PARENT_SCOPE)
SET(Z_INCLUDE_DIRNAME ${ZLIB_INCLUDE_DIRS} PARENT_SCOPE)
- message("Your system seems to have a Z lib available, we will used it to generate PNG lib")
+ message("Your system seems to have a Z lib available, we will use it to generate PNG lib")
ELSE (ZLIB_FOUND) # not found
@@ -42,7 +42,7 @@ IF (ZLIB_FOUND)
IF(PNG_FOUND)
- message("Your system seems to have a PNG lib available, we will used it")
+ message("Your system seems to have a PNG lib available, we will use it")
SET(HAVE_PNG_H 1 PARENT_SCOPE)
SET(HAVE_LIBPNG 1 PARENT_SCOPE)
SET(PNG_LIBNAME ${PNG_LIBRARIES} PARENT_SCOPE)
@@ -73,7 +73,7 @@ FIND_PACKAGE(TIFF)
IF(TIFF_FOUND)
- message("Your system seems to have a TIFF lib available, we will used it")
+ message("Your system seems to have a TIFF lib available, we will use it")
SET(HAVE_TIFF_H 1 PARENT_SCOPE)
SET(HAVE_LIBTIFF 1 PARENT_SCOPE)
SET(TIFF_LIBNAME ${TIFF_LIBRARIES} PARENT_SCOPE)
@@ -103,7 +103,7 @@ FIND_PACKAGE(LCMS2)
IF(LCMS2_FOUND)
- message("Your system seems to have a LCMS2 lib available, we will used it")
+ message("Your system seems to have a LCMS2 lib available, we will use it")
SET(HAVE_LCMS2_H 1 PARENT_SCOPE)
SET(HAVE_LIBLCMS2 1 PARENT_SCOPE)
SET(LCMS_LIBNAME ${LCMS2_LIBRARIES} PARENT_SCOPE)
@@ -115,7 +115,7 @@ ELSE (LCMS2_FOUND) # not found lcms2
IF(LCMS_FOUND)
- message("Your system seems to have a LCMS lib available, we will used it")
+ message("Your system seems to have a LCMS lib available, we will use it")
SET(HAVE_LCMS_H 1 PARENT_SCOPE)
SET(HAVE_LIBLCMS 1 PARENT_SCOPE)
SET(LCMS_LIBNAME ${LCMS_LIBRARIES} PARENT_SCOPE)