This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU libidn".
http://git.savannah.gnu.org/cgit/libidn.git/commit/?id=6427fa718d6317b0bea16ab4b74eab99be21fe61 The branch, master has been updated via 6427fa718d6317b0bea16ab4b74eab99be21fe61 (commit) via eeb89d12007bb47e5feead239a9d807a75399268 (commit) from aae595abf2af80af011924b0ebd3261064f98d1a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6427fa718d6317b0bea16ab4b74eab99be21fe61 Author: Simon Josefsson <[email protected]> Date: Fri Feb 5 11:01:01 2010 +0100 Don't use a libtool helper library, to hopefully make MinGW builds work. commit eeb89d12007bb47e5feead239a9d807a75399268 Author: Simon Josefsson <[email protected]> Date: Fri Feb 5 10:54:26 2010 +0100 Simplify. ----------------------------------------------------------------------- Summary of changes: tests/Makefile.am | 18 +++++++----------- 1 files changed, 7 insertions(+), 11 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 41d7367..a28d2c4 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -18,23 +18,19 @@ AM_CFLAGS = $(WERROR_CFLAGS) $(WARN_CFLAGS) AM_CPPFLAGS = -I$(top_srcdir)/lib -I../lib -I$(top_srcdir)/gl -I../gl -AM_LDFLAGS = -no-install -LDADD = ../lib/libidn.la libutils.la +LDADD = libutils.a ../lib/libidn.la -noinst_LTLIBRARIES = libutils.la -libutils_la_SOURCES = utils.h utils.c +check_LIBRARIES = libutils.a +libutils_a_SOURCES = utils.h utils.c -TESTS = tst_stringprep tst_punycode tst_idna tst_idna2 tst_nfkc \ +ctests = tst_stringprep tst_punycode tst_idna tst_idna2 tst_nfkc \ tst_pr29 tst_strerror tst_toutf8 tst_symbols if TLD -TESTS += tst_tld +ctests += tst_tld endif -check_PROGRAMS = tst_stringprep tst_punycode tst_idna tst_idna2 \ - tst_nfkc tst_pr29 tst_strerror tst_toutf8 tst_symbols -if TLD -check_PROGRAMS += tst_tld -endif +TESTS = $(ctests) +check_PROGRAMS = $(ctests) TESTS_ENVIRONMENT = $(VALGRIND) hooks/post-receive -- GNU libidn _______________________________________________ Libidn-commit mailing list [email protected] http://lists.gnu.org/mailman/listinfo/libidn-commit
