mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
See ChangeLog: Sat Feb 20 21:40:49 CET 1999 Werner Koch
This commit is contained in:
parent
6ed3099f9e
commit
5d5dc4b12d
11 changed files with 25 additions and 212 deletions
|
@ -9,16 +9,16 @@ if (autoconf --version) < /dev/null > /dev/null 2>&1 ; then
|
|||
else
|
||||
echo
|
||||
echo "**Error**: You must have "\`autoconf\'" installed to compile $PGM."
|
||||
echo ' (version 2.10 or newer is required)'
|
||||
echo ' (version 2.13 or newer is required)'
|
||||
DIE="yes"
|
||||
fi
|
||||
|
||||
if (automake --version) < /dev/null > /dev/null 2>&1 ; then
|
||||
if (aclocal --version) < /dev/null > /dev/null 2>&1; then
|
||||
if (aclocal --version | awk 'NR==1 { if( $4 >= 1.3 ) exit 1; exit 0; }');
|
||||
if (aclocal --version | awk 'NR==1 { if( $4 >= 1.4 ) exit 1; exit 0; }');
|
||||
then
|
||||
echo "**Error**: "\`aclocal\'" is too old."
|
||||
echo ' (version 1.3 or newer is required)'
|
||||
echo ' (version 1.4 or newer is required)'
|
||||
DIE="yes"
|
||||
fi
|
||||
else
|
||||
|
@ -51,7 +51,7 @@ if test "$DIE" = "yes"; then
|
|||
fi
|
||||
|
||||
echo "Running gettextize... Ignore non-fatal messages."
|
||||
echo "no" | gettextize --force
|
||||
echo "no" | gettextize --force
|
||||
|
||||
|
||||
echo "Running aclocal..."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue