diff options
author | Bruno Haible <bruno@clisp.org> | 2005-01-29 15:21:42 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:12:08 +0200 |
commit | 7606d5591d17428161b1a73ebcc6c4fbec9a44d9 (patch) | |
tree | 720ee781610db6e6e9ddbbf78978f2a63ecddc12 /gettext-tools/libuniname | |
parent | 1be6fe6509d5559c9836c1b6992f0a57e1ec3b1c (diff) | |
download | external_gettext-7606d5591d17428161b1a73ebcc6c4fbec9a44d9.zip external_gettext-7606d5591d17428161b1a73ebcc6c4fbec9a44d9.tar.gz external_gettext-7606d5591d17428161b1a73ebcc6c4fbec9a44d9.tar.bz2 |
Fix link error when building statically on MacOS X.
Diffstat (limited to 'gettext-tools/libuniname')
-rw-r--r-- | gettext-tools/libuniname/ChangeLog | 4 | ||||
-rw-r--r-- | gettext-tools/libuniname/Makefile.am | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gettext-tools/libuniname/ChangeLog b/gettext-tools/libuniname/ChangeLog index 9674a3d..79acf5b 100644 --- a/gettext-tools/libuniname/ChangeLog +++ b/gettext-tools/libuniname/ChangeLog @@ -1,3 +1,7 @@ +2005-01-29 Bruno Haible <bruno@clisp.org> + + * Makefile.am (test_names_LDADD): Add INTL_MACOSX_LIBS. + 2004-01-29 Bruno Haible <bruno@clisp.org> * gettext-0.14.1 released. diff --git a/gettext-tools/libuniname/Makefile.am b/gettext-tools/libuniname/Makefile.am index d6a59b1..efeaa7e 100644 --- a/gettext-tools/libuniname/Makefile.am +++ b/gettext-tools/libuniname/Makefile.am @@ -1,5 +1,5 @@ ## Makefile for libuniname directory in GNU gettext package. -## Copyright (C) 2002-2003 Free Software Foundation, Inc. +## Copyright (C) 2002-2003, 2005 Free Software Foundation, Inc. ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -34,7 +34,9 @@ TESTS = test-names.sh TESTS_ENVIRONMENT = top_srcdir=$(top_srcdir) $(SHELL) noinst_PROGRAMS = test-names -test_names_LDADD = libuniname.a ../lib/libgettextlib.la +# INTL_MACOSX_LIBS is needed because libgettextlib.la depends on libintl.la +# but libtool doesn't put -Wl,-framework options into .la files. +test_names_LDADD = libuniname.a ../lib/libgettextlib.la @INTL_MACOSX_LIBS@ EXTRA_DIST += $(TESTS) UnicodeDataNames.txt |