[Pcre-svn] [865] code/trunk/CMakeLists.txt: Remove SUPPORT_U…

Top Page
Delete this message
Author: Subversion repository
Date:  
To: pcre-svn
Subject: [Pcre-svn] [865] code/trunk/CMakeLists.txt: Remove SUPPORT_UTF8 and make small changes to the comments.
Revision: 865
          http://vcs.pcre.org/viewvc?view=rev&revision=865
Author:   ph10
Date:     2012-01-13 11:28:41 +0000 (Fri, 13 Jan 2012)


Log Message:
-----------
Remove SUPPORT_UTF8 and make small changes to the comments.

Modified Paths:
--------------
    code/trunk/CMakeLists.txt


Modified: code/trunk/CMakeLists.txt
===================================================================
--- code/trunk/CMakeLists.txt    2012-01-13 04:58:55 UTC (rev 864)
+++ code/trunk/CMakeLists.txt    2012-01-13 11:28:41 UTC (rev 865)
@@ -141,14 +141,11 @@
     "Enable use of Just-in-time compiling in pcregrep.")


 SET(PCRE_SUPPORT_UTF OFF CACHE BOOL
-    "Enable support for the Unicode Transformation Format (UTF) encoding.")
+    "Enable support for Unicode Transformation Format (UTF-8 and/or UTF-16) encoding.")


 SET(PCRE_SUPPORT_UNICODE_PROPERTIES OFF CACHE BOOL
-    "Enable support for Unicode properties. (If set, UTF-8 support will be enabled as well)")
+    "Enable support for Unicode properties (if set, UTF support will be enabled as well).")


-SET(PCRE_SUPPORT_UTF8 OFF CACHE BOOL
-    "Enable support for the Unicode UTF-8 encoding.")
-
 SET(PCRE_SUPPORT_BSR_ANYCRLF OFF CACHE BOOL
     "ON=Backslash-R matches only LF CR and CRLF, OFF=Backslash-R matches all Unicode Linebreaks")


@@ -244,10 +241,10 @@
         SET(BSR_ANYCRLF 1)
 ENDIF(PCRE_SUPPORT_BSR_ANYCRLF)


-IF(PCRE_SUPPORT_UTF OR PCRE_SUPPORT_UTF8 OR PCRE_SUPPORT_UNICODE_PROPERTIES)
+IF(PCRE_SUPPORT_UTF OR PCRE_SUPPORT_UNICODE_PROPERTIES)
         SET(SUPPORT_UTF 1)
         SET(PCRE_SUPPORT_UTF ON)
-ENDIF(PCRE_SUPPORT_UTF OR PCRE_SUPPORT_UTF8 OR PCRE_SUPPORT_UNICODE_PROPERTIES)
+ENDIF(PCRE_SUPPORT_UTF OR PCRE_SUPPORT_UNICODE_PROPERTIES)


 IF(PCRE_SUPPORT_UNICODE_PROPERTIES)
         SET(SUPPORT_UCP 1)