summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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