From 49384fc577036969233a588e9a6f733998f39155 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Thu, 11 Jul 2013 23:16:47 -0700 Subject: [PATCH] Fixed Azamat's patch for SIZEOF_VOIDP in SDL_config.h.in --- include/SDL_config.h.in | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/SDL_config.h.in b/include/SDL_config.h.in index d751d8ed9..04ee11052 100644 --- a/include/SDL_config.h.in +++ b/include/SDL_config.h.in @@ -42,11 +42,10 @@ #undef volatile /* C datatypes */ -#undef SIZEOF_VOIDP #ifdef __LP64__ -#define SIZEOF_VOID_P 8 +#define SIZEOF_VOIDP 8 #else -#define SIZEOF_VOID_P 4 +#define SIZEOF_VOIDP 4 #endif #undef HAVE_GCC_ATOMICS #undef HAVE_GCC_SYNC_LOCK_TEST_AND_SET