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 ) diff --git a/config.h.cmake b/config.h.cmake index 3f33b830..4006c692 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -15,6 +15,9 @@ // kopete/protocols/yahoo, kppp #cmakedefine HAVE_STRING_H 1 +// kopete, ktalkd +#cmakedefine HAVE_STDINT_H 1 + // kopete/protocols/jabber #cmakedefine SUPPORT_JINGLE 1 #cmakedefine HAVE_GLIB 1 diff --git a/kopete/protocols/yahoo/libkyahoo/CMakeLists.txt b/kopete/protocols/yahoo/libkyahoo/CMakeLists.txt index a4ba8ba0..131ca394 100644 --- a/kopete/protocols/yahoo/libkyahoo/CMakeLists.txt +++ b/kopete/protocols/yahoo/libkyahoo/CMakeLists.txt @@ -13,8 +13,6 @@ include( ConfigureChecks.cmake ) if( HAVE_INTTYPES_H ) add_definitions( -DHAVE_INTTYPES_H ) -elseif( HAVE_STDINT_H ) - add_definitions( -DHAVE_STDINT_H ) endif() diff --git a/kopete/protocols/yahoo/libkyahoo/ConfigureChecks.cmake b/kopete/protocols/yahoo/libkyahoo/ConfigureChecks.cmake index a2a2fe60..4e4e8a25 100644 --- a/kopete/protocols/yahoo/libkyahoo/ConfigureChecks.cmake +++ b/kopete/protocols/yahoo/libkyahoo/ConfigureChecks.cmake @@ -10,6 +10,5 @@ ################################################# check_include_file( inttypes.h HAVE_INTTYPES_H ) -check_include_file( stdint.h HAVE_STDINT_H ) check_include_file( strings.h HAVE_STRINGS_H )