diff options
author | Bruno Haible <bruno@clisp.org> | 2001-03-07 14:36:37 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2001-03-07 14:36:37 +0000 |
commit | 5ef6afaf607063b2c09895f66c82e02a8b4fe9e6 (patch) | |
tree | 7c7670a7563cd67fb1465e5fef17a51c8efccf46 | |
parent | ecbbf86312731a18dc75342de71045fd246a0e8a (diff) | |
download | external_gettext-5ef6afaf607063b2c09895f66c82e02a8b4fe9e6.zip external_gettext-5ef6afaf607063b2c09895f66c82e02a8b4fe9e6.tar.gz external_gettext-5ef6afaf607063b2c09895f66c82e02a8b4fe9e6.tar.bz2 |
Better support for DOS/Windows platforms.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.in | 17 | ||||
-rwxr-xr-x | ltconfig | 2 |
3 files changed, 23 insertions, 4 deletions
@@ -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. @@ -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 |