From 2a112334989d6f879a5eba6a5b67e52c55330b59 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 12 Jan 2013 21:37:23 -0800 Subject: [PATCH] system-quote-tests: port to older Solaris Problem reported by Tom G. Christensen in . * tests/test-system-quote-child.c (fopen, fread): Undef. --- ChangeLog | 5 +++++ tests/test-system-quote-child.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index d63b173f52..7afe8e659c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2013-01-12 Paul Eggert + system-quote-tests: port to older Solaris + Problem reported by Tom G. Christensen in + . + * tests/test-system-quote-child.c (fopen, fread): Undef. + 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 diff --git a/tests/test-system-quote-child.c b/tests/test-system-quote-child.c index d8f6c7bf99..5009e29cd1 100644 --- a/tests/test-system-quote-child.c +++ b/tests/test-system-quote-child.c @@ -22,7 +22,9 @@ /* Do not use any gnulib replacements, since this program should link against as few libraries as possible. */ #undef fclose +#undef fopen #undef fprintf +#undef fread #define EXPECTED_DATA_FILE "t-sq-data.tmp" -- 2.39.5