1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-12-23 10:29:58 +01:00

See ChangeLog: Fri Mar 17 16:26:05 CET 2000 Werner Koch

This commit is contained in:
Werner Koch 2000-03-17 15:22:40 +00:00
parent 265d82ac8c
commit 4cb08d4960
18 changed files with 4332 additions and 3769 deletions

2
THANKS
View File

@ -44,6 +44,7 @@ Geoff Keating geoffk@ozemail.com.au
Harald Denker harry@hal.westfalen.de Harald Denker harry@hal.westfalen.de
Hendrik Buschkamp buschkamp@rheumanet.org Hendrik Buschkamp buschkamp@rheumanet.org
Holger Schurig holger@d.om.org Holger Schurig holger@d.om.org
Holger Smolinski smolinsk@de.ibm.com
Holger Trapp Holger.Trapp@informatik.tu-chemnitz.de Holger Trapp Holger.Trapp@informatik.tu-chemnitz.de
Hugh Daniel hugh@toad.com Hugh Daniel hugh@toad.com
Huy Le huyle@ugcs.caltech.edu Huy Le huyle@ugcs.caltech.edu
@ -66,6 +67,7 @@ Karsten Thygesen karthy@kom.auc.dk
Katsuhiro Kondou kondou@nec.co.jp Katsuhiro Kondou kondou@nec.co.jp
Kazu Yamamoto kazu@iijlab.net Kazu Yamamoto kazu@iijlab.net
Lars Kellogg-Stedman lars@bu.edu Lars Kellogg-Stedman lars@bu.edu
L. Sassaman rabbi@quickie.net
Marco d'Itri md@linux.it Marco d'Itri md@linux.it
Mark Adler madler@alumni.caltech.edu Mark Adler madler@alumni.caltech.edu
Mark Elbrecht snowball3@bigfoot.com Mark Elbrecht snowball3@bigfoot.com

View File

@ -1 +1 @@
1.0.1d 1.0.1e

425
po/de.po

File diff suppressed because it is too large Load Diff

568
po/eo.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

568
po/fr.po

File diff suppressed because it is too large Load Diff

568
po/id.po

File diff suppressed because it is too large Load Diff

568
po/it.po

File diff suppressed because it is too large Load Diff

568
po/ja.po

File diff suppressed because it is too large Load Diff

1407
po/nl.po

File diff suppressed because it is too large Load Diff

570
po/pl.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

569
po/ru.po

File diff suppressed because it is too large Load Diff

568
po/sv.po

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,8 @@
Fri Mar 17 16:26:05 CET 2000 Werner Koch <wk@openit.de>
* config.gues, config.sub: Support for s390-ibm-linux-gnu. Thanks
to Holger Smolinski.
Thu Mar 2 15:37:46 CET 2000 Werner Koch <wk@gnupg.de> Thu Mar 2 15:37:46 CET 2000 Werner Koch <wk@gnupg.de>
* config.guess: Add support for QNX. By Sam Roberts. * config.guess: Add support for QNX. By Sam Roberts.

View File

@ -644,6 +644,7 @@ EOF
sparclinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;; sparclinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;;
armlinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;; armlinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;;
m68klinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;; m68klinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;;
elf_s390) echo "${UNAME_MACHINE}-ibm-linux-gnu" ; exit 0 ;;
elf32ppc) elf32ppc)
# Determine Lib Version # Determine Lib Version
cat >$dummy.c <<EOF cat >$dummy.c <<EOF

8
scripts/config.sub vendored
View File

@ -166,7 +166,7 @@ case $basic_machine in
| arme[lb] | pyramid | mn10200 | mn10300 | tron | a29k \ | arme[lb] | pyramid | mn10200 | mn10300 | tron | a29k \
| 580 | i960 | h8300 \ | 580 | i960 | h8300 \
| hppa | hppa1.0 | hppa1.1 | hppa2.0 | hppa2.0w | hppa2.0n \ | hppa | hppa1.0 | hppa1.1 | hppa2.0 | hppa2.0w | hppa2.0n \
| alpha | alphaev[4-7] | alphaev56 | alphapca5[67] \ | alpha | alphaev[4-7] | alphaev56 | alphapca5[67] | s390 \
| we32k | ns16k | clipper | i370 | sh | powerpc | powerpcle \ | we32k | ns16k | clipper | i370 | sh | powerpc | powerpcle \
| 1750a | dsp16xx | pdp11 | mips16 | mips64 | mipsel | mips64el \ | 1750a | dsp16xx | pdp11 | mips16 | mips64 | mipsel | mips64el \
| mips64orion | mips64orionel | mipstx39 | mipstx39el \ | mips64orion | mips64orionel | mipstx39 | mipstx39el \
@ -185,6 +185,12 @@ case $basic_machine in
i[34567]86) i[34567]86)
basic_machine=$basic_machine-pc basic_machine=$basic_machine-pc
;; ;;
s390 | s390-ibm)
basic_machine=s390-ibm
;;
s390-redhat)
basic_machine=s390-redhat
;;
# Object if more than one company name word. # Object if more than one company name word.
*-*-*) *-*-*)
echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2