Lines Matching +full:no +full:- +full:eq +full:- +full:null
9 test -z "$srcdir" && srcdir=.
16 (autogen --version) < /dev/null > /dev/null 2>&1 || {
21 result="no"
28 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
33 result="no"
38 VERSIONGREP="sed -e s/.*[^0-9\.]\([0-9][0-9]*\.[0-9][0-9]*\).*/\1/"
39 VERSIONMKMAJ="sed -e s/\([0-9][0-9]*\)[^0-9].*/\\1/"
40 VERSIONMKMIN="sed -e s/.*[0-9][0-9]*\.//"
43 if test -r Makefile.am; then
49 if test -z $AM_NEEDED; then
53 if ($AUTOMAKE --version < /dev/null > /dev/null 2>&1); then
56 echo "no"
63 for am in automake-$AM_NEEDED automake$AM_NEEDED \
64 automake automake-1.7 automake-1.8 automake-1.9 automake-1.10; do
65 ($am --version < /dev/null > /dev/null 2>&1) || continue
66 ver=`$am --version < /dev/null | head -n 1 | $VERSIONGREP`
69 if test $maj -eq $majneeded -a $min -ge $minneeded; then
75 test -z $AUTOMAKE && echo "no"
77 for ac in aclocal-$AM_NEEDED aclocal$AM_NEEDED \
78 aclocal aclocal-1.7 aclocal-1.8 aclocal-1.9 aclocal-1.10; do
79 ($ac --version < /dev/null > /dev/null 2>&1) || continue
80 ver=`$ac --version < /dev/null | head -n 1 | $VERSIONGREP`
83 if test $maj -eq $majneeded -a $min -ge $minneeded; then
89 test -z $ACLOCAL && echo "no"
91 test -z $AUTOMAKE || test -z $ACLOCAL && {
102 ($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 && break
110 ($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 || {
119 printf "checking for pkg-config ... "
121 (pkg-config --version) < /dev/null > /dev/null 2>&1 || {
123 echo "You must have pkg-config installed to compile $package."
125 result="no"
133 (python --version) < /dev/null > /dev/null 2>&1 || {
138 result="no"
143 if test "$DIE" -eq 1; then
151 echo " $LIBTOOLIZE --automake --force"
152 $LIBTOOLIZE --automake --force || exit 1
155 echo " $AUTOMAKE --add-missing $AUTOMAKE_FLAGS"
156 $AUTOMAKE --add-missing $AUTOMAKE_FLAGS || exit 1
160 # Generate the src/cmake-config.h.in from src/config.h.in.
161 # CMake process src/cmake-config.h to create src/config.h.
162 rm -f src/config.h src/cmake-config.h
166 if test -d .git/ ; then
167 fprecommit=.git/hooks/pre-commit
168 if test ! -f $fprecommit ; then
170 echo "Installing git pre-commit hook for this project."
171 printf "#/bin/sh\nexec Scripts/git-pre-commit-hook\n" > $fprecommit