From 0fcd0b073253bccc83a8a8dbd91bdcceaf6e2bf0 Mon Sep 17 00:00:00 2001 From: kramm Date: Fri, 26 Sep 2008 18:04:49 +0000 Subject: [PATCH] reworked SIZEOF #defines --- config.h.in | 7 +++---- configure.in | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/config.h.in b/config.h.in index 602294d..c16ea58 100644 --- a/config.h.in +++ b/config.h.in @@ -13,12 +13,11 @@ /* Define to `unsigned' if 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 diff --git a/configure.in b/configure.in index cc11362..9286eb3 100644 --- a/configure.in +++ b/configure.in @@ -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 -- 1.7.10.4