summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--configure.in17
-rwxr-xr-xltconfig2
3 files changed, 23 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 91f821a..7be3772 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2001-03-03 Bruno Haible <haible@clisp.cons.org>
+
+ * ltconfig:
+ sed -e 's/reload object files/produce relocatable object files/'.
+
+ Better support for DOS/Windows platforms.
+ * configure.in: Call AC_OBJEXT and AC_EXEEXT.
+
2001-03-06 Bruno Haible <haible@clisp.cons.org>
* configure.in: Call bh_C_SIGNED.
diff --git a/configure.in b/configure.in
index c289627..71e8785 100644
--- a/configure.in
+++ b/configure.in
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.13)
-AC_REVISION($Revision: 1.12 $)
+AC_REVISION($Revision: 1.13 $)
AC_INIT(src/msgfmt.c)
AM_INIT_AUTOMAKE(gettext, 0.10.36)
AM_CONFIG_HEADER(config.h)
@@ -10,11 +10,22 @@ ALL_LINGUAS="da de el es fr ja ko nl nn no pl pt sl sv tr"
dnl Checks for programs.
AC_PROG_CC
-AM_PROG_LIBTOOL
-AC_ISC_POSIX
AC_PROG_INSTALL
AC_PROG_YACC
+dnl Check for host type.
+AC_CANONICAL_HOST
+
+dnl Checks for UNIX variants that set DEFS,
+AC_ISC_POSIX
+
+dnl Checks for compiler output filename suffixes.
+AC_OBJEXT
+AC_EXEEXT
+
+dnl Check for build configuration.
+AM_PROG_LIBTOOL
+
AC_DEFINE(_GNU_SOURCE, 1, [Make sure we see all GNU extensions.])
dnl Checks for libraries.
diff --git a/ltconfig b/ltconfig
index c14d83c..bd3fc20 100755
--- a/ltconfig
+++ b/ltconfig
@@ -1774,7 +1774,7 @@ echo "$ac_t$hardcode_action" 1>&6
reload_flag=
reload_cmds='$LD$reload_flag -o $output$reload_objs'
-echo $ac_n "checking for $LD option to reload object files... $ac_c" 1>&6
+echo $ac_n "checking for $LD option to produce relocatable object files... $ac_c" 1>&6
# PORTME Some linkers may need a different reload flag.
reload_flag='-r'
echo "$ac_t$reload_flag" 1>&6