Activate cross-compilation features in autoconf.
authorYann Dirson <ydirson@free.fr>
Tue, 4 Feb 2014 22:01:02 +0000 (23:01 +0100)
committerYann Dirson <ydirson@free.fr>
Mon, 10 Feb 2014 19:51:44 +0000 (20:51 +0100)
.gitignore
NEWS
configure.ac

index 72174a8..bfbda48 100644 (file)
@@ -11,6 +11,8 @@ Makefile.in
 /ylwrap
 /stamp-h1
 /INSTALL
+/config.guess
+/config.sub
 
 /autom4te.cache/
 /config.log
diff --git a/NEWS b/NEWS
index fc0694d..b32a839 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,9 @@ GNU shogi news
 Changes in version 1.5.0 (unreleased):
 
 * Build system switched from pure autoconf to automake
+* Support for cross-compilation using standard "./configure --host=...",
+  including building windows binaries (both 32bit and 64bit) using
+  the gcc-mingw toolchain
 
 Changes in version 1.4.2 (unreleased):
 
index f800cf9..615b69d 100644 (file)
@@ -13,6 +13,7 @@ AC_CONFIG_HEADER(config.h)
 ##########
 AC_MSG_NOTICE([C compiler])
 AC_PROG_CC
+AC_CANONICAL_BUILD
 AC_PROG_INSTALL
 
 ##########