diff options
| author | Randy MacLeod <randy.macleod@windriver.com> | 2018-10-08 13:50:50 -0400 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2018-10-09 19:07:58 -0700 |
| commit | 8a71561246b12ba9b8d850fbf62b295dcf5b435f (patch) | |
| tree | 9bd04308bb0f988d082a8af948d886327f7b3ae5 /meta-networking/recipes-daemons/postfix/files | |
| parent | f818700c23eefee21c8d15cc2ee81b35975308ae (diff) | |
| download | meta-openembedded-8a71561246b12ba9b8d850fbf62b295dcf5b435f.tar.gz | |
postfix: update to 3.3.1
The patch:
0001-Check-for-glibc-before-setting-CANT_USE_SEND_RECV_MS.patch
has ben integrated upstream.
update the upstream check regex
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-daemons/postfix/files')
| -rw-r--r-- | meta-networking/recipes-daemons/postfix/files/0001-Check-for-glibc-before-setting-CANT_USE_SEND_RECV_MS.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/meta-networking/recipes-daemons/postfix/files/0001-Check-for-glibc-before-setting-CANT_USE_SEND_RECV_MS.patch b/meta-networking/recipes-daemons/postfix/files/0001-Check-for-glibc-before-setting-CANT_USE_SEND_RECV_MS.patch deleted file mode 100644 index 6b86e39259..0000000000 --- a/meta-networking/recipes-daemons/postfix/files/0001-Check-for-glibc-before-setting-CANT_USE_SEND_RECV_MS.patch +++ /dev/null | |||
| @@ -1,26 +0,0 @@ | |||
| 1 | From 63619acf25151d4dade6d65732722ec4a710a5ac Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Sat, 15 Jul 2017 09:54:25 -0700 | ||
| 4 | Subject: [PATCH] Check for glibc before setting CANT_USE_SEND_RECV_MSG | ||
| 5 | |||
| 6 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 7 | --- | ||
| 8 | src/util/sys_defs.h | 2 +- | ||
| 9 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 10 | |||
| 11 | diff --git a/src/util/sys_defs.h b/src/util/sys_defs.h | ||
| 12 | index f720e2a..7314c63 100644 | ||
| 13 | --- a/src/util/sys_defs.h | ||
| 14 | +++ b/src/util/sys_defs.h | ||
| 15 | @@ -813,7 +813,7 @@ extern int initgroups(const char *, int); | ||
| 16 | #define KERNEL_VERSION(a,b,c) (LINUX_VERSION_CODE + 1) | ||
| 17 | #endif | ||
| 18 | #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0)) \ | ||
| 19 | - || (__GLIBC__ < 2) | ||
| 20 | + || (defined(__GLIBC__) && (__GLIBC__ < 2)) | ||
| 21 | #define CANT_USE_SEND_RECV_MSG | ||
| 22 | #define DEF_SMTP_CACHE_DEMAND 0 | ||
| 23 | #else | ||
| 24 | -- | ||
| 25 | 2.13.3 | ||
| 26 | |||
