diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-04-10 20:58:15 +0200 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2023-04-13 08:26:04 -0400 |
commit | e6a91b2f95fe3ace95dc20f7c410ad0a29d57498 (patch) | |
tree | db83e46a2bdfd15a266ae2eccac4c3109a5d3002 | |
parent | a3e374540bbd2f855d2e38dea83ae2321ed45aaf (diff) | |
download | meta-openembedded-e6a91b2f95fe3ace95dc20f7c410ad0a29d57498.tar.gz |
postfix: Fix build on systems with linux 6.x
* cherry-picked from langdale "postfix: Upgrade to 3.7.3" commit
dd5226bed9cc76f2a26a1dce046d9de98c8b4cb4 without the upgrade.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-networking/recipes-daemons/postfix/files/0006-makedefs-Account-for-linux-6.x-version.patch | 35 | ||||
-rw-r--r-- | meta-networking/recipes-daemons/postfix/postfix_3.6.7.bb | 1 |
2 files changed, 36 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/postfix/files/0006-makedefs-Account-for-linux-6.x-version.patch b/meta-networking/recipes-daemons/postfix/files/0006-makedefs-Account-for-linux-6.x-version.patch new file mode 100644 index 0000000000..ad1704520c --- /dev/null +++ b/meta-networking/recipes-daemons/postfix/files/0006-makedefs-Account-for-linux-6.x-version.patch | |||
@@ -0,0 +1,35 @@ | |||
1 | From e5ddcf9575437bacd64c2b68501b413014186a6a Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Wed, 19 Oct 2022 10:15:01 -0700 | ||
4 | Subject: [PATCH] makedefs: Account for linux 6.x version | ||
5 | |||
6 | Major version has bumped to 6 and script needs to know that | ||
7 | |||
8 | Upstream-Status: Pending | ||
9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
10 | --- | ||
11 | makedefs | 2 +- | ||
12 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
13 | |||
14 | --- a/makedefs | ||
15 | +++ b/makedefs | ||
16 | @@ -613,7 +613,7 @@ EOF | ||
17 | : ${SHLIB_ENV="LD_LIBRARY_PATH=`pwd`/lib"} | ||
18 | : ${PLUGIN_LD="${CC-gcc} -shared"} | ||
19 | ;; | ||
20 | - Linux.[345].*) SYSTYPE=LINUX$RELEASE_MAJOR | ||
21 | + Linux.[3-6]*) SYSTYPE=LINUX$RELEASE_MAJOR | ||
22 | case "$CCARGS" in | ||
23 | *-DNO_DB*) ;; | ||
24 | *-DHAS_DB*) ;; | ||
25 | --- a/src/util/sys_defs.h | ||
26 | +++ b/src/util/sys_defs.h | ||
27 | @@ -751,7 +751,7 @@ extern int initgroups(const char *, int) | ||
28 | /* | ||
29 | * LINUX. | ||
30 | */ | ||
31 | -#if defined(LINUX2) || defined(LINUX3) || defined(LINUX4) || defined(LINUX5) | ||
32 | +#if defined(LINUX2) || defined(LINUX3) || defined(LINUX4) || defined(LINUX5) || defined(LINUX6) | ||
33 | #define SUPPORTED | ||
34 | #define UINT32_TYPE unsigned int | ||
35 | #define UINT16_TYPE unsigned short | ||
diff --git a/meta-networking/recipes-daemons/postfix/postfix_3.6.7.bb b/meta-networking/recipes-daemons/postfix/postfix_3.6.7.bb index e91e677790..17864b8915 100644 --- a/meta-networking/recipes-daemons/postfix/postfix_3.6.7.bb +++ b/meta-networking/recipes-daemons/postfix/postfix_3.6.7.bb | |||
@@ -12,6 +12,7 @@ SRC_URI += "ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-${P | |||
12 | file://0003-makedefs-Use-native-compiler-to-build-makedefs.test.patch \ | 12 | file://0003-makedefs-Use-native-compiler-to-build-makedefs.test.patch \ |
13 | file://0004-Fix-icu-config.patch \ | 13 | file://0004-Fix-icu-config.patch \ |
14 | file://0005-makedefs-add-lnsl-and-lresolv-to-SYSLIBS-by-default.patch \ | 14 | file://0005-makedefs-add-lnsl-and-lresolv-to-SYSLIBS-by-default.patch \ |
15 | file://0006-makedefs-Account-for-linux-6.x-version.patch \ | ||
15 | " | 16 | " |
16 | SRC_URI[sha256sum] = "e471df7e0eb11c4a1e574b6d7298f635386e2843b6b3584c25a04543d587e07f" | 17 | SRC_URI[sha256sum] = "e471df7e0eb11c4a1e574b6d7298f635386e2843b6b3584c25a04543d587e07f" |
17 | UPSTREAM_CHECK_REGEX = "postfix\-(?P<pver>3\.6(\.\d+)+).tar.gz" | 18 | UPSTREAM_CHECK_REGEX = "postfix\-(?P<pver>3\.6(\.\d+)+).tar.gz" |