diff options
author | KO Myung-Hun <komh78@gmail.com> | 2016-01-12 11:35:49 +0900 |
---|---|---|
committer | Daiki Ueno <ueno@gnu.org> | 2016-01-20 11:38:23 +0900 |
commit | 429e302f5215b78f65e833a87d76de71ca94696b (patch) | |
tree | 1e327cc1ca01706bda66ec47750625747f1ccde1 /gettext-runtime | |
parent | 2a23de5580dbe5d6ab67432b9b54e9b8cbc03e7c (diff) | |
download | external_gettext-429e302f5215b78f65e833a87d76de71ca94696b.zip external_gettext-429e302f5215b78f65e833a87d76de71ca94696b.tar.gz external_gettext-429e302f5215b78f65e833a87d76de71ca94696b.tar.bz2 |
libasprintf: Build a shared library on OS/2
* gettext-runtime/libasprintf/configure.ac (LTNOUNDEF): Set to
-no-undefined on OS/2.
Diffstat (limited to 'gettext-runtime')
-rw-r--r-- | gettext-runtime/libasprintf/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gettext-runtime/libasprintf/configure.ac b/gettext-runtime/libasprintf/configure.ac index b383bbd..736bf48 100644 --- a/gettext-runtime/libasprintf/configure.ac +++ b/gettext-runtime/libasprintf/configure.ac @@ -44,7 +44,7 @@ LT_INIT([win32-dll]) case "$host_os" in # On Cygwin, without -no-undefined, a warning is emitted and only a static # library is built. - beos* | mingw* | cygwin*) LTNOUNDEF='-no-undefined' ;; + beos* | mingw* | cygwin* | os2*) LTNOUNDEF='-no-undefined' ;; *) LTNOUNDEF='' ;; esac AC_SUBST([LTNOUNDEF]) |