diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2015-06-11 02:38:01 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-06-11 03:03:49 +0200 |
commit | 54c9be2c4c38ef1e71db866bb67310e2c2511ee0 (patch) | |
tree | 68ad185aa94425ab689b5d74791077516cfbe28c /CMakeLists.txt | |
parent | 43174373032e1198981312b3b527f719b0a5d38b (diff) | |
download | tdelibs-54c9be2c4c38ef1e71db866bb67310e2c2511ee0.tar.gz tdelibs-54c9be2c4c38ef1e71db866bb67310e2c2511ee0.zip |
Add include directory for internal libltdl
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit dfd680030c18adaa4f299a4092d9ac6d5945cadc)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b8f384b6f..5a0184166 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -153,10 +153,12 @@ endif( NO_BUILTIN ) ##### system checks ############################# +tde_save_and_set( CMAKE_REQUIRED_INCLUDES ${CMAKE_SOURCE_DIR}/libltdl ) check_include_file( "ltdl.h" HAVE_LTDL_H ) if( NOT HAVE_LTDL_H ) - tde_message_fatal( "ltdl.h are required, but not found on your system" ) + tde_message_fatal( "ltdl.h is required, but not found on your system" ) endif( ) +tde_restore( CMAKE_REQUIRED_INCLUDES ) check_include_file( "alloca.h" HAVE_ALLOCA_H ) check_include_file( "arpa/nameser8_compat.h" HAVE_ARPA_NAMESER8_COMPAT_H ) |