From e5b2a538b1ecaed6d4e3a99f274ece950b1184cc Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Fri, 2 Oct 2009 11:26:59 +0000 Subject: [PATCH] Fixed nasm detection for newer autotools --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 7fc79658e..0a1b98cd5 100644 --- a/configure.in +++ b/configure.in @@ -727,7 +727,7 @@ CheckNASM() dnl Mac OS X might report itself as "i386" but generate x86_64 code. dnl So see what size we think a pointer is, and bail if not 32-bit. AC_CHECK_SIZEOF([void *], 4) - if test x"$SIZEOF_VOID_P" != x4; then + if test x$ac_cv_sizeof_void_p != x4; then return fi