mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 01:56:37 -04:00
44 lines
980 B
Text
44 lines
980 B
Text
--- CMakeLists.txt.orig
|
|
+++ CMakeLists.txt
|
|
@@ -22,13 +22,17 @@
|
|
endif()
|
|
|
|
find_package(PkgConfig)
|
|
-find_package(Libintl)
|
|
-find_package(Gettext)
|
|
|
|
# Enable i10n.
|
|
-if(LIBINTL_LIB_FOUND)
|
|
+option(WITH_NLS "Enable NLS support" TRUE)
|
|
+if(WITH_NLS)
|
|
+ find_package(Libintl)
|
|
+ find_package(Gettext)
|
|
+
|
|
+ if(LIBINTL_LIB_FOUND)
|
|
set(ENABLE_NLS TRUE)
|
|
-endif(LIBINTL_LIB_FOUND)
|
|
+ endif(LIBINTL_LIB_FOUND)
|
|
+endif(WITH_NLS)
|
|
|
|
if(NOT WIN32)
|
|
option(HAVE_ENCHANT "Enable spellchecking" FALSE)
|
|
@@ -40,11 +40,14 @@
|
|
option(ENABLE_OSX_BUNDLE "Package dxirc as an OSX bundle (ignored on other platforms)." OFF)
|
|
endif(APPLE)
|
|
|
|
-set(HAVE_LUA FALSE)
|
|
-find_package(Lua)
|
|
-if(LUA_FOUND)
|
|
- set(HAVE_LUA TRUE)
|
|
-endif(LUA_FOUND)
|
|
+option(WITH_LUA "Enable LUA support" FALSE)
|
|
+if(WITH_LUA)
|
|
+ set(HAVE_LUA FALSE)
|
|
+ find_package(Lua)
|
|
+ if(LUA_FOUND)
|
|
+ set(HAVE_LUA TRUE)
|
|
+ endif(LUA_FOUND)
|
|
+endif(WITH_LUA)
|
|
|
|
if(APPLE AND ENABLE_OSX_BUNDLE)
|
|
add_definitions(-DLOCALEDIR="./locale")
|