From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mark H Weaver Newsgroups: gmane.lisp.guile.devel Subject: Re: Fix link failure in test-suite/standalone Date: Sun, 21 Sep 2014 23:30:59 -0400 Message-ID: <877g0wl4b0.fsf@yeeloong.lan> References: <83egwgejdd.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1411356809 28213 80.91.229.3 (22 Sep 2014 03:33:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 22 Sep 2014 03:33:29 +0000 (UTC) Cc: guile-devel@gnu.org To: Eli Zaretskii Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Sep 22 05:33:23 2014 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XVuNO-0004I8-PQ for guile-devel@m.gmane.org; Mon, 22 Sep 2014 05:33:22 +0200 Original-Received: from localhost ([::1]:42068 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XVuNO-00014C-ES for guile-devel@m.gmane.org; Sun, 21 Sep 2014 23:33:22 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:49096) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XVuNF-00013T-EA for guile-devel@gnu.org; Sun, 21 Sep 2014 23:33:18 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XVuNA-0006I8-CL for guile-devel@gnu.org; Sun, 21 Sep 2014 23:33:13 -0400 Original-Received: from world.peace.net ([96.39.62.75]:55188) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XVuNA-0006CY-8o; Sun, 21 Sep 2014 23:33:08 -0400 Original-Received: from c-24-62-95-23.hsd1.ma.comcast.net ([24.62.95.23] helo=yeeloong.lan) by world.peace.net with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1XVuMo-0005VD-BH; Sun, 21 Sep 2014 23:32:46 -0400 In-Reply-To: <83egwgejdd.fsf@gnu.org> (Eli Zaretskii's message of "Sat, 16 Aug 2014 14:58:38 +0300") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 96.39.62.75 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:17513 Archived-At: Eli Zaretskii writes: > Linking test-scm-take-locale-symbol fails on systems that need > rpl_strdup from gnulib. Here's the fix: > > --- test-suite/standalone/Makefile.am~0 2014-03-20 10:06:33.000000000 +0200 > +++ test-suite/standalone/Makefile.am 2014-08-16 14:56:02.828125000 +0300 > @@ -179,7 +179,7 @@ > # test-scm-take-locale-symbol > test_scm_take_locale_symbol_SOURCES = test-scm-take-locale-symbol.c > test_scm_take_locale_symbol_CFLAGS = ${test_cflags} > -test_scm_take_locale_symbol_LDADD = $(LIBGUILE_LDADD) > +test_scm_take_locale_symbol_LDADD = $(LIBGUILE_LDADD) $(top_builddir)/lib/libgnu.la > check_PROGRAMS += test-scm-take-locale-symbol > TESTS += test-scm-take-locale-symbol This is now done in commit b38c19a5a5935dc5b874625767ed4951452f46c2 on the stable-2.0 branch. Thanks, Mark