From c4133f248901459aa4f05c46f0204a8b48262840 Mon Sep 17 00:00:00 2001 From: Bart van Strien Date: Mon, 27 Aug 2012 15:57:39 +0200 Subject: [PATCH] (Hopefully) fix some issues with older version of autotools --- platform/unix/automagic | 2 +- platform/unix/{configure.in => configure.ac} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename platform/unix/{configure.in => configure.ac} (98%) diff --git a/platform/unix/automagic b/platform/unix/automagic index dfa3e4c6b..eca181b0d 100755 --- a/platform/unix/automagic +++ b/platform/unix/automagic @@ -18,7 +18,7 @@ AUTOMAKE=$(which automake) [[ -x ${AUTOMAKE} ]] || die "Could not find automake." automagic() { - cp platform/unix/configure.in . + cp platform/unix/configure.ac . cp platform/unix/Makefile.am . if ! sh platform/unix/gen-makefile; then diff --git a/platform/unix/configure.in b/platform/unix/configure.ac similarity index 98% rename from platform/unix/configure.in rename to platform/unix/configure.ac index 2ab096e06..8ba3bc264 100644 --- a/platform/unix/configure.in +++ b/platform/unix/configure.ac @@ -6,7 +6,7 @@ AC_CONFIG_SRCDIR([src/love.cpp]) AM_INIT_AUTOMAKE([foreign -Wall foreign tar-ustar silent-rules]) AM_SILENT_RULES AC_PREFIX_DEFAULT([/usr]) -AM_PROG_AR +m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) AC_PROG_LIBTOOL AC_PROG_CC AC_PROG_CXX