From bfbb55ed6430f6b4d9bb49d4f2592ef9a5713e75 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 29 Dec 2014 03:08:09 -0500 Subject: refactor (again): new download script, separate architectures, modules --- configure.ac | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 66747ef..9c67699 100644 --- a/configure.ac +++ b/configure.ac @@ -29,18 +29,17 @@ if test "x$HAVE_WGET" = x ; then AC_MSG_ERROR([Please install the 'wget' utility]) fi +AC_CHECK_PROG(HAVE_BSDTAR,bsdtar,yes) +if test "x$HAVE_BSDTAR" = x ; then + AC_MSG_ERROR([Please install the 'bsdtar' utility]) +fi + dnl 'sh' does not nescessarily imply 'bash' AC_CHECK_PROG(HAVE_BASH,bash,yes) if test "x$HAVE_BASH" = x ; then AC_MSG_ERROR([Please install the 'bash' utility]) fi -dnl This is a weird Parabola one -AC_CHECK_PROG(HAVE_MAKEPKG,makepkg,yes) -if test "x$HAVE_MAKEPKG" = x ; then - AC_MSG_ERROR([Please install the 'makepkg' utility]) -fi - dnl I know that /bin/python => Python 3 works, dnl I haven't verified that /bin/python => Python 2 works. AC_CHECK_PROG(HAVE_PYTHON,python,yes) @@ -76,9 +75,9 @@ AC_MSG_RESULT([yes]) dnl This is at least needed by memtest AC_LANG_PUSH([C]) -AC_MSG_NOTICE([----------------------------------------------------------------------------]) -AC_MSG_NOTICE([The next few tests are for 32-bit C, NOT necessarily the native architecture]) -AC_MSG_NOTICE([----------------------------------------------------------------------------]) +AC_MSG_NOTICE([-----------------------------------------------------------------------------]) +AC_MSG_NOTICE([The remaining tests are for 32-bit C, NOT necessarily the native architecture]) +AC_MSG_NOTICE([-----------------------------------------------------------------------------]) AC_MSG_NOTICE([If you have GCC, but these fail, look for a 'gcc-multilib' package]) CFLAGS='-march=i486 -m32' AC_CHECK_HEADERS([stdint.h sys/io.h],,[AC_MSG_ERROR([Could not find libc headers])]) -- cgit v1.2.3