Fix xprintf tests on cygwin.
authorEric Blake <ebb9@byu.net>
Fri, 2 Nov 2007 22:28:00 +0000 (16:28 -0600)
committerEric Blake <ebb9@byu.net>
Fri, 2 Nov 2007 22:28:00 +0000 (16:28 -0600)
* modules/xprintf-posix-tests (Makefile.am): Link against -lintl.

Signed-off-by: Eric Blake <ebb9@byu.net>
ChangeLog
modules/xprintf-posix-tests

index 3101bc9..df6a7f4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-11-02  Eric Blake  <ebb9@byu.net>
+
+       Fix tests on cygwin.
+       * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
+
 2007-11-01  Bruno Haible  <bruno@clisp.org>
 
        * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
index b81932b..92397b2 100644 (file)
@@ -16,3 +16,5 @@ Makefile.am:
 TESTS += test-xprintf-posix.sh
 TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
 check_PROGRAMS += test-xfprintf-posix test-xprintf-posix
+test_xfprintf_posix_LDADD = $(LDADD) @LIBINTL@
+test_xprintf_posix_LDADD = $(LDADD) @LIBINTL@