summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--README10
-rw-r--r--configure.in34
3 files changed, 30 insertions, 20 deletions
diff --git a/ChangeLog b/ChangeLog
index 760f312d..a7f2d764 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Aug 31 17:20:44 CEST 1999 Werner Koch <wk@isil.d.shuttle.de>
+
+
+ * configure.in: Minor changes to the OS/2 and Mingw32 system labels.
+ Add a printable name for Hurd.
+
Mon Aug 30 20:38:33 CEST 1999 Werner Koch <wk@isil.d.shuttle.de>
diff --git a/README b/README
index 3c015a15..5d934b2f 100644
--- a/README
+++ b/README
@@ -29,7 +29,7 @@
implementation of ElGamal signatures is *not* insecure). Symmetric
algorithms are: 3DES, Blowfish, CAST5 and Twofish (GnuPG does not
yet create Twofish encrypted messages because there no agreement
- in the OpenPG WG on how to use it together with a MDC algorithm)
+ in the OpenPGP WG on how to use it together with a MDC algorithm)
Digest algorithms available are MD5, RIPEMD160, SHA1, and TIGER/192.
@@ -116,7 +116,7 @@
"pub 768R/0C9857A5 1995-09-30 Werner Koch <werner.koch@guug.de>"
- The finperprint of this key is published in printed form in the
+ The fingerprint of this key is published in printed form in the
"Global Trust Register for 1998", ISBN 0-9532397-0-5.
@@ -130,7 +130,7 @@
fd9351b26b3189c1d577f0970f9dcadc gnupg-x.y.z.tar.gz
Now check that this checksum is _exactly_ the same as the one
- published via the anouncement list and probably via Usenet.
+ published via the announcement list and probably via Usenet.
@@ -414,7 +414,7 @@
"+Heinrich Heine duesseldorf"
- All words must match excatly (not case sensitive) and appear in
+ All words must match exactly (not case sensitive) and appear in
any order in the user ID. Words are any sequences of letters,
digits, the underscore and characters with bit 7 set.
@@ -438,7 +438,7 @@
If you use the option "--batch", GnuPG runs in non-interactive mode and
never prompts for input data. This does not even allow entering the
passphrase. Until we have a better solution (something like ssh-agent),
- you can use the option "--passphrase-fd n", which works like PGPs
+ you can use the option "--passphrase-fd n", which works like PGP's
PGPPASSFD.
Batch mode also causes GnuPG to terminate as soon as a BAD signature is
diff --git a/configure.in b/configure.in
index eee8c76d..e72e7be4 100644
--- a/configure.in
+++ b/configure.in
@@ -179,12 +179,12 @@ fi
try_gettext=yes
try_gdbm=yes
case "${target}" in
- i386--mingw32)
+ *-*-mingw32)
# special stuff for Windoze NT
cross_compiling=yes
- CC="i386--mingw32-gcc"
- CPP="i386--mingw32-gcc -E"
- RANLIB="i386--mingw32-ranlib"
+ CC="${target}-gcc"
+ CPP="${target}-gcc -E"
+ RANLIB="${target}-ranlib"
ac_cv_have_dev_random=no
AC_DEFINE(USE_ONLY_8DOT3)
AC_DEFINE(HAVE_DRIVE_LETTERS)
@@ -192,7 +192,7 @@ case "${target}" in
try_gettext="no"
try_gdbm="no"
;;
- i386-emx-os2 | i[3456]86-pc-os2*emx )
+ i?86-emx-os2 | i?86-*-os2*emx )
# OS/2 with the EMX environment
ac_cv_have_dev_random=no
AC_DEFINE(HAVE_DRIVE_LETTERS)
@@ -201,7 +201,7 @@ case "${target}" in
try_gdbm="no"
;;
- i*86-*-msdosdjgpp*)
+ i?86-*-msdosdjgpp*)
# DOS with the DJGPP environment
ac_cv_have_dev_random=no
AC_DEFINE(HAVE_DRIVE_LETTERS)
@@ -238,18 +238,22 @@ fi
case "${target}" in
- i386--mingw32)
+ *-*-mingw32)
PRINTABLE_OS_NAME="MingW32"
;;
- i386-emx-os2 | i[3456]86-pc-os2*emx )
+ i?86-emx-os2 | i?86-*-os2*emx )
PRINTABLE_OS_NAME="OS/2"
;;
+ i?86-*-msdosdjgpp*)
+ PRINTABLE_OS_NAME="MSDOS/DJGPP"
+ try_dynload=no
+ ;;
*-linux*)
PRINTABLE_OS_NAME="GNU/Linux"
;;
- i*86-*-msdosdjgpp*)
- PRINTABLE_OS_NAME="MSDOS/DJGPP"
- try_dynload=no
+dnl let that after linux to avoid gnu-linux problems
+ *-gnu*)
+ PRINTABLE_OS_NAME="GNU/Hurd"
;;
*)
PRINTABLE_OS_NAME=`uname -s || echo "Unknown"`
@@ -482,16 +486,16 @@ if test "$use_static_rnd" = default; then
static_modules="$static_modules rndlinux"
else
case "${target}" in
- i386--mingw32)
+ *-*-mingw32)
static_modules="$static_modules rndw32"
;;
- i386-emx-os2|i[3456]86-pc-os2*emx)
+ i?86-emx-os2|i?86-*-os2*emx)
static_modules="$static_modules rndos2"
;;
m68k-atari-mint)
static_modules="$static_modules rndatari"
;;
- i*86-*-msdosdjgpp*)
+ i?86-*-msdosdjgpp*)
static_modules="$static_modules"
;;
*)
@@ -525,7 +529,7 @@ if test "$print_egd_notice" = "yes"; then
*** in Perl and available at the GnuPG FTP servers. For more information
*** consult the GnuPG webpages:
***
-*** http://www.gnupg.org/donwload.html#egd
+*** http://www.gnupg.org/download.html#egd
***
*** You may want to run ./configure with --enable-static-rnd=none to be
*** able to load the EGD client code dynamically; this way you can choose