Sophie

Sophie

distrib > Fedora > 13 > x86_64 > by-pkgid > 4b6a01277971eba2ed92c8f77d1f47e8 > files > 1

strigi-0.7.2-5.fc13.src.rpm

diff -up strigi-0.6.2/src/streams/strigi/strigiconfig.h.cmake.multilib strigi-0.6.2/src/streams/strigi/strigiconfig.h.cmake
--- strigi-0.6.2/src/streams/strigi/strigiconfig.h.cmake.multilib	2009-01-03 04:06:13.000000000 -0600
+++ strigi-0.6.2/src/streams/strigi/strigiconfig.h.cmake	2009-01-09 07:06:12.000000000 -0600
@@ -83,104 +83,6 @@
 #  include <stddef.h>
 #endif
 
-// our needed types
-#if !@HAVE_INT8_T@
- #define HAVE_INT8_T 1
- #if ${SIZEOF_CHAR}==1 //is char one byte?
-  typedef signed char int8_t;
- #else
-  #error Could not determine type for int8_t!
- #endif
-#endif
-
-#if !@HAVE_UINT8_T@
- #define HAVE_UINT8_T 1
- #if ${SIZEOF_CHAR}==1 //is char one byte?
-  typedef unsigned char uint8_t;
- #else
-  #error Could not determine type for uint8_t!
- #endif
-#endif
-
-#if !@HAVE_INT16_T@
- #define HAVE_INT16_T 1
- #if ${SIZEOF_SHORT}==2 //is short two bytes?
-  typedef short int16_t;
- #else
-  #error Could not determine type for int16_t!
- #endif
-#endif
-
-#if !@HAVE_UINT16_T@
- #define HAVE_UINT16_T 1
- #if ${SIZEOF_SHORT}==2 //is short two bytes?
-  typedef unsigned short uint16_t;
- #else
-  #error Could not determine type for uint16_t!
- #endif
-#endif
-
-#if !@HAVE_INT32_T@
- #define HAVE_INT32_T 1
- #if ${SIZEOF_INT}==4 //is int four bytes?
-  typedef int int32_t;
- #elif ${SIZEOF_LONG}==4 //is long four bytes?
-  typedef long int32_t;
- #else
-  #error Could not determine type for int32_t!
- #endif
-#endif
-
-#if !@HAVE_UINT32_T@
- #define HAVE_UINT32_T 1
- #if ${SIZEOF_INT}==4 //is int four bytes?
-  typedef unsigned int uint32_t;
- #elif ${SIZEOF_LONG}==4 //is long four bytes?
-  typedef unsigned long uint32_t;
- #else
-  #error Could not determine type for uint32_t!
- #endif
-#endif
-
-#if !@HAVE_INT64_T@
- #define HAVE_INT64_T 1
- #if ${SIZEOF_LONG}==8
-  typedef long int64_t;
- #elif ${SIZEOF_LONGLONG}==8
-  typedef long long int64_t; 
- #else
-  #error Could not determine type for int64_t!
- #endif
-#endif
-
-#if !@HAVE_UINT64_T@
- #define HAVE_UINT64_T 1
- #if ${SIZEOF_LONG}==8
-  typedef unsigned long uint64_t;
- #elif ${SIZEOF_LONGLONG}==8
-  typedef unsigned long long uint64_t; 
- #elif defined(HAVE___INT64)
-  typedef unsigned __int64 uint64_t; 
- #else
-  #error Could not determine type for uint64_t!
- #endif
-#endif
-
-#if !@HAVE_UINT@
- typedef unsigned int uint;
- #define HAVE_UINT 1
-#endif
-
-#if !@HAVE_SIZE_T@
- #ifndef _SIZE_T_DEFINED 
-  #ifndef HAVE_SIZE_T
-   typedef unsigned int size_t;
-   #define HAVE_SIZE_T 1
-  #endif
-  #define _SIZE_T_DEFINED 1     // kdewin32 define
- #endif
-#endif
-
 #cmakedefine __STRIGI_HAVE_GCC_VISIBILITY
 
 /**