From 00e69b26f14624520b7050ef552a8527e469c25c Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 10 Oct 2009 09:58:32 +0000 Subject: [PATCH] Fixed bug #833 Fixed errors with older autoconf --- configure.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index a316192dd..678c268f1 100644 --- a/configure.in +++ b/configure.in @@ -36,6 +36,7 @@ LT_RELEASE=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION LT_CURRENT=`expr $SDL_MICRO_VERSION - $SDL_INTERFACE_AGE` LT_REVISION=$SDL_INTERFACE_AGE LT_AGE=`expr $SDL_BINARY_AGE - $SDL_INTERFACE_AGE` +m4_pattern_allow([^LT_]) AC_SUBST(LT_RELEASE) AC_SUBST(LT_CURRENT) @@ -44,7 +45,7 @@ AC_SUBST(LT_AGE) dnl Detect the canonical build and host environments AC_CONFIG_AUX_DIR([build-scripts]) -AC_CANONICAL_HOST +dnl AC_CANONICAL_HOST AC_C_BIGENDIAN if test x$ac_cv_c_bigendian = xyes; then AC_DEFINE(SDL_BYTEORDER, 4321)