See ChangeLog: Fri Feb 19 18:01:54 CET 1999 Werner Koch

This commit is contained in:
Werner Koch 1999-02-19 17:06:49 +00:00
parent a4ff45f634
commit 6ed3099f9e
12 changed files with 3001 additions and 2825 deletions

View File

@ -1,3 +1,7 @@
Fri Feb 19 18:01:54 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
* VERSION: Released 0.9.3
Fri Feb 19 15:49:15 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
* acinclude.m4: Removed gettext macros.

4
NEWS
View File

@ -1,3 +1,5 @@
Noteworthy changes in version 0.9.3
-----------------------------------
* Changed the internal design of getkey which now allows a
efficient lookup of multiple keys and add a word match mode.
@ -13,6 +15,8 @@
* Changed the locking stuff.
* Print all user ids of a good signature.
Noteworthy changes in version 0.9.2
-----------------------------------

View File

@ -1 +1 @@
0.9.2a
0.9.3

View File

@ -91,12 +91,6 @@ dnl AM_PROG_LIBTOOL
MPI_OPT_FLAGS=""
if test "$GCC" = yes; then
CFLAGS="$CFLAGS -Wall -Wcast-align -Wshadow -Wstrict-prototypes"
dnl Always enable optimazation in MPI
if (echo "$CFLAGS" | grep '[-]O') >/dev/null ; then
:
else
MPI_OPT_FLAGS=-O2
fi
fi

828
po/de.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

828
po/fr.po

File diff suppressed because it is too large Load Diff

828
po/it.po

File diff suppressed because it is too large Load Diff

838
po/pl.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

829
po/ru.po

File diff suppressed because it is too large Load Diff

View File

@ -59,11 +59,12 @@ rm $tmp_name
echo "Signing and compressing patch file"
gpg --clearsign --not-dash-escaped -u "(gnupg sig)" \
< $diff_name | gzip --best > $diff_name.gz
rm $diff_name
echo "Checking patch file"
cd gnupg-$prev_ver
zcat ../$diff_name.gz | patch -s -p1
rm $(find . -name "*.orig")
rm $(find . -name "*.orig") 2>/dev/null || true
cd ..
if ! diff -urN "gnupg-$prev_ver/" "gnupg-$curr_ver/" >/dev/null ; then