From f4866e7dd894e1d4bb4d498fb7d358b4d145e052 Mon Sep 17 00:00:00 2001 From: David Rosca Date: Wed, 20 Mar 2019 11:29:10 +0100 Subject: [PATCH] Remove custom version of FindLibIntl.cmake Use the one provided by CMake. --- cmake/FindLibIntl.cmake | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 cmake/FindLibIntl.cmake diff --git a/cmake/FindLibIntl.cmake b/cmake/FindLibIntl.cmake deleted file mode 100644 index 4d0bcd97a..000000000 --- a/cmake/FindLibIntl.cmake +++ /dev/null @@ -1,9 +0,0 @@ -find_path(LibIntl_INCLUDE_DIRS NAMES libintl.h) -find_library(LibIntl_LIBRARIES NAMES intl libintl) -include(CheckCXXSymbolExists) -check_cxx_symbol_exists(gettext libintl.h LibIntl_SYMBOL_FOUND) -if (LibIntl_SYMBOL_FOUND) - set(HAVE_LIBINTL TRUE) -else() - set(HAVE_LIBINTL FALSE) -endif()