guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 02/02: Build standalone test libraries as unversioned


From: Mike Gran
Subject: [Guile-commits] 02/02: Build standalone test libraries as unversioned
Date: Thu, 11 Mar 2021 12:22:12 -0500 (EST)

mike121 pushed a commit to branch master
in repository guile.

commit db13f6e282cb0291018e1fb6e32c858298907d83
Author: Mike Gran <spk121@yahoo.com>
AuthorDate: Sat Mar 6 17:58:18 2021 -0800

    Build standalone test libraries as unversioned
    
    * test-suite/standalone/Makefile.am (libtest_asmobs_la_LDFLAGS): avoid 
version
        (libtest_ffi_la_LDFLAGS, libtest_extensions_la_LDFLAGS): avoid version
---
 test-suite/standalone/Makefile.am | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/test-suite/standalone/Makefile.am 
b/test-suite/standalone/Makefile.am
index 4661e61..0676d26 100644
--- a/test-suite/standalone/Makefile.am
+++ b/test-suite/standalone/Makefile.am
@@ -1,7 +1,7 @@
 ## Process this file with automake to produce Makefile.in.
 ##
 ## Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
-##   2011, 2012, 2013, 2014, 2020 Free Software Foundation, Inc.
+##   2011, 2012, 2013, 2014, 2020, 2021 Free Software Foundation, Inc.
 ##
 ## This file is part of GUILE.
 ##
@@ -115,7 +115,7 @@ if HAVE_SHARED_LIBRARIES
 noinst_LTLIBRARIES += libtest-asmobs.la
 libtest_asmobs_la_SOURCES = test-asmobs-lib.c
 libtest_asmobs_la_CFLAGS = ${test_cflags}
-libtest_asmobs_la_LDFLAGS = -module -no-undefined -rpath `pwd` # so libtool 
will really build an .so
+libtest_asmobs_la_LDFLAGS = -module -avoid-version -no-undefined -rpath `pwd` 
# so libtool will really build an .so
 libtest_asmobs_la_LIBADD = $(LIBGUILE_LDADD)
 BUILT_SOURCES += test-asmobs-lib.x
 check_SCRIPTS += test-asmobs
@@ -125,7 +125,7 @@ TESTS += test-asmobs
 noinst_LTLIBRARIES += libtest-ffi.la
 libtest_ffi_la_SOURCES = test-ffi-lib.c
 libtest_ffi_la_CFLAGS = ${test_cflags}
-libtest_ffi_la_LDFLAGS = -module -no-undefined -rpath `pwd` # so libtool will 
really build an .so
+libtest_ffi_la_LDFLAGS = -module -avoid-version -no-undefined -rpath `pwd` # 
so libtool will really build an .so
 libtest_ffi_la_LIBADD = $(LIBGUILE_LDADD)
 check_SCRIPTS += test-ffi
 TESTS += test-ffi
@@ -239,7 +239,7 @@ if HAVE_SHARED_LIBRARIES
 noinst_LTLIBRARIES += libtest-extensions.la
 libtest_extensions_la_SOURCES = test-extensions-lib.c
 libtest_extensions_la_CFLAGS = ${test_cflags}
-libtest_extensions_la_LDFLAGS = -module -no-undefined -rpath `pwd` # so 
libtool will really build an .so
+libtest_extensions_la_LDFLAGS = -module -avoid-version -no-undefined -rpath 
`pwd` # so libtool will really build an .so
 libtest_extensions_la_LIBADD = $(LIBGUILE_LDADD) $(top_builddir)/lib/libgnu.la
 check_SCRIPTS += test-extensions
 TESTS += test-extensions



reply via email to

[Prev in Thread] Current Thread [Next in Thread]