summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-01-04 15:49:19 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-01-04 15:49:19 +0900
commite460a148721ef504aecbdc1cf69c27de88c262b9 (patch)
tree3885a0a1e50588b7a681cb1397106287c7cc7b2a
parent03f309f4de6670abfcfe8518ec4e1e24419038f5 (diff)
downloadkcmldapcontroller-e460a148721ef504aecbdc1cf69c27de88c262b9.tar.gz
kcmldapcontroller-e460a148721ef504aecbdc1cf69c27de88c262b9.zip
Remove support for Tru64
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--ConfigureChecks.cmake1
-rw-r--r--config.h.cmake3
-rw-r--r--src/sha1.cpp6
3 files changed, 0 insertions, 10 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 427373c..c5febab 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -28,7 +28,6 @@ endif( WITH_GCC_VISIBILITY )
##### check for headers
check_include_file( "slapi-plugin.h" HAVE_SLAPI_PLUGIN_H )
-check_include_file( "sys/bitypes.h" HAVE_SYS_BITYPES_H )
check_include_file( "sys/types.h" HAVE_SYS_TYPES_H )
check_include_file( "stdint.h" HAVE_STDINT_H )
diff --git a/config.h.cmake b/config.h.cmake
index 24119f3..8566bc3 100644
--- a/config.h.cmake
+++ b/config.h.cmake
@@ -10,9 +10,6 @@
/* Defined to 1 if you have the <slapi-plugin.h> header */
#cmakedefine HAVE_SLAPI_PLUGIN_H @HAVE_SLAPI_PLUGIN_H@
-/* Define to 1 if you have the <sys/bitypes.h> header */
-#cmakedefine HAVE_SYS_BITYPES_H 1
-
/* Define to 1 if you have the <sys/types.h> header */
#cmakedefine HAVE_SYS_TYPES_H 1
diff --git a/src/sha1.cpp b/src/sha1.cpp
index 3f5dbd9..1ed4e8b 100644
--- a/src/sha1.cpp
+++ b/src/sha1.cpp
@@ -24,12 +24,6 @@
#include <sys/types.h>
#endif
#ifdef HAVE_STDINT_H
-#include <stdint.h> /* For uintXX_t on OSX */
-#endif
-#ifdef HAVE_SYS_BITYPES_H
-#include <sys/bitypes.h> /* For uintXX_t on Tru64 */
-#endif
-#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif