1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
# Tweaked by David Necas (Yeti) <yeti@gwyddion.net> from various other
# autogen.sh's. This file is in the public domain.
DIE=0
PROJECT=Gwyddion
# When runnig autogen.sh one normally wants this.
CONF_FLAGS="--enable-maintainer-mode --enable-gtk-doc"
AUTOCONF=${AUTOCONF:-autoconf}
AUTOM4TE=${AUTOM4TE:-autom4te}
LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
AUTOMAKE=${AUTOMAKE:-automake}
ACLOCAL=${ACLOCAL:-aclocal}
AUTOHEADER=${AUTOHEADER:-autoheader}
GETTEXT=${GETTEXT:-gettext}
if test -z "$GETTEXTIZE"; then
GETTEXTIZE=$(which gettextize 2>/dev/null)
fi
if test -z "$GETTEXTIZE"; then
# This will then presumably fail later.
GETTEXTIZE=gettextize
fi
get_version() {
local v
local v2
v=$($1 --version </dev/null | sed -e '2,$ d' -e 's/ *([^()]*)$//' -e 's/.* \(.*\)/\1/' -e 's/-p[0-9]*//')
v2=${v#*.}
echo ${v%%.*}.${v2%%.*}
}
check_tool() {
local name; name=$1
local cmd; cmd="$2"
local othercmds; othercmds="$3"
local reqmajor; reqmajor=$4
local reqminor; reqminor=$5
local url; url="$6"
local diewhy; diewhy=
eval $VERBOSE echo "Looking for $cmd"
if $cmd --version </dev/null >/dev/null 2>&1; then
ver=$(get_version "$cmd")
eval $VERBOSE echo "Found $cmd $ver"
vermajor=${ver%%.*}
verminor=${ver##*.}
if test "$vermajor" -lt $reqmajor \
|| test "$vermajor" = $reqmajor -a "$verminor" -lt $reqminor; then
diewhy=version
else
for othercmd in $othercmds; do
eval $VERBOSE echo "Looking for $othercmd"
if $othercmd --version </dev/null >/dev/null 2>&1; then
otherver=$(get_version "$othercmd")
eval $VERBOSE echo "Found $othercmd $otherver"
if test "$otherver" != "$ver"; then
diewhy=otherversion
break
else
:
fi
else
diewhy=othercmd
break
fi
done
fi
else
diewhy=cmd
fi
if test -n "$diewhy"; then
echo "ERROR: $name at least $reqmajor.$reqminor is required to bootstrap $PROJECT."
case $diewhy in
version) echo " You have only version $ver of $name installed.";;
othercmd) echo " It should also install command \`$othercmd' which is missing.";;
otherversion) echo " The version of \`$othercmd' differs from $cmd: $otherver != $ver.";;
cmd) ;;
*) echo " *** If you see this, shoot the $PROJECT maintainer! ***";;
esac
echo " Install the appropriate package for your operating system,"
echo " or get the source tarball of $name at"
echo " $url"
echo
DIE=1
else
eval $QUIET echo "$name $ver: OK"
fi
}
echo "$*" | grep --quiet -- '--quiet\>\|--silent\>' && QUIET=">/dev/null"
echo "$*" | grep --quiet -- '--verbose\>\|--debug\>' || VERBOSE=">/dev/null"
check_tool Autoconf "$AUTOCONF" "$AUTOHEADER $AUTOM4TE" 2 69 ftp://ftp.gnu.org/pub/gnu/autoconf/
check_tool Automake "$AUTOMAKE" "$ACLOCAL" 1 13 ftp://ftp.gnu.org/pub/gnu/automake/
check_tool Libtool "$LIBTOOLIZE" "" 2 4 ftp://ftp.gnu.org/pub/gnu/libtool/
check_tool Gettext "$GETTEXT" "$GETTEXTIZE" 0 12 ftp://ftp.gnu.org/pub/gnu/gettext/
if test "$DIE" = 1; then
exit 1
fi
case $CC in
*xlc | *xlc\ * | *lcc | *lcc\ * )
am_opt=--include-deps;;
esac
# We don't want gettextize to mess with our files, but we want its config.rpath
if test -f config.rpath; then
# Nothing to do
:
else
for x in prefix datarootdir gettext_dir gettext_datadir; do
eval $(grep "^$x=" $GETTEXTIZE)
eval $(grep "^: \${$x=" $GETTEXTIZE)
done
if test ! -n "$gettext_datadir"; then
gettext_datadir="$gettext_dir"
fi
if cp "$gettext_datadir/config.rpath" config.rpath; then
# OK
:
else
echo
echo "ERROR: Cannot find config.rpath in $gettext_datadir."
echo " Make sure you Gettext installation is complete."
DIE=1
fi
fi
if test "$DIE" = 1; then
exit 1
fi
sh utils/update-potfiles.sh
(eval $QUIET $LIBTOOLIZE --automake --force \
&& eval $QUIET $ACLOCAL -I m4 $ACLOCAL_FLAGS \
&& eval $QUIET $AUTOHEADER \
&& eval $QUIET $AUTOMAKE --add-missing $am_opt \
&& eval $QUIET $AUTOCONF) \
|| {
echo "ERROR: Re-generating failed."
echo " See above errors and complain to $PROJECT maintainer."
exit 1
}
if test -z "$*"; then
echo "Note: I am going to run ./configure with the following flags:"
echo " $CONF_FLAGS"
echo " If you wish to pass others to it, specify them on the command line."
echo
fi
./configure $CONF_FLAGS "$@"
|