summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-12-28 15:18:20 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-12-28 15:18:20 -0500
commite413b035997fff2bcef4285247836a56edf92615 (patch)
treed74d9d464659a40d0a070d2c8c2d21fe92645610 /configure.ac
parenta45f20c0266103ed948d4a644e6d6d1c33a90b38 (diff)
small fixes
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac12
1 files changed, 9 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index f1cd957..4ded3ef 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,6 +24,11 @@ if test "x$HAVE_GIT" = x ; then
AC_MSG_ERROR([Please install the 'git' utility])
fi
+AC_CHECK_PROG(HAVE_WGET,WGET,yes)
+if test "x$HAVE_WGET" = x ; then
+ AC_MSG_ERROR([Please install the 'wget' utility])
+fi
+
dnl 'sh' does not nescessarily imply 'bash'
AC_CHECK_PROG(HAVE_BASH,bash,yes)
if test "x$HAVE_BASH" = x ; then
@@ -66,9 +71,10 @@ 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 the native architecture])
-AC_MSG_NOTICE([----------------------------------------------------------------])
+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([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])])
AC_LANG_POP([C])