mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 22:26:31 +00:00
package/exim: bump version to 4.89
Rebased patch #0003, added uClibc compatibility patch. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
faf38b78ae
commit
d791e9101c
@ -9,6 +9,8 @@ Inspired by:
|
|||||||
http://patch-tracker.debian.org/patch/series/view/exim4/4.76-2/35_install.dpatch
|
http://patch-tracker.debian.org/patch/series/view/exim4/4.76-2/35_install.dpatch
|
||||||
|
|
||||||
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
|
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
|
||||||
|
(rebased against exim 4.89)
|
||||||
|
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||||
---
|
---
|
||||||
scripts/exim_install | 7 +++++--
|
scripts/exim_install | 7 +++++--
|
||||||
1 files changed, 5 insertions(+), 2 deletions(-)
|
1 files changed, 5 insertions(+), 2 deletions(-)
|
||||||
@ -17,7 +19,7 @@ diff --git a/scripts/exim_install b/scripts/exim_install
|
|||||||
index e68e7d5..487a4e1 100755
|
index e68e7d5..487a4e1 100755
|
||||||
--- a/scripts/exim_install
|
--- a/scripts/exim_install
|
||||||
+++ b/scripts/exim_install
|
+++ b/scripts/exim_install
|
||||||
@@ -59,6 +59,8 @@ while [ $# -gt 0 ] ; do
|
@@ -58,6 +58,8 @@
|
||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -26,15 +28,14 @@ index e68e7d5..487a4e1 100755
|
|||||||
# Get the values of BIN_DIRECTORY, CONFIGURE_FILE, INFO_DIRECTORY, NO_SYMLINK,
|
# Get the values of BIN_DIRECTORY, CONFIGURE_FILE, INFO_DIRECTORY, NO_SYMLINK,
|
||||||
# SYSTEM_ALIASES_FILE, and EXE from the global Makefile (in the build
|
# SYSTEM_ALIASES_FILE, and EXE from the global Makefile (in the build
|
||||||
# directory). EXE is empty except in the Cygwin environment. In each case, keep
|
# directory). EXE is empty except in the Cygwin environment. In each case, keep
|
||||||
@@ -218,8 +220,9 @@ while [ $# -gt 0 ]; do
|
@@ -217,9 +219,7 @@
|
||||||
# The exim binary is handled specially
|
# The exim binary is handled specially
|
||||||
|
|
||||||
if [ $name = exim${EXE} ]; then
|
if [ $name = exim${EXE} ]; then
|
||||||
- version=exim-`./exim -bV -C /dev/null | \
|
- exim="./exim -bV -C /dev/null"
|
||||||
|
- version=exim-`$exim 2>/dev/null | \
|
||||||
- awk '/Exim version/ { OFS=""; print $3,"-",substr($4,2,length($4)-1) }'`${EXE}
|
- awk '/Exim version/ { OFS=""; print $3,"-",substr($4,2,length($4)-1) }'`${EXE}
|
||||||
+ version=exim
|
+ version=exim
|
||||||
+# version=exim-`./exim -bV -C /dev/null | \
|
|
||||||
+# awk '/Exim version/ { OFS=""; print $3,"-",substr($4,2,length($4)-1) }'`${EXE}
|
|
||||||
|
|
||||||
if [ "${version}" = "exim-${EXE}" ]; then
|
if [ "${version}" = "exim-${EXE}" ]; then
|
||||||
echo $com ""
|
echo $com ""
|
||||||
|
27
package/exim/0004-glibc.patch
Normal file
27
package/exim/0004-glibc.patch
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
uClibc does not contain gnu/libc-version.h
|
||||||
|
|
||||||
|
Patch sent upstream: https://bugs.exim.org/show_bug.cgi?id=2070
|
||||||
|
|
||||||
|
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||||
|
|
||||||
|
diff -uNr exim-4.88.org/src/exim.c exim-4.88/src/exim.c
|
||||||
|
--- exim-4.88.org/src/exim.c 2016-12-18 15:02:28.000000000 +0100
|
||||||
|
+++ exim-4.88/src/exim.c 2016-12-26 12:12:57.000000000 +0100
|
||||||
|
@@ -12,7 +12,7 @@
|
||||||
|
|
||||||
|
#include "exim.h"
|
||||||
|
|
||||||
|
-#ifdef __GLIBC__
|
||||||
|
+#if defined(__GLIBC__) && !defined(__UCLIBC__)
|
||||||
|
# include <gnu/libc-version.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
@@ -1044,7 +1044,7 @@
|
||||||
|
fprintf(f, "Compiler: <unknown>\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
-#ifdef __GLIBC__
|
||||||
|
+#if defined(__GLIBC__) && !defined(__UCLIBC__)
|
||||||
|
fprintf(f, "Library version: Glibc: Compile: %d.%d\n",
|
||||||
|
__GLIBC__, __GLIBC_MINOR__);
|
||||||
|
if (__GLIBC_PREREQ(2, 1))
|
@ -1,2 +1,2 @@
|
|||||||
# Locally calculated
|
# Locally calculated
|
||||||
sha256 d4b7994c89240d2f9a9fcd7a2dffa4b72f14379001a24266f4dbb0fbe5131514 exim-4.87.1.tar.bz2
|
sha256 912f2ee03c8dba06a3a4c0ee40522d367e1b65dc59e38dfcc1f5d9eecff51ab0 exim-4.89.tar.bz2
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
EXIM_VERSION = 4.87.1
|
EXIM_VERSION = 4.89
|
||||||
EXIM_SOURCE = exim-$(EXIM_VERSION).tar.bz2
|
EXIM_SOURCE = exim-$(EXIM_VERSION).tar.bz2
|
||||||
EXIM_SITE = ftp://ftp.exim.org/pub/exim/exim4/old
|
EXIM_SITE = ftp://ftp.exim.org/pub/exim/exim4
|
||||||
EXIM_LICENSE = GPLv2+
|
EXIM_LICENSE = GPLv2+
|
||||||
EXIM_LICENSE_FILES = LICENCE
|
EXIM_LICENSE_FILES = LICENCE
|
||||||
EXIM_DEPENDENCIES = pcre berkeleydb host-pkgconf
|
EXIM_DEPENDENCIES = pcre berkeleydb host-pkgconf
|
||||||
|
Loading…
x
Reference in New Issue
Block a user