added my Recipes
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
From 07150f3a27681e034f18ab2ed2b68914c1e10af6 Mon Sep 17 00:00:00 2001
|
||||
From: Li xin <lixin.fnst@cn.fujitsu.com>
|
||||
Date: Sat, 18 Jul 2015 05:03:57 +0900
|
||||
Subject: [PATCH] configure.ac: convert AC_TRY_RUN to AC_TRY_LINK statements
|
||||
|
||||
This is not completely safe, but it's the least invasive fix.
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
|
||||
Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
|
||||
|
||||
Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
|
||||
---
|
||||
m4/glibc.m4 | 6 ++----
|
||||
m4/ioloop.m4 | 9 +++------
|
||||
2 files changed, 5 insertions(+), 10 deletions(-)
|
||||
|
||||
diff --git a/m4/glibc.m4 b/m4/glibc.m4
|
||||
index 5d722aa..ce088d3 100644
|
||||
--- a/m4/glibc.m4
|
||||
+++ b/m4/glibc.m4
|
||||
@@ -17,7 +17,7 @@ AC_DEFUN([DOVECOT_GLIBC], [
|
||||
dnl * Old glibcs have broken posix_fallocate(). Make sure not to use it.
|
||||
dnl * It may also be broken in AIX.
|
||||
AC_CACHE_CHECK([whether posix_fallocate() works],i_cv_posix_fallocate_works,[
|
||||
- AC_TRY_RUN([
|
||||
+ AC_TRY_LINK([
|
||||
#define _XOPEN_SOURCE 600
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
@@ -26,7 +26,7 @@ AC_DEFUN([DOVECOT_GLIBC], [
|
||||
#if defined(__GLIBC__) && (__GLIBC__ < 2 || __GLIBC_MINOR__ < 7)
|
||||
possibly broken posix_fallocate
|
||||
#endif
|
||||
- int main() {
|
||||
+ ], [
|
||||
int fd = creat("conftest.temp", 0600);
|
||||
int ret;
|
||||
if (fd == -1) {
|
||||
@@ -35,8 +35,6 @@ AC_DEFUN([DOVECOT_GLIBC], [
|
||||
}
|
||||
ret = posix_fallocate(fd, 1024, 1024) < 0 ? 1 : 0;
|
||||
unlink("conftest.temp");
|
||||
- return ret;
|
||||
- }
|
||||
], [
|
||||
i_cv_posix_fallocate_works=yes
|
||||
], [
|
||||
diff --git a/m4/ioloop.m4 b/m4/ioloop.m4
|
||||
index 0f7dde0..f40fd62 100644
|
||||
--- a/m4/ioloop.m4
|
||||
+++ b/m4/ioloop.m4
|
||||
@@ -4,13 +4,10 @@ AC_DEFUN([DOVECOT_IOLOOP], [
|
||||
|
||||
if test "$ioloop" = "best" || test "$ioloop" = "epoll"; then
|
||||
AC_CACHE_CHECK([whether we can use epoll],i_cv_epoll_works,[
|
||||
- AC_TRY_RUN([
|
||||
+ AC_TRY_LINK([
|
||||
#include <sys/epoll.h>
|
||||
-
|
||||
- int main()
|
||||
- {
|
||||
- return epoll_create(5) < 1;
|
||||
- }
|
||||
+ ], [
|
||||
+ epoll_create(5) < 1;
|
||||
], [
|
||||
i_cv_epoll_works=yes
|
||||
], [
|
||||
--
|
||||
2.25.1
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
From 6c0ff65f782ad38130b18e4ecb1538d9a8633684 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Sat, 29 May 2021 14:32:17 -0700
|
||||
Subject: [PATCH] m4: Check for libunwind instead of libunwind-generic
|
||||
|
||||
libunwind-generic is specific to nongnu libunwind, when using llvm
|
||||
libunwind this fails, so poking for libunwind make it generic
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
m4/want_unwind.m4 | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/m4/want_unwind.m4 b/m4/want_unwind.m4
|
||||
index cadb62b..5517314 100644
|
||||
--- a/m4/want_unwind.m4
|
||||
+++ b/m4/want_unwind.m4
|
||||
@@ -2,7 +2,7 @@ AC_DEFUN([DOVECOT_WANT_UNWIND], [
|
||||
have_libunwind=no
|
||||
AS_IF([test "$want_libunwind" != "no"], [
|
||||
PKG_CHECK_EXISTS([libunwind], [
|
||||
- PKG_CHECK_MODULES([LIBUNWIND], [libunwind-generic],[
|
||||
+ PKG_CHECK_MODULES([LIBUNWIND], [libunwind],[
|
||||
have_libunwind=yes
|
||||
AC_DEFINE([HAVE_LIBUNWIND],,[Define this if you have libunwind])
|
||||
])
|
||||
--
|
||||
2.31.1
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
From 8c7d143ff28441c8b74b0f518dd2281239aede3d Mon Sep 17 00:00:00 2001
|
||||
From: Wang Mingyu <wangmy@cn.fujitsu.com>
|
||||
Date: Fri, 15 Jan 2021 11:10:22 +0900
|
||||
Subject: [PATCH] not check pandoc
|
||||
|
||||
Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
|
||||
---
|
||||
m4/dovecot.m4 | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/m4/dovecot.m4 b/m4/dovecot.m4
|
||||
index 2b5d895..ece8489 100644
|
||||
--- a/m4/dovecot.m4
|
||||
+++ b/m4/dovecot.m4
|
||||
@@ -447,7 +447,7 @@ AC_DEFUN([DC_PANDOC], [
|
||||
dnl Optional tool for making documentation
|
||||
AC_CHECK_PROGS(PANDOC, [pandoc], [true])
|
||||
|
||||
- AS_IF([test "$PANDOC" = "true"], [
|
||||
+ AS_IF([test "$PANDOC" = "false"], [
|
||||
AS_IF([test ! -e README], [
|
||||
AC_MSG_ERROR([Cannot produce documentation without pandoc - disable with PANDOC=false ./configure])
|
||||
])
|
||||
--
|
||||
2.25.1
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
[Unit]
|
||||
Description=Dovecot IMAP/POP3 email server
|
||||
After=local-fs.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
EnvironmentFile=-@SYSCONFDIR@/sysconfig/dovecot
|
||||
ExecStart=@SBINDIR@/dovecot -F
|
||||
ExecReload=/bin/kill -HUP $MAINPID
|
||||
NonBlocking=yes
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
[Unit]
|
||||
Description=Dovecot IMAP/POP3 email server activation socket
|
||||
|
||||
[Socket]
|
||||
#dovecot expects separate IPv4 and IPv6 sockets
|
||||
BindIPv6Only=ipv6-only
|
||||
ListenStream=0.0.0.0:143
|
||||
ListenStream=[::]:143
|
||||
ListenStream=0.0.0.0:993
|
||||
ListenStream=[::]:993
|
||||
KeepAlive=true
|
||||
|
||||
[Install]
|
||||
WantedBy=sockets.target
|
||||
@@ -0,0 +1,77 @@
|
||||
SUMMARY = "Dovecot is an open source IMAP and POP3 email server"
|
||||
HOMEPAGE = "https://www.dovecot.org/"
|
||||
DESCRIPTION = "Dovecot is an open source IMAP and POP3 email server for Linux/UNIX-like systems, written with security primarily in mind. Dovecot is an excellent choice for both small and large installations. It's fast, simple to set up, requires no special administration and it uses very little memory."
|
||||
SECTION = "mail"
|
||||
LICENSE = "LGPL-2.1-only & MIT"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=2956560272e5b31d9d64f03111732048"
|
||||
|
||||
SRC_URI = "http://dovecot.org/releases/2.3/dovecot-${PV}.tar.gz \
|
||||
file://0001-configure.ac-convert-AC_TRY_RUN-to-AC_TRY_LINK-state.patch \
|
||||
file://dovecot.service \
|
||||
file://dovecot.socket \
|
||||
file://0001-not-check-pandoc.patch \
|
||||
file://0001-m4-Check-for-libunwind-instead-of-libunwind-generic.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "2f03532cec3280ae45a101a7a55ccef5"
|
||||
SRC_URI[sha256sum] = "c8b3d7f3af1e558a3ff0f970309d4013a4d3ce136f8c02a53a3b05f345b9a34a"
|
||||
|
||||
DEPENDS = "openssl xz zlib bzip2 libcap icu libtirpc bison-native"
|
||||
CFLAGS += "-I${STAGING_INCDIR}/tirpc"
|
||||
LDFLAGS += "-ltirpc"
|
||||
|
||||
inherit autotools pkgconfig systemd useradd gettext
|
||||
|
||||
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ldap pam', d)}"
|
||||
|
||||
PACKAGECONFIG[pam] = "--with-pam,--without-pam,libpam,"
|
||||
PACKAGECONFIG[ldap] = "--with-ldap=plugin,--without-ldap,openldap,"
|
||||
PACKAGECONFIG[lz4] = "--with-lz4,--without-lz4,lz4,"
|
||||
|
||||
# From native build in armv7a-hf/eglibc
|
||||
CACHED_CONFIGUREVARS += "i_cv_signed_size_t=no \
|
||||
i_cv_gmtime_max_time_t=32 \
|
||||
i_cv_signed_time_t=yes \
|
||||
i_cv_mmap_plays_with_write=yes \
|
||||
i_cv_fd_passing=yes \
|
||||
i_cv_c99_vsnprintf=yes \
|
||||
lib_cv___va_copy=yes \
|
||||
lib_cv_va_copy=yes \
|
||||
lib_cv_va_val_copy=yes \
|
||||
"
|
||||
|
||||
# hardcode epoll() to avoid running unsafe tests
|
||||
# BSD needs kqueue and uclibc poll()
|
||||
EXTRA_OECONF = " --with-ioloop=epoll \
|
||||
--with-systemdsystemunitdir=${systemd_unitdir}/system"
|
||||
|
||||
# Uses hidden symbols
|
||||
# libssl_iostream_openssl.so: undefined reference to `ssl_iostream_handshake'
|
||||
LTO = ""
|
||||
|
||||
SYSTEMD_PACKAGES = "${PN}"
|
||||
SYSTEMD_SERVICE:${PN} = "dovecot.service dovecot.socket"
|
||||
SYSTEMD_AUTO_ENABLE = "disable"
|
||||
|
||||
do_install:append () {
|
||||
install -d 755 ${D}/etc/dovecot
|
||||
touch 644 ${D}/etc/dovecot/dovecot.conf
|
||||
install -m 0644 ${WORKDIR}/dovecot.service ${D}${systemd_unitdir}/system
|
||||
sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' ${D}${systemd_unitdir}/system/dovecot.service
|
||||
sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/dovecot.service
|
||||
}
|
||||
|
||||
USERADD_PACKAGES = "${PN}"
|
||||
USERADD_PARAM:${PN} = "-r -d ${libexecdir} -M -s ${base_sbindir}/nologin -g dovecot dovecot; \
|
||||
-r -d ${libexecdir} -M -s ${base_sbindir}/nologin -g dovenull dovenull"
|
||||
GROUPADD_PARAM:${PN} = "-f -r dovecot;-f -r dovenull"
|
||||
|
||||
FILES:${PN} += "${libdir}/dovecot/*plugin.so \
|
||||
${libdir}/dovecot/libfs_compress.so \
|
||||
${libdir}/dovecot/libssl_iostream_openssl.so"
|
||||
FILES:${PN}-staticdev += "${libdir}/dovecot/*/*.a"
|
||||
FILES:${PN}-dev += "${libdir}/dovecot/libdovecot*.so"
|
||||
FILES:${PN}-dbg += "${libdir}/dovecot/*/.debug"
|
||||
|
||||
# CVE-2016-4983 affects only postinstall script on specific distribution
|
||||
CVE_CHECK_IGNORE += "CVE-2016-4983"
|
||||
Reference in New Issue
Block a user