Skip to Content.
Sympa Menu

sm-commit - [[SM-Commit] ] GIT changes to master grimoire by Thomas Orgis (01d27843255b6603a387005fcd0dd93bbe28ac00)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Thomas Orgis <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [[SM-Commit] ] GIT changes to master grimoire by Thomas Orgis (01d27843255b6603a387005fcd0dd93bbe28ac00)
  • Date: Mon, 15 Apr 2024 12:30:26 +0000

GIT changes to master grimoire by Thomas Orgis <sobukus AT sourcemage.org>:

net/xinetd/BUILD | 4 ++--
net/xinetd/DEPENDS | 8 ++------
net/xinetd/HISTORY | 3 +++
3 files changed, 7 insertions(+), 8 deletions(-)

New commits:
commit 01d27843255b6603a387005fcd0dd93bbe28ac00
Author: Thomas Orgis <sobukus AT sourcemage.org>
Commit: Thomas Orgis <sobukus AT sourcemage.org>

xinetd: fix build with recent glibc

We all need libtirpc now.

diff --git a/net/xinetd/BUILD b/net/xinetd/BUILD
index c58882b..561fabb 100755
--- a/net/xinetd/BUILD
+++ b/net/xinetd/BUILD
@@ -1,9 +1,9 @@
case "$HOST" in
(*-musl)
- CFLAGS+=" $(pkg-config libtirpc --cflags)" &&
- LIBS+=" $(pkg-config libtirpc --libs)" &&
OPTS+=' xinetd_cv_type_rlim_t=yes'
esac &&
+CFLAGS+=" $(pkg-config libtirpc --cflags)" &&
+LIBS+=" $(pkg-config libtirpc --libs)" &&
LIBS+=" $LDFLAGS" && # Makes stripping work
export LIBS &&

diff --git a/net/xinetd/DEPENDS b/net/xinetd/DEPENDS
index 0c9c604..b8dadcc 100755
--- a/net/xinetd/DEPENDS
+++ b/net/xinetd/DEPENDS
@@ -1,9 +1,5 @@
-case "$HOST" in
- (*-musl)
- depends PKG-CONFIG &&
- depends libtirpc
- ;;
-esac &&
+depends PKG-CONFIG &&
+depends libtirpc &&
depends SYSTEM-LOGGER &&

optional_depends tcp_wrappers \
diff --git a/net/xinetd/HISTORY b/net/xinetd/HISTORY
index aaebd50..d36d487 100644
--- a/net/xinetd/HISTORY
+++ b/net/xinetd/HISTORY
@@ -1,3 +1,6 @@
+2024-04-12 Thomas Orgis <sobukus AT sourcemage.org>
+ * DEPENDS, BUILD: use libtirpc also for glibc
+
2022-07-27 Vlad Glagolev <stealth AT sourcemage.org>
* DEPENDS: switch to PKG-CONFIG provider (automated)



  • [[SM-Commit] ] GIT changes to master grimoire by Thomas Orgis (01d27843255b6603a387005fcd0dd93bbe28ac00), Thomas Orgis, 04/15/2024

Archive powered by MHonArc 2.6.24.

Top of Page