summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cipher/dynload.c2
-rw-r--r--configure.in6
-rw-r--r--scripts/ChangeLog4
-rwxr-xr-xscripts/autogen.sh4
4 files changed, 10 insertions, 6 deletions
diff --git a/cipher/dynload.c b/cipher/dynload.c
index ae3de3f5..6caeb063 100644
--- a/cipher/dynload.c
+++ b/cipher/dynload.c
@@ -170,7 +170,7 @@ register_internal_cipher_extension(
}
/* and register */
el->enumfunc = enumfunc;
- #ifdef HAVE_DL_OPEN
+ #ifdef HAVE_DL_DLOPEN
el->handle = (void*)1;
#else
el->handle = 1;
diff --git a/configure.in b/configure.in
index 944325df..3d0581ae 100644
--- a/configure.in
+++ b/configure.in
@@ -143,7 +143,7 @@ case "${target}" in
try_gettext="no"
try_gdbm="no"
;;
- i386-emx-os2)
+ i386-emx-os2 | i[3456]86-pc-os2emx )
# OS/2 with the EMX environment
ac_cv_have_dev_random=no
AC_DEFINE(HAVE_DRIVE_LETTERS)
@@ -182,7 +182,7 @@ case "${target}" in
i386--mingw32)
PRINTABLE_OS_NAME="MingW32"
;;
- i386-emx-os2)
+ i386-emx-os2 | i[3456]86-pc-os2emx)
PRINTABLE_OS_NAME="OS/2"
;;
*-linux*)
@@ -353,7 +353,7 @@ if test "$use_static_rnd" = default; then
i386--mingw32)
static_modules="$static_modules rndw32"
;;
- i386-emx-os2)
+ i386-emx-os2|i[3456]86-pc-os2emx)
static_modules="$static_modules rndos2"
;;
m68k-atari-mint)
diff --git a/scripts/ChangeLog b/scripts/ChangeLog
index 1ccecc8d..14765db2 100644
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,3 +1,7 @@
+Sat May 22 22:47:26 CEST 1999 Werner Koch <wk@isil.d.shuttle.de>
+
+ * autogen.sh: Fixed the error message for a missing libtool.
+
Sat May 8 19:28:08 CEST 1999 Werner Koch <wk@isil.d.shuttle.de>
* mkinstalldirs, install-sh: New from GNU repository
diff --git a/scripts/autogen.sh b/scripts/autogen.sh
index 50606618..266eb75b 100755
--- a/scripts/autogen.sh
+++ b/scripts/autogen.sh
@@ -75,8 +75,8 @@ if (libtool --version) < /dev/null > /dev/null 2>&1 ; then
fi
else
echo
- echo "**Error**: You must have "\`autoconf\'" installed to compile $PGM."
- echo ' (version ' $autoconf_vers ' or newer is required)'
+ echo "**Error**: You must have "\`libtool\'" installed to compile $PGM."
+ echo ' (version ' $libtool_vers ' or newer is required)'
DIE="yes"
fi