aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2015-10-17 14:40:12 +0200
committerEven Rouault <even.rouault@spatialys.com>2015-10-17 14:40:12 +0200
commit1906ed3c70d1cf3474add6909b30276a5b0d7c8c (patch)
tree5fea2cbac8b475fbabec8b98b52a52a476be9f57
parent46110afd85de4e43c435100c0c21b5990e96598c (diff)
downloadPROJ-1906ed3c70d1cf3474add6909b30276a5b0d7c8c.tar.gz
PROJ-1906ed3c70d1cf3474add6909b30276a5b0d7c8c.zip
Fix configure.ac to add config.guess / config.sub
On my system (Ubuntu 10.04), ./autogen.sh doesn't copy config.guess and config.sub, which cause ./configure to fail
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 6ea32082..16343ba1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,6 +5,7 @@ AC_INIT([PROJ.4 Projections], 4.9.2, [warmerdam@pobox.com], proj)
AC_CONFIG_MACRO_DIR([m4])
AC_LANG(C)
+AC_CONFIG_AUX_DIR([.])
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(src/proj_config.h)