]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Enable shared libraries on Cygwin.
authorBruno Haible <bruno@clisp.org>
Tue, 9 May 2006 18:43:42 +0000 (18:43 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:13:15 +0000 (12:13 +0200)
gettext-runtime/libasprintf/ChangeLog
gettext-runtime/libasprintf/configure.ac
gettext-tools/ChangeLog

index a16e58ffab1654fe0250a31499d0a9c6d86d2bfd..e78eb80d2e68bbbf4bc1046895695f6b68422270 100644 (file)
@@ -1,3 +1,8 @@
+2006-05-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
+
+       * configure.ac (LTNOUNDEF): Set to -no-undefined also on mingw and
+       Cygwin.
+
 2006-04-17  Bruno Haible  <bruno@clisp.org>
 
        * Makefile.am: Use $(mkdir_p) instead of $(mkinstalldirs).
index b536bfe4e4cba79f0458e57e66250fcffb1f6dba..b000014c7c69e8ef29c57f6d876e6afb73d70c33 100644 (file)
@@ -1,5 +1,5 @@
 dnl Configuration for the GNU libasprintf library
-dnl Copyright (C) 2002-2005 Free Software Foundation, Inc.
+dnl Copyright (C) 2002-2006 Free Software Foundation, Inc.
 dnl
 dnl This program is free software; you can redistribute it and/or modify
 dnl it under the terms of the GNU General Public License as published by
@@ -41,7 +41,9 @@ gl_WOE32_DLL
 AC_LIBTOOL_WIN32_DLL
 AC_PROG_LIBTOOL
 case "$host_os" in
-  beos*) LTNOUNDEF='-no-undefined' ;;
+  # On Cygwin, without -no-undefined, a warning is emitted and only a static
+  # library is built.
+  beos* | mingw* | cygwin*) LTNOUNDEF='-no-undefined' ;;
   *) LTNOUNDEF='' ;;
 esac
 AC_SUBST([LTNOUNDEF])
index 4b208b88a45c75033c6bf231ba062107610d5be9..74398f20469386ac2d72796cf369b4d6a7cdbb4b 100644 (file)
@@ -1,3 +1,8 @@
+2006-05-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
+
+       * configure.ac (LTNOUNDEF): Set to -no-undefined also on mingw and
+       Cygwin.
+
 2006-05-08  Bruno Haible  <bruno@clisp.org>
 
        * Makefile.am (windows/stdbool.h): Create directory if needed.