configure.ac (e4fb754e) configure.ac (81996412)
1dnl /******************************************************************
2dnl * vi:set sw=3 ts=3 et:
3dnl *
4dnl * Name: configure.in
5dnl * Auth: Willem van Dorp, Ross Nicholson, Oisin Boydell - Sun Microsystems Ireland
6dnl * Date: $Date: 2008-09-08 07:38:40 $
7dnl *
8dnl * Desc: This file serves as input for the GNU autoconf package

--- 1640 unchanged lines hidden (view full) ---

1649if test "$_make_longver" -ge "038100" ; then
1650 AC_MSG_RESULT([$GNUMAKE $_make_version])
1651else
1652 AC_MSG_ERROR([failed ($GNUMAKE version >= 3.81 needed])
1653fi
1654AC_SUBST(GNUMAKE)
1655
1656dnl ===================================================================
1dnl /******************************************************************
2dnl * vi:set sw=3 ts=3 et:
3dnl *
4dnl * Name: configure.in
5dnl * Auth: Willem van Dorp, Ross Nicholson, Oisin Boydell - Sun Microsystems Ireland
6dnl * Date: $Date: 2008-09-08 07:38:40 $
7dnl *
8dnl * Desc: This file serves as input for the GNU autoconf package

--- 1640 unchanged lines hidden (view full) ---

1649if test "$_make_longver" -ge "038100" ; then
1650 AC_MSG_RESULT([$GNUMAKE $_make_version])
1651else
1652 AC_MSG_ERROR([failed ($GNUMAKE version >= 3.81 needed])
1653fi
1654AC_SUBST(GNUMAKE)
1655
1656dnl ===================================================================
1657dnl Search all the common names for GNU tar
1657dnl Search all the common names for GNU or BSD tar
1658dnl ===================================================================
1658dnl ===================================================================
1659AC_MSG_CHECKING([for GNU tar])
1660for a in $GNUTAR gtar gnutar tar; do
1661 $a --version 2> /dev/null | grep GNU 2>&1 > /dev/null
1659AC_MSG_CHECKING([for GNU or BSD compatible tar])
1660for a in $GNUTAR gtar gnutar bsdtar tar; do
1661 $a --version 2> /dev/null | egrep "GNU|libarchive" 2>&1 > /dev/null
1662 if test $? -eq 0; then
1663 GNUTAR=$a
1664 break
1665 fi
1666done
1667AC_MSG_RESULT($GNUTAR)
1668if test -z "$GNUTAR"; then
1669 AC_MSG_ERROR([not found. install GNU tar.])

--- 5751 unchanged lines hidden ---
1662 if test $? -eq 0; then
1663 GNUTAR=$a
1664 break
1665 fi
1666done
1667AC_MSG_RESULT($GNUTAR)
1668if test -z "$GNUTAR"; then
1669 AC_MSG_ERROR([not found. install GNU tar.])

--- 5751 unchanged lines hidden ---