]> Savannah Git Hosting - gnulib.git/commitdiff
c-xvasprintf etc.: fix link errors on older Solaris
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 13 Jan 2013 05:33:54 +0000 (21:33 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 13 Jan 2013 05:49:34 +0000 (21:49 -0800)
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@.

ChangeLog
modules/c-xvasprintf-tests
modules/futimens-tests
modules/readtokens-tests
modules/utimens-tests

index 732fa038952a829c3087d322ccb5b5763284c6c9..d63b173f5281871b7117571726d9d9142c27745e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+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
index b5a926221b8fb555ca2f3cc87b90bc1d6c6d18cc..a118de0a679aa53c3bb719e204d69be1caf13a06 100644 (file)
@@ -15,4 +15,5 @@ gt_LOCALE_FR
 Makefile.am:
 TESTS += test-c-xvasprintf.sh
 check_PROGRAMS += test-c-xvasprintf
+test_c_xvasprintf_LDADD = $(LDADD) @LIBINTL@
 TESTS_ENVIRONMENT += LOCALE_FR='@LOCALE_FR@'
index ff9801961e724d6412b3003efb94be01366adba9..122ebebc263b34787979f530ac2a3b2986ae8683 100644 (file)
@@ -19,4 +19,4 @@ configure.ac:
 Makefile.am:
 TESTS += test-futimens
 check_PROGRAMS += test-futimens
-test_futimens_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME)
+test_futimens_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) @LIBINTL@
index a1982ddca95d7ce737a8368e4de8f48ee62e6f95..e29c2ff351e7f7e5052d41dd4b19b1c95c402fac 100644 (file)
@@ -11,3 +11,4 @@ configure.ac:
 Makefile.am:
 TESTS += test-readtokens.sh
 check_PROGRAMS += test-readtokens
+test_readtokens_LDADD = $(LDADD) @LIBINTL@
index 4d5d1f576a3286e245e163f4c6e4c161d60b58e3..1ba9cf9e114ff11e4968fc429b2434e8a46558ae 100644 (file)
@@ -20,4 +20,4 @@ configure.ac:
 Makefile.am:
 TESTS += test-utimens
 check_PROGRAMS += test-utimens
-test_utimens_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME)
+test_utimens_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) @LIBINTL@