reworked SIZEOF #defines
authorkramm <kramm>
Fri, 26 Sep 2008 18:04:49 +0000 (18:04 +0000)
committerkramm <kramm>
Fri, 26 Sep 2008 18:04:49 +0000 (18:04 +0000)
config.h.in
configure.in

index 602294d..c16ea58 100644 (file)
 /* Define to `unsigned' if <sys/types.h> doesn't define.  */
 #undef size_t
 
+#undef SIZEOF_SIGNED_CHAR
+#undef SIZEOF_SIGNED_SHORT
 #undef SIZEOF_SIGNED
-#undef SIZEOF_UNSIGNED
-#undef SIZEOF_SIGNED_LONG
-#undef SIZEOF_UNSIGNED_LONG
 #undef SIZEOF_SIGNED_LONG_LONG
-#undef SIZEOF_UNSIGNED_LONG_LONG
+#undef SIZEOF_VOIDP
 
 /* Define if you have the ANSI C header files.  */
 #undef STDC_HEADERS
index cc11362..9286eb3 100644 (file)
@@ -255,12 +255,11 @@ dnl Checks for typedefs, structures, and compiler characteristics.
  AC_CHECK_TYPE(boolean,int) #needed for jpeglib
  AC_CHECK_FUNCS(popen wcschr wcsdup mkstemp stat lrand48 rand srand48 srand bcopy bzero time getrusage mallinfo)
 
+AC_CHECK_SIZEOF([signed char])
+AC_CHECK_SIZEOF([signed short])
 AC_CHECK_SIZEOF([signed])
-AC_CHECK_SIZEOF([unsigned])
-AC_CHECK_SIZEOF([signed long])
-AC_CHECK_SIZEOF([unsigned long])
 AC_CHECK_SIZEOF([signed long long])
-AC_CHECK_SIZEOF([unsigned long long])
+AC_CHECK_SIZEOF([void*])
 
 RFX_CHECK_FREETYPE