mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-25 19:40:35 -09:00
https://lists.exim.org/lurker/message/20260820.154633.91995f73.en.html
Rebased patch 0001.
Updated patch 0005, the previous version was applied upstream with
commit 497e9eb7e77ad27ae1d45281e23eefadfaa7a3bc but it did not fix all
linker errors so we sent a new patch upstream which replaces the
previous patch.
Updated hash of GPL-2.0 license file (address, name of president and
typos), a commit can not be provided from the source tree.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 8b009489f5)
Signed-off-by: Raphaël Mélotte <raphael.melotte@mind.be>
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From cb7d04db69623673e606a3249bc7de1330c8f0b6 Mon Sep 17 00:00:00 2001
|
|
From: Bernd Kuhls <bernd@kuhls.net>
|
|
Date: Fri, 4 Sep 2026 18:43:42 +0200
|
|
Subject: [PATCH] Fix cross-compile by adding LD variable
|
|
|
|
Upstream: https://code.exim.org/exim/exim/pulls/3244
|
|
|
|
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
|
|
---
|
|
src/miscmods/Makefile | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/miscmods/Makefile b/src/miscmods/Makefile
|
|
index 807d6f377..5bac23a7f 100644
|
|
--- a/src/miscmods/Makefile
|
|
+++ b/src/miscmods/Makefile
|
|
@@ -96,7 +96,7 @@ dmarc.o dmarc_native.o:
|
|
$(FE)$(CC) -c $(CFLAGS) $(INCLUDE) $*.c
|
|
$(FE)$(CC) -c $(CFLAGS) $(INCLUDE) dmarc_common.c
|
|
$(FE)mv $@ dmarc_tmp.o
|
|
- $(FE)ld -r -o $@ $(LDFLAGS_PARTIAL) dmarc_tmp.o dmarc_common.o
|
|
+ $(FE)$(LD) -r -o $@ $(LDFLAGS_PARTIAL) dmarc_tmp.o dmarc_common.o
|
|
|
|
# dmarc_native is special in the same way as spf_perl
|
|
dmarc.so dmarc_native.so:
|
|
@@ -112,7 +112,7 @@ sieve_filter.o:
|
|
$(FE)$(CC) -c $(CFLAGS) $(INCLUDE) sieve_filter_body.c
|
|
$(FE)$(CC) -c $(CFLAGS) $(INCLUDE) sieve_filter_input.c
|
|
$(FE)mv sieve_filter.o sieve_filter_tmp.o
|
|
- $(FE)ld -r -o sieve_filter.o $(LDFLAGS_PARTIAL) \
|
|
+ $(FE)$(LD) -r -o sieve_filter.o $(LDFLAGS_PARTIAL) \
|
|
sieve_filter_tmp.o sieve_filter_body.o sieve_filter_input.o
|
|
|
|
sieve_filter.so:
|
|
--
|
|
2.47.3
|
|
|