+2013-01-12 Paul Eggert <eggert@cs.ucla.edu>
+
+ c-xvasprintf etc.: fix link errors on older Solaris
+ These need to link with @LIBINTL@ to get libintl_gettext.
+ Problem reported by Tom G. Christensen in
+ <http://lists.gnu.org/archive/html/bug-gnulib/2013-01/msg00086.html>.
+ * modules/c-xvasprintf-tests (test_c_xvasprintf_LDADD):
+ * modules/readtokens-tests (test_readtokens_LDADD): New macros.
+ * modules/futimens-tests (test_futimens_LDADD):
+ * modules/utimens-tests (test_utimens_LDADD): Add @LIBINTL@.
+
2013-01-10 Paul Eggert <eggert@cs.ucla.edu>
locale: port to Solaris 2.6 and 7 + GNU gettext
Makefile.am:
TESTS += test-c-xvasprintf.sh
check_PROGRAMS += test-c-xvasprintf
+test_c_xvasprintf_LDADD = $(LDADD) @LIBINTL@
TESTS_ENVIRONMENT += LOCALE_FR='@LOCALE_FR@'
Makefile.am:
TESTS += test-futimens
check_PROGRAMS += test-futimens
-test_futimens_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME)
+test_futimens_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) @LIBINTL@
Makefile.am:
TESTS += test-utimens
check_PROGRAMS += test-utimens
-test_utimens_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME)
+test_utimens_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) @LIBINTL@