acinclude: move AC_SYS_LARGEFILE after AC_CANONICAL_*

no idea why, but detection of 64bit largefile flags fails otherwise in
some setups
This commit is contained in:
Stefan Seyfried
2017-02-19 11:30:11 +01:00
committed by M. Liebmann
parent dd653288d8
commit f94f960e85

View File

@@ -3,7 +3,6 @@ AM_CONFIG_HEADER(config.h)
AM_MAINTAINER_MODE
AC_GNU_SOURCE
AC_SYS_LARGEFILE
AC_ARG_WITH(target,
[ --with-target=TARGET target for compilation [[native,cdk]]],
@@ -75,6 +74,7 @@ fi
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
AC_SYS_LARGEFILE
check_path () {
return $(perl -e "if(\"$1\"=~m#^/usr/(local/)?bin#){print \"0\"}else{print \"1\";}")