Skip to content

Commit

Permalink
Merge r2921:2922 from SDL trunk to 1.2 branch: mingw alloca.h workaro…
Browse files Browse the repository at this point in the history
…und.
  • Loading branch information
icculus committed Dec 1, 2006
1 parent a9a1bc9 commit 2013951
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion configure.in
Expand Up @@ -124,7 +124,14 @@ if test x$enable_libc = xyes; then
fi

dnl Checks for library functions.
AC_FUNC_ALLOCA
case "$host" in
*-*-cygwin* | *-*-mingw32*)
;;
*)
AC_FUNC_ALLOCA
;;
esac

AC_FUNC_MEMCMP
if test x$ac_cv_func_memcmp_working = xyes; then
AC_DEFINE(HAVE_MEMCMP)
Expand Down

0 comments on commit 2013951

Please sign in to comment.