Skip to content
forked from BOINC/boinc

Commit

Permalink
_autosetup: use sh instead of bash, no longer check for gmake
Browse files Browse the repository at this point in the history
  • Loading branch information
whs committed Feb 29, 2016
1 parent 26e2d5e commit 5c544df
Showing 1 changed file with 18 additions and 46 deletions.
64 changes: 18 additions & 46 deletions _autosetup
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
#!/usr/bin/env bash
#!/bin/sh
## $Id$

## ---------- some portability checks/adjustments [stolen from configure] ----------
## 'echo -n' is not portable..
case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
*c*,-n*) ECHO_N= ECHO_C='
' ECHO_T=' ' ;;
' ECHO_T=' ' ;;
*c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
*) ECHO_N= ECHO_C='\c' ECHO_T= ;;
esac
##----------

## ----------------------------------------------------------------------
## Check that given command $1 has version >= $2.$3
## Check that given command $1 has version >= $2
## Full path $3 may be specified in order to skip command search.
## return 0 if ok, 1 too old or not found (-> shell conventions).
## ----------------------------------------------------------------------
check_version()
Expand All @@ -24,12 +25,7 @@ check_version()
desired=`echo $2 | awk -F. '{print $1*100+$2}'`
echo $ECHO_N "Checking version of '$1' >= $desired... $ECHO_C"
name=$1
app_var_name=`echo $name | tr '[:lower:]-' '[:upper:]_'`
if [ ! -z ${!app_var_name+x} ]; then
name=${!app_var_name}
fi

fullpath=`type $name | awk '{ print $(NF) }'`;
fullpath=${3:-`command -v "$name"`};
if [ -x "$fullpath" ]; then
foundit=yes;
fi
Expand Down Expand Up @@ -75,62 +71,37 @@ check_version()
## in case there's GNU drop-in tools available, set these

## some sorry systems don't have proper GNU-make...
if check_version make 3.79; then
echo >/dev/null
else
if check_version gmake 3.79; then
have_gmake=yes;
else
echo "Couldn't find a new-enough version of GNU 'make', please install one!";
echo "If you have a newer version, set the environment variable 'MAKE' to its path";
exit 1;
fi
if ! check_version make 3.79 "$MAKE"; then
echo "Couldn't find a new-enough version of GNU 'make', please install one!";
echo "If you have a newer version, set the environment variable 'MAKE' to its path";
exit 1;
fi

## FreeBSD's m4 seems to be broken? Download a fresh one
if check_version m4 1.4; then
echo >/dev/null
else
## solaris m4 works fine
if test -f /usr/ccs/bin/m4
then
echo >/dev/null
elif check_version gm4 1.4; then
have_gm4=yes;
else
echo "Couldn't find a new-enough version of 'm4', please install one!";
echo "If you have a newer version, set the environment variable 'M4' to its path";
exit 1;
fi
# build_lsc_aux "m4-1.4.1"
if ! check_version m4 1.4 "$M4" && [ ! -f /usr/ccs/bin/m4 ] && ! check_version gm4 1.4; then
echo "Couldn't find a new-enough version of 'm4', please install one!";
echo "If you have a newer version, set the environment variable 'M4' to its path";
exit 1;
fi

if check_version pkg-config 0.15; then
echo >/dev/null
else
if ! check_version pkg-config 0.15; then
echo "Couldn't find a new-enough version of 'pkg-config', please install one!";
exit 1;
# build_lsc_aux "pkgconfig-0.15.0"
fi

if check_version autoreconf 2.58; then
echo >/dev/null
else
if ! check_version autoreconf 2.58; then
echo "Couldn't find a new-enough version of 'autoreconf', please install one!";
exit 1;
# build_lsc_aux "autoconf-2.59"
fi
if check_version automake 1.8; then
echo >/dev/null
else
if ! check_version automake 1.8 "$AUTOMAKE"; then
echo "Couldn't find a new-enough version of 'automake', please install one!";
echo "If you have a newer version, set the environment variable 'AUTOMAKE' and 'ACLOCAL' to its path";
exit 1;
# build_lsc_aux "automake-1.8.5"
fi
if check_version libtoolize 1.5; then
echo >/dev/null
else
if ! check_version libtoolize 1.5 "$LIBTOOLIZE"; then
echo "Couldn't find a new-enough version of 'libtoolize', please install one!";
echo "If you have a newer version, set the environment variable 'LIBTOOLIZE' to its path";
exit 1;
Expand All @@ -142,6 +113,7 @@ check_version()
if [ "$1" = "-f" ]; then
cmdline="autoreconf -i -f";
fi

echo "$cmdline"
if eval $cmdline; then
echo "Done, now run ./configure"
Expand Down

0 comments on commit 5c544df

Please sign in to comment.