update buildroot to 2017.02.11
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
From 902917880ca29f1007750a70cf46e7246b2d0a2a Mon Sep 17 00:00:00 2001
|
||||
From: Josef 'Jeff' Sipek <jeff.sipek@dovecot.fi>
|
||||
Date: Tue, 14 Nov 2017 06:01:21 +0100
|
||||
Subject: [PATCH] byteorder.h: fix uclibc build
|
||||
|
||||
Patch suggested on upstream mailinglist:
|
||||
https://www.dovecot.org/pipermail/dovecot/2017-November/110019.html
|
||||
|
||||
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
---
|
||||
src/lib/byteorder.h | 5 +++++
|
||||
1 file changed, 5 insertions(+)
|
||||
|
||||
diff --git a/src/lib/byteorder.h b/src/lib/byteorder.h
|
||||
index 2f5dc7c17..4ffe8da21 100644
|
||||
--- a/src/lib/byteorder.h
|
||||
+++ b/src/lib/byteorder.h
|
||||
@@ -23,6 +23,11 @@
|
||||
#ifndef BYTEORDER_H
|
||||
#define BYTEORDER_H
|
||||
|
||||
+#undef bswap_8
|
||||
+#undef bswap_16
|
||||
+#undef bswap_32
|
||||
+#undef bswap_64
|
||||
+
|
||||
/*
|
||||
* These prototypes exist to catch bugs in the code generating macros below.
|
||||
*/
|
||||
--
|
||||
2.11.0
|
||||
|
||||
41
bsp/buildroot-2017.02.11/package/dovecot/Config.in
Normal file
41
bsp/buildroot-2017.02.11/package/dovecot/Config.in
Normal file
@@ -0,0 +1,41 @@
|
||||
config BR2_PACKAGE_DOVECOT
|
||||
bool "dovecot"
|
||||
depends on !BR2_STATIC_LIBS
|
||||
depends on BR2_USE_MMU # fork()
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
select BR2_PACKAGE_ZLIB
|
||||
help
|
||||
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.
|
||||
|
||||
http://www.dovecot.org
|
||||
|
||||
if BR2_PACKAGE_DOVECOT
|
||||
|
||||
config BR2_PACKAGE_DOVECOT_MYSQL
|
||||
bool "mysql support"
|
||||
select BR2_PACKAGE_MYSQL
|
||||
depends on BR2_INSTALL_LIBSTDCPP # mysql
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # mysql
|
||||
help
|
||||
Enable MySQL support.
|
||||
|
||||
comment "mysql support needs a toolchain w/ C++, threads"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
config BR2_PACKAGE_DOVECOT_SQLITE
|
||||
bool "sqlite support"
|
||||
select BR2_PACKAGE_SQLITE
|
||||
help
|
||||
Enable SQLite support.
|
||||
|
||||
source package/dovecot-pigeonhole/Config.in
|
||||
|
||||
endif # BR2_PACKAGE_DOVECOT
|
||||
|
||||
comment "dovecot needs a toolchain w/ dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_STATIC_LIBS
|
||||
5
bsp/buildroot-2017.02.11/package/dovecot/dovecot.hash
Normal file
5
bsp/buildroot-2017.02.11/package/dovecot/dovecot.hash
Normal file
@@ -0,0 +1,5 @@
|
||||
# Locally computed after checking signature
|
||||
sha256 5e92a4325409e66b343f6aaa67174b8921ce83d0df792c6eeb0b7b7e2c808353 dovecot-2.2.34.tar.gz
|
||||
sha256 a363b132e494f662d98c820d1481297e6ae72f194c2c91b6c39e1518b86240a8 COPYING
|
||||
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING.LGPL
|
||||
sha256 52b8c95fabb19575281874b661ef7968ea47e8f5d74ba0dd40ce512e52b3fc97 COPYING.MIT
|
||||
115
bsp/buildroot-2017.02.11/package/dovecot/dovecot.mk
Normal file
115
bsp/buildroot-2017.02.11/package/dovecot/dovecot.mk
Normal file
@@ -0,0 +1,115 @@
|
||||
################################################################################
|
||||
#
|
||||
# dovecot
|
||||
#
|
||||
################################################################################
|
||||
|
||||
DOVECOT_VERSION_MAJOR = 2.2
|
||||
DOVECOT_VERSION = $(DOVECOT_VERSION_MAJOR).34
|
||||
DOVECOT_SITE = http://www.dovecot.org/releases/$(DOVECOT_VERSION_MAJOR)
|
||||
DOVECOT_INSTALL_STAGING = YES
|
||||
DOVECOT_LICENSE = LGPLv2.1
|
||||
DOVECOT_LICENSE_FILES = COPYING COPYING.LGPL COPYING.MIT
|
||||
DOVECOT_DEPENDENCIES = \
|
||||
host-pkgconf \
|
||||
$(if $(BR2_PACKAGE_LIBICONV),libiconv) \
|
||||
openssl
|
||||
|
||||
DOVECOT_CONF_ENV = \
|
||||
RPCGEN=__disable_RPCGEN_rquota \
|
||||
i_cv_epoll_works=yes \
|
||||
i_cv_inotify_works=yes \
|
||||
i_cv_posix_fallocate_works=no \
|
||||
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
|
||||
|
||||
DOVECOT_CONF_OPTS = --without-docs --with-ssl=openssl
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DOVECOT_MYSQL)$(BR2_PACKAGE_DOVECOT_SQLITE),)
|
||||
DOVECOT_CONF_OPTS += --without-sql
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
||||
DOVECOT_CONF_OPTS += --with-bzlib
|
||||
DOVECOT_DEPENDENCIES += bzip2
|
||||
else
|
||||
DOVECOT_CONF_OPTS += --without-bzlib
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ICU),y)
|
||||
DOVECOT_CONF_OPTS += --with-icu
|
||||
DOVECOT_DEPENDENCIES += icu
|
||||
else
|
||||
DOVECOT_CONF_OPTS += --without-icu
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBCAP),y)
|
||||
DOVECOT_CONF_OPTS += --with-libcap
|
||||
DOVECOT_DEPENDENCIES += libcap
|
||||
else
|
||||
DOVECOT_CONF_OPTS += --without-libcap
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DOVECOT_MYSQL),y)
|
||||
DOVECOT_CONF_ENV += MYSQL_CONFIG="$(STAGING_DIR)/usr/bin/mysql_config"
|
||||
DOVECOT_CONF_OPTS += --with-mysql
|
||||
DOVECOT_DEPENDENCIES += mysql
|
||||
else
|
||||
DOVECOT_CONF_OPTS += --without-mysql
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DOVECOT_SQLITE),y)
|
||||
DOVECOT_CONF_OPTS += --with-sqlite
|
||||
DOVECOT_DEPENDENCIES += sqlite
|
||||
else
|
||||
DOVECOT_CONF_OPTS += --without-sqlite
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LZ4),y)
|
||||
DOVECOT_CONF_OPTS += --with-lz4
|
||||
DOVECOT_DEPENDENCIES += lz4
|
||||
else
|
||||
DOVECOT_CONF_OPTS += --without-lz4
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XZ),y)
|
||||
DOVECOT_CONF_OPTS += --with-lzma
|
||||
DOVECOT_DEPENDENCIES += xz
|
||||
else
|
||||
DOVECOT_CONF_OPTS += --without-lzma
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
DOVECOT_CONF_OPTS += --with-zlib
|
||||
DOVECOT_DEPENDENCIES += zlib
|
||||
else
|
||||
DOVECOT_CONF_OPTS += --without-zlib
|
||||
endif
|
||||
|
||||
# fix paths to avoid using /usr/lib/dovecot
|
||||
define DOVECOT_POST_CONFIGURE
|
||||
for i in $$(find $(@D) -name "Makefile"); do \
|
||||
$(SED) 's%^pkglibdir =.*%pkglibdir = \$$(libdir)%' $$i; \
|
||||
$(SED) 's%^pkglibexecdir =.*%pkglibexecdir = \$$(libexecdir)%' $$i; \
|
||||
done
|
||||
endef
|
||||
|
||||
DOVECOT_POST_CONFIGURE_HOOKS += DOVECOT_POST_CONFIGURE
|
||||
|
||||
# dovecot installs dovecot-config in usr/lib/, therefore
|
||||
# DOVECOT_CONFIG_SCRIPTS can not be used to rewrite paths
|
||||
define DOVECOT_FIX_STAGING_DOVECOT_CONFIG
|
||||
$(SED) 's,^LIBDOVECOT_INCLUDE=.*$$,LIBDOVECOT_INCLUDE=\"-I$(STAGING_DIR)/usr/include/dovecot\",' $(STAGING_DIR)/usr/lib/dovecot-config
|
||||
$(SED) 's,^LIBDOVECOT=.*$$,LIBDOVECOT=\"-L$(STAGING_DIR)/usr/lib -ldovecot\",' $(STAGING_DIR)/usr/lib/dovecot-config
|
||||
endef
|
||||
|
||||
DOVECOT_POST_INSTALL_STAGING_HOOKS += DOVECOT_FIX_STAGING_DOVECOT_CONFIG
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user