diff options
author | Slávek Banko <[email protected]> | 2016-12-04 19:14:57 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-12-04 19:15:12 +0100 |
commit | 0feb22c61fc68791879d50dd0541e7eba4bc8425 (patch) | |
tree | 12e5de96e1f1e68e674d04aa326547326db711cb /ConfigureChecks.cmake | |
parent | a86cb078cbc402986df6e212198a9e451e3f44c4 (diff) | |
download | tdenetwork-0feb22c61fc68791879d50dd0541e7eba4bc8425.tar.gz tdenetwork-0feb22c61fc68791879d50dd0541e7eba4bc8425.zip |
cmake: Move test for stdint.h to common tests
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 182234c826322c90bed4e02bd0846372b83c245f)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index d78e05db..8579d7a1 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -32,6 +32,10 @@ if( BUILD_KOPETE OR BUILD_KPPP ) check_include_file( string.h HAVE_STRING_H ) endif( ) +if( BUILD_KOPETE OR BUILD_KTALKD ) + check_include_file( stdint.h HAVE_STDINT_H ) +endif( ) + if( WITH_SLP ) check_library_exists( slp "SLPOpen" "" HAVE_SLP ) if( HAVE_SLP ) |