changeset 29128:aa926a8978df

Fix xprintf tests on cygwin. * modules/xprintf-posix-tests (Makefile.am): Link against -lintl. Signed-off-by: Eric Blake <ebb9@byu.net>
author Eric Blake <ebb9@byu.net>
date Fri, 02 Nov 2007 16:28:00 -0600
parents 14a7a19487d1
children f666d9b1fdbd
files ChangeLog modules/xprintf-posix-tests
diffstat 2 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Nov 02 00:17:19 2007 +0100
+++ b/ChangeLog	Fri Nov 02 16:28:00 2007 -0600
@@ -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"
--- a/modules/xprintf-posix-tests	Fri Nov 02 00:17:19 2007 +0100
+++ b/modules/xprintf-posix-tests	Fri Nov 02 16:28:00 2007 -0600
@@ -16,3 +16,5 @@
 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@