Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (983aba1fb8b1dca53f6ececaddd70844d05961c4)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (983aba1fb8b1dca53f6ececaddd70844d05961c4)
  • Date: Fri, 4 Sep 2020 19:51:24 +0000

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

libs/libcgroup/BUILD | 4 +++-
libs/libcgroup/HISTORY | 4 ++++
2 files changed, 7 insertions(+), 1 deletion(-)

New commits:
commit 983aba1fb8b1dca53f6ececaddd70844d05961c4
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libcgroup: Only use "-lfts" in LDFLAGS when building against musl-fts

Otherwise you get: configure: error: C++ compiler cannot create
executables

diff --git a/libs/libcgroup/BUILD b/libs/libcgroup/BUILD
index 6376346..346b24a 100755
--- a/libs/libcgroup/BUILD
+++ b/libs/libcgroup/BUILD
@@ -1,2 +1,4 @@
-LDFLAGS+=" -lfts" &&
+if is_depends_enabled ${SPELL} musl-fts; then
+ LDFLAGS+=" -lfts"
+fi &&
default_build
diff --git a/libs/libcgroup/HISTORY b/libs/libcgroup/HISTORY
index 1258897..02c619a 100644
--- a/libs/libcgroup/HISTORY
+++ b/libs/libcgroup/HISTORY
@@ -1,3 +1,7 @@
+2020-09-04 Eric Sandall <sandalle AT sourcemage.org>
+ * BUILD: Only use "-lfts" in LDFLAGS when building against musl-fts
+ Otherwise you get: configure: error: C++ compiler cannot create
executables
+
2020-08-10 Ismael Luceno <ismael AT sourcemage.org>
* PRE_BUILD: Disabled tests
* PRE_BUILD, patches/CVE-2018-14348.patch,



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (983aba1fb8b1dca53f6ececaddd70844d05961c4), Eric Sandall, 09/04/2020

Archive powered by MHonArc 2.6.24.

Top of Page