diff options
author | Sergey V. Lobanov <sergey@lobanov.in> | 2022-02-05 01:18:27 +0300 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2022-02-12 15:18:06 -0800 |
commit | ac6243709997243fe8d254fdb9c49f7add90e450 (patch) | |
tree | 6fccffe99a0e66d8da828b57d697a13b053c6df8 /net/ipvsadm | |
parent | 11a79e9aa21afcb17fedf24d214bc1ed20d8be86 (diff) |
ipvsadm: fix build on macos
ipvsadm build fails on macos due to libipvs Makefiles uses system
`ar` that is not compatible with the objectes generated by OpenWrt
GCC Toolchain.
This commit adds patch to allow ar redefining
This commit modifes an old patch (removing CC=gcc is not required
due to it is redefinable)
Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
Diffstat (limited to 'net/ipvsadm')
-rw-r--r-- | net/ipvsadm/Makefile | 2 | ||||
-rw-r--r-- | net/ipvsadm/patches/001-Makefile.patch | 4 | ||||
-rw-r--r-- | net/ipvsadm/patches/100_allow_to_redefine_ar_libipvs.patch | 43 |
3 files changed, 46 insertions, 3 deletions
diff --git a/net/ipvsadm/Makefile b/net/ipvsadm/Makefile index df064669f..7780dd303 100644 --- a/net/ipvsadm/Makefile +++ b/net/ipvsadm/Makefile @@ -13,7 +13,7 @@ PKG_VERSION:=1.31 PKG_MAINTAINER:=Mauro Mozzarelli <mauro@ezplanet.org>, \ Florian Eckert <fe@dev.tdt.de> PKG_LICENSE:=GPL-2.0-or-later -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@KERNEL/linux/utils/kernel/ipvsadm/ diff --git a/net/ipvsadm/patches/001-Makefile.patch b/net/ipvsadm/patches/001-Makefile.patch index e552cfcb3..d5cf18286 100644 --- a/net/ipvsadm/patches/001-Makefile.patch +++ b/net/ipvsadm/patches/001-Makefile.patch @@ -43,10 +43,10 @@ --- a/libipvs/Makefile +++ b/libipvs/Makefile -@@ -1,7 +1,6 @@ +@@ -1,7 +1,7 @@ # Makefile for libipvs --CC = gcc + CC = gcc -CFLAGS = -Wall -Wunused -Wstrict-prototypes -g -fPIC +CFLAGS += -Wall -Wunused -Wstrict-prototypes -g -fPIC ifneq (0,$(HAVE_NL)) diff --git a/net/ipvsadm/patches/100_allow_to_redefine_ar_libipvs.patch b/net/ipvsadm/patches/100_allow_to_redefine_ar_libipvs.patch new file mode 100644 index 000000000..440193a2e --- /dev/null +++ b/net/ipvsadm/patches/100_allow_to_redefine_ar_libipvs.patch @@ -0,0 +1,43 @@ +From: http://archive.linuxvirtualserver.org/html/lvs-devel/2022-02/msg00000.html + +From: "Sergey V. Lobanov" <sergey@lobanov.in> +To: lvs-devel@vger.kernel.org +Cc: "Sergey V. Lobanov" <sergey@lobanov.in> +Subject: [PATCH] ipvsadm: allow to redefine AR (libipvs) +Date: Sat, 5 Feb 2022 00:52:15 +0300 +Message-Id: <20220204215215.94422-1-sergey@lobanov.in> +X-Mailer: git-send-email 2.32.0 (Apple Git-132) +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit +Return-Path: sergey@lobanov.in + +libipvs Makefile uses `ar` to build archive. On cross-compile +cross-platfrom build it fails due system ar might be incompatible +with the objects generated by $(CC). It happens if build ipvsadm +on macos using GCC Toolchain (Linux target) + +This patch allows to redefine `ar` using AR var in libipvs Makefile + +Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in> +--- + libipvs/Makefile | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +--- a/libipvs/Makefile ++++ b/libipvs/Makefile +@@ -1,5 +1,6 @@ + # Makefile for libipvs + ++AR = ar + CC = gcc + CFLAGS += -Wall -Wunused -Wstrict-prototypes -g -fPIC + ifneq (0,$(HAVE_NL)) +@@ -30,7 +31,7 @@ SHARED_LIB = libipvs.so + all: $(STATIC_LIB) $(SHARED_LIB) + + $(STATIC_LIB): libipvs.o ip_vs_nl_policy.o +- ar rv $@ $^ ++ $(AR) rv $@ $^ + + $(SHARED_LIB): libipvs.o ip_vs_nl_policy.o + $(CC) -shared -Wl,-soname,$@ -o $@ $^ |