From ffe64673c36168b0e62224429a4870427f2c68c4 Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Sun, 8 Feb 2015 17:38:03 +0900 Subject: [PATCH] uniname/unimame-tests: don't link with -lunistring * modules/uniname/uniname-tests (Makefile.am): Don't link against $(LIBUNISTRING). Document the rationale why we need to conditionalize the test. --- ChangeLog | 7 +++++++ modules/uniname/uniname-tests | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index cd73197acc..4b5092dd0e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2015-02-08 Daiki Ueno + + uniname/unimame-tests: don't link with -lunistring + * modules/uniname/uniname-tests (Makefile.am): Don't link against + $(LIBUNISTRING). Document the rationale why we need to + conditionalize the test. + 2015-02-07 Paul Eggert fstrcmp: don't assume strlen < INT_MAX diff --git a/modules/uniname/uniname-tests b/modules/uniname/uniname-tests index 305e6a19ef..475a4b178e 100644 --- a/modules/uniname/uniname-tests +++ b/modules/uniname/uniname-tests @@ -10,10 +10,12 @@ progname configure.ac: Makefile.am: +# Unlike other libunistring modules, this test passes only when the +# same version of uniname/uniname.c is used (even if it is newer). if LIBUNISTRING_COMPILE_UNINAME_UNINAME TESTS += uniname/test-uninames.sh check_PROGRAMS += test-uninames test_uninames_SOURCES = uniname/test-uninames.c -test_uninames_LDADD = $(LDADD) $(LIBUNISTRING) @LIBINTL@ +test_uninames_LDADD = $(LDADD) @LIBINTL@ endif -- 2.39.5