troosh / openjpeg

Automatically exported from code.google.com/p/openjpeg
Other
0 stars 0 forks source link

Trivial wording change for buildsystem #76

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Build using cmake
2. Observe descriptive output
3.

What is the expected output? What do you see instead?
See "We will used it.." style wording, expect "We will use it" instead.
(No effect on resulting object code)

What version of the product are you using? On what operating system?
Subversion 837

Please provide any additional information below.
The issue is in thirdparty/CMakeLists.txt

There are two minor variations on this issue - the s/used/use/ part, and the 
part where it says "Your system seems to have a Z lib available, we will used 
it to generate PNG lib" when it sometimes won't.

Patch:
--- thirdparty/CMakeLists.txt   (revision 837)
+++ thirdparty/CMakeLists.txt   (working copy)
@@ -18,7 +18,7 @@

   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 if necessary")

 ELSE (ZLIB_FOUND) # not found

@@ -42,7 +42,7 @@

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

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

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

   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)

Original issue reported on code.google.com by br...@frogmouth.net on 25 Jul 2011 at 8:07

GoogleCodeExporter commented 9 years ago
Thanks to underline this issue, these mistakes are corrected in rev862 and rev 
863.

Mickaël

Original comment by savmick...@gmail.com on 11 Aug 2011 at 2:31