]> source.dussan.org Git - tigervnc.git/commitdiff
Automatically disable NLS if gettext and/or libiconv are missing. On some platforms...
authorDRC <dcommander@users.sourceforge.net>
Fri, 24 Jun 2011 04:17:02 +0000 (04:17 +0000)
committerDRC <dcommander@users.sourceforge.net>
Fri, 24 Jun 2011 04:17:02 +0000 (04:17 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4531 3789f03b-4d11-0410-bbf8-ca57d06f2519

CMakeLists.txt

index ace5ffa30805bd43f65663911ac13ddbafd40b1a..b4047daad03cdba2beb77921de65cb5f3f1e3562 100644 (file)
@@ -135,34 +135,37 @@ endif()
 option(ENABLE_NLS "Enable translation of program messages" ON)
 if(ENABLE_NLS)
   # Tools
-  find_package(Gettext REQUIRED)
+  find_package(Gettext)
   set(LOCALE_DIR "${CMAKE_INSTALL_PREFIX}/share/locale")
 
   # Gettext needs iconv
-  find_package(Iconv REQUIRED)
-
-  # Headers and libraries (copied from licq)
-  set(GETTEXT_FOUND FALSE)
-
-  find_path(GETTEXT_INCLUDE_DIR libintl.h)
-  if(GETTEXT_INCLUDE_DIR)
-    set(CMAKE_REQUIRED_LIBRARIES ${ICONV_LIBRARIES})
-    check_function_exists(dgettext LIBC_HAS_DGETTEXT)
-    if(LIBC_HAS_DGETTEXT)
-      set(GETTEXT_FOUND TRUE)
-    else()
-      find_library(LIBINTL_LIBRARY NAMES intl libintl)
-      check_library_exists(${LIBINTL_LIBRARY} "dgettext" "" LIBINTL_HAS_DGETTEXT)
-      if(LIBINTL_HAS_DGETTEXT)
-        set(GETTEXT_LIBRARIES ${LIBINTL_LIBRARY} ${ICONV_LIBRARIES})
+  find_package(Iconv)
+
+  if(ICONV_FOUND)
+    # Headers and libraries (copied from licq)
+    set(GETTEXT_FOUND FALSE)
+
+    find_path(GETTEXT_INCLUDE_DIR libintl.h)
+    if(GETTEXT_INCLUDE_DIR)
+      set(CMAKE_REQUIRED_LIBRARIES ${ICONV_LIBRARIES})
+      check_function_exists(dgettext LIBC_HAS_DGETTEXT)
+      if(LIBC_HAS_DGETTEXT)
         set(GETTEXT_FOUND TRUE)
+      else()
+        find_library(LIBINTL_LIBRARY NAMES intl libintl)
+        check_library_exists(${LIBINTL_LIBRARY} "dgettext" "" LIBINTL_HAS_DGETTEXT)
+        if(LIBINTL_HAS_DGETTEXT)
+          set(GETTEXT_LIBRARIES ${LIBINTL_LIBRARY} ${ICONV_LIBRARIES})
+          set(GETTEXT_FOUND TRUE)
+        endif()
       endif()
+      set(CMAKE_REQUIRED_LIBRARIES)
     endif()
-    set(CMAKE_REQUIRED_LIBRARIES)
   endif()
 
   if(NOT GETTEXT_FOUND)
-    message(FATAL_ERROR "Gettext NOT found")
+    message(WARNING "Gettext NOT found.  Native Language Support disabled.")
+    set(ENABLE_NLS 0)
   endif()
 endif()