Skip to content

Commit

Permalink
Fixed nasm detection for newer autotools
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 2, 2009
1 parent c40bc14 commit e5b2a53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -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

Expand Down

0 comments on commit e5b2a53

Please sign in to comment.