1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-28 21:50:02 +02:00
gnupg/scripts/autogen.sh

105 lines
3.0 KiB
Bash
Raw Normal View History

1998-10-17 16:47:14 +02:00
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
PGM=GnuPG
DIE=no
autoconf_vers=2.13
automake_vers=1.4
aclocal_vers=1.4
2000-12-21 12:51:57 +01:00
#libtool_vers=1.3
1998-10-18 17:21:22 +02:00
if (autoconf --version) < /dev/null > /dev/null 2>&1 ; then
if (autoconf --version | awk 'NR==1 { if( $3 >= '$autoconf_vers') \
exit 1; exit 0; }');
then
echo "**Error**: "\`autoconf\'" is too old."
echo ' (version ' $autoconf_vers ' or newer is required)'
DIE="yes"
fi
1998-10-18 17:21:22 +02:00
else
1998-10-17 16:47:14 +02:00
echo
echo "**Error**: You must have "\`autoconf\'" installed to compile $PGM."
echo ' (version ' $autoconf_vers ' or newer is required)'
1998-10-18 17:21:22 +02:00
DIE="yes"
fi
1998-10-17 16:47:14 +02:00
1998-10-18 17:21:22 +02:00
if (automake --version) < /dev/null > /dev/null 2>&1 ; then
if (automake --version | awk 'NR==1 { if( $4 >= '$automake_vers') \
exit 1; exit 0; }');
then
echo "**Error**: "\`automake\'" is too old."
echo ' (version ' $automake_vers ' or newer is required)'
DIE="yes"
fi
1998-10-18 17:21:22 +02:00
if (aclocal --version) < /dev/null > /dev/null 2>&1; then
if (aclocal --version | awk 'NR==1 { if( $4 >= '$aclocal_vers' ) \
exit 1; exit 0; }' );
1998-10-21 19:34:36 +02:00
then
echo "**Error**: "\`aclocal\'" is too old."
echo ' (version ' $aclocal_vers ' or newer is required)'
1998-10-21 19:34:36 +02:00
DIE="yes"
fi
1998-10-18 17:21:22 +02:00
else
1998-10-17 16:47:14 +02:00
echo
echo "**Error**: Missing "\`aclocal\'". The version of "\`automake\'
echo " installed doesn't appear recent enough."
1998-10-18 17:21:22 +02:00
DIE="yes"
fi
else
echo
echo "**Error**: You must have "\`automake\'" installed to compile $PGM."
echo ' (version ' $automake_vers ' or newer is required)'
1998-10-18 17:21:22 +02:00
DIE="yes"
fi
1998-10-17 16:47:14 +02:00
if (gettext --version </dev/null 2>/dev/null | awk 'NR==1 { split($4,A,"\."); \
X=10000*A[1]+100*A[2]+A[3]; echo X; if( X >= 1035 ) exit 1; exit 0}')
then
echo "**Error**: You must have "\`gettext\'" installed to compile $PGM."
echo ' (version 0.10.35 or newer is required; get'
echo ' ftp://alpha.gnu.org/gnu/gettext-0.10.35.tar.gz'
echo ' or install the latest Debian package)'
DIE="yes"
fi
2000-12-21 12:51:57 +01:00
#if (libtool --version) < /dev/null > /dev/null 2>&1 ; then
# if (libtool --version | awk 'NR==1 { if( $4 >= '$libtool_vers') \
# exit 1; exit 0; }');
# then
# echo "**Error**: "\`libtool\'" is too old."
# echo ' (version ' $libtool_vers ' or newer is required)'
# DIE="yes"
# fi
#else
# echo
# echo "**Error**: You must have "\`libtool\'" installed to compile $PGM."
# echo ' (version ' $libtool_vers ' or newer is required)'
# DIE="yes"
#fi
1998-10-17 16:47:14 +02:00
if test "$DIE" = "yes"; then
exit 1
fi
echo "Running gettextize... Ignore non-fatal messages."
echo "no" | gettextize --force
2000-12-21 12:51:57 +01:00
#echo "Running libtoolize... Ignore non-fatal messages."
#echo "no" | libtoolize
1998-10-17 16:47:14 +02:00
echo "Running aclocal..."
1998-10-17 16:47:14 +02:00
aclocal
echo "Running autoheader..."
1998-10-17 16:47:14 +02:00
autoheader
echo "Running automake --gnu ..."
1998-10-17 16:47:14 +02:00
automake --gnu;
echo "Running autoconf..."
1998-10-17 16:47:14 +02:00
autoconf
echo "You can now run \"./configure\" and then \"make\"."
1998-10-21 19:34:36 +02:00