diff --git a/CMakeLists.txt b/CMakeLists.txt index 409011d8c..30405359b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -54,14 +54,6 @@ find_package(ZLIB) check_symbol_exists(strdup "string.h" HAVE_STD_STRDUP) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/platform.h.in ${CMAKE_CURRENT_BINARY_DIR}/src/platform.h) -# When building with MingW, do not look for Intl -if(MINGW) - set(LIBINTL_INCLUDE_DIR "") - set(LIBINTL_LIBRARIES "") -else() - find_package(Intl) -endif() - # If tests are enabled, find CUnit if(USE_TESTS) find_package(CUnit) @@ -82,7 +74,6 @@ set(COREINCS ${SDL2_INCLUDE_DIRS} ${SDL2_MIXER_INCLUDE_DIRS} ${CONFUSE_INCLUDE_DIR} - ${Intl_INCLUDE_DIR} ${XMP_INCLUDE_DIR} ${ENET_INCLUDE_DIR} ${ARGTABLE2_INCLUDE_DIR} @@ -92,7 +83,6 @@ set(COREINCS set(CORELIBS ${CONFUSE_LIBRARY} - ${Intl_LIBRARIES} ${XMP_LIBRARY} ${ENET_LIBRARY} ${ARGTABLE2_LIBRARY} diff --git a/INSTALL.md b/INSTALL.md index 06379c606..0d91aecd9 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -44,7 +44,6 @@ Use at least GCC 9 or Clang 10. MSVC is not supported at this time. Required: * SDL2 (>=2.0.16): http://www.libsdl.org/download-2.0.php * confuse: http://www.nongnu.org/confuse/ -* Gettext (if you have problems with libintl) * Enet: http://enet.bespin.org/ * libargtable2: http://argtable.sourceforge.net/ * libpng: http://www.libpng.org/pub/png/libpng.html