unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* Fix link failure in test-suite/standalone
@ 2014-08-16 11:58 Eli Zaretskii
  2014-08-29  8:30 ` Eli Zaretskii
  2014-09-22  3:30 ` Mark H Weaver
  0 siblings, 2 replies; 5+ messages in thread
From: Eli Zaretskii @ 2014-08-16 11:58 UTC (permalink / raw)
  To: guile-devel

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
 



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Fix link failure in test-suite/standalone
  2014-08-16 11:58 Fix link failure in test-suite/standalone Eli Zaretskii
@ 2014-08-29  8:30 ` Eli Zaretskii
  2014-09-15 17:14   ` Eli Zaretskii
  2014-09-22  3:30 ` Mark H Weaver
  1 sibling, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2014-08-29  8:30 UTC (permalink / raw)
  To: guile-devel

Ping!

> Date: Sat, 16 Aug 2014 14:58:38 +0300
> From: Eli Zaretskii <eliz@gnu.org>
> 
> 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



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Fix link failure in test-suite/standalone
  2014-08-29  8:30 ` Eli Zaretskii
@ 2014-09-15 17:14   ` Eli Zaretskii
  0 siblings, 0 replies; 5+ messages in thread
From: Eli Zaretskii @ 2014-09-15 17:14 UTC (permalink / raw)
  To: guile-devel

Ping! (1 month)

> Date: Fri, 29 Aug 2014 11:30:12 +0300
> From: Eli Zaretskii <eliz@gnu.org>
> 
> Ping!
> 
> > Date: Sat, 16 Aug 2014 14:58:38 +0300
> > From: Eli Zaretskii <eliz@gnu.org>
> > 
> > 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
> 
> 



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Fix link failure in test-suite/standalone
  2014-08-16 11:58 Fix link failure in test-suite/standalone Eli Zaretskii
  2014-08-29  8:30 ` Eli Zaretskii
@ 2014-09-22  3:30 ` Mark H Weaver
  2014-09-22 14:40   ` Eli Zaretskii
  1 sibling, 1 reply; 5+ messages in thread
From: Mark H Weaver @ 2014-09-22  3:30 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: guile-devel

Eli Zaretskii <eliz@gnu.org> 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



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Fix link failure in test-suite/standalone
  2014-09-22  3:30 ` Mark H Weaver
@ 2014-09-22 14:40   ` Eli Zaretskii
  0 siblings, 0 replies; 5+ messages in thread
From: Eli Zaretskii @ 2014-09-22 14:40 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: guile-devel

> From: Mark H Weaver <mhw@netris.org>
> Cc: guile-devel@gnu.org
> Date: Sun, 21 Sep 2014 23:30:59 -0400
> 
> Eli Zaretskii <eliz@gnu.org> 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!



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-09-22 14:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-16 11:58 Fix link failure in test-suite/standalone Eli Zaretskii
2014-08-29  8:30 ` Eli Zaretskii
2014-09-15 17:14   ` Eli Zaretskii
2014-09-22  3:30 ` Mark H Weaver
2014-09-22 14:40   ` Eli Zaretskii

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).