80f5a6ca92
Link with -latomic if needed to avoid the following build failure with openssl: configure:10549: checking for X509_STORE_CTX_new in -lcrypto configure:10574: /tmp/instance-0/output-1/host/bin/sparc-linux-gcc -o conftest -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g0 -static -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I/tmp/instance-0/output-1/host/sparc-buildroot-linux-uclibc/sysroot/usr/include -static -L/tmp/instance-0/output-1/host/sparc-buildroot-linux-uclibc/sysroot/usr/lib conftest.c -lcrypto -lz >&5 /tmp/instance-0/output-1/host/opt/ext-toolchain/bin/../lib/gcc/sparc-buildroot-linux-uclibc/9.3.0/../../../../sparc-buildroot-linux-uclibc/bin/ld: /tmp/instance-0/output-1/host/sparc-buildroot-linux-uclibc/sysroot/usr/lib/libcrypto.a(x509cset.o): in function `X509_CRL_up_ref': x509cset.c:(.text+0xfc): undefined reference to `__atomic_fetch_add_4' Ideally, mutt should use pkg-config but upstream don't want to use it: https://gitlab.com/muttmua/mutt/-/merge_requests/25 Fixes: - http://autobuild.buildroot.org/results/e357984853f8ca879156245717fadbeaa9b0dbae Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
118 lines
2.7 KiB
Makefile
118 lines
2.7 KiB
Makefile
################################################################################
|
|
#
|
|
# mutt
|
|
#
|
|
################################################################################
|
|
|
|
MUTT_VERSION = 2.1.1
|
|
MUTT_SITE = https://bitbucket.org/mutt/mutt/downloads
|
|
MUTT_LICENSE = GPL-2.0+
|
|
MUTT_LICENSE_FILES = GPL
|
|
MUTT_CPE_ID_VENDOR = mutt
|
|
MUTT_DEPENDENCIES = ncurses
|
|
MUTT_CONF_OPTS = --disable-doc --disable-smtp
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
|
MUTT_CONF_ENV += LIBS=-latomic
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
|
MUTT_DEPENDENCIES += libiconv
|
|
MUTT_CONF_OPTS += --enable-iconv
|
|
endif
|
|
|
|
# Both options can't be selected at the same time so prefer libidn2
|
|
ifeq ($(BR2_PACKAGE_LIBIDN2),y)
|
|
MUTT_DEPENDENCIES += libidn2
|
|
MUTT_CONF_OPTS += --with-idn2 --without-idn
|
|
else ifeq ($(BR2_PACKAGE_LIBIDN),y)
|
|
MUTT_DEPENDENCIES += libidn
|
|
MUTT_CONF_OPTS += --with-idn --without-idn2
|
|
else
|
|
MUTT_CONF_OPTS += --without-idn --without-idn2
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGPGME),y)
|
|
MUTT_DEPENDENCIES += libgpgme
|
|
MUTT_CONF_OPTS += \
|
|
--enable-gpgme \
|
|
--with-gpgme-prefix=$(STAGING_DIR)/usr
|
|
else
|
|
MUTT_CONF_OPTS += --disable-gpgme
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_MUTT_IMAP),y)
|
|
MUTT_CONF_OPTS += --enable-imap
|
|
else
|
|
MUTT_CONF_OPTS += --disable-imap
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_MUTT_POP3),y)
|
|
MUTT_CONF_OPTS += --enable-pop
|
|
else
|
|
MUTT_CONF_OPTS += --disable-pop
|
|
endif
|
|
|
|
# SSL support is only used by imap or pop3 module
|
|
ifneq ($(BR2_PACKAGE_MUTT_IMAP)$(BR2_PACKAGE_MUTT_POP3),)
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
MUTT_DEPENDENCIES += openssl
|
|
MUTT_CONF_OPTS += \
|
|
--without-gnutls \
|
|
--with-ssl=$(STAGING_DIR)/usr
|
|
else ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
MUTT_DEPENDENCIES += gnutls
|
|
MUTT_CONF_OPTS += \
|
|
--with-gnutls=$(STAGING_DIR)/usr \
|
|
--without-ssl
|
|
else
|
|
MUTT_CONF_OPTS += \
|
|
--without-gnutls \
|
|
--without-ssl
|
|
endif
|
|
else
|
|
MUTT_CONF_OPTS += \
|
|
--without-gnutls \
|
|
--without-ssl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SQLITE),y)
|
|
MUTT_DEPENDENCIES += sqlite
|
|
MUTT_CONF_OPTS += --with-sqlite3
|
|
else
|
|
MUTT_CONF_OPTS += --without-sqlite3
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
MUTT_DEPENDENCIES += zlib
|
|
MUTT_CONF_OPTS += --with-zlib=$(STAGING_DIR)/usr
|
|
else
|
|
MUTT_CONF_OPTS += --without-zlib
|
|
endif
|
|
|
|
# Avoid running tests to check for:
|
|
# - target system is *BSD
|
|
# - C99 conformance (snprintf, vsnprintf)
|
|
# - behaviour of the regex library
|
|
# - if mail spool directory is world/group writable
|
|
# - we have a working libiconv
|
|
MUTT_CONF_ENV += \
|
|
mutt_cv_bsdish=no \
|
|
mutt_cv_c99_snprintf=yes \
|
|
mutt_cv_c99_vsnprintf=yes \
|
|
mutt_cv_regex_broken=no \
|
|
mutt_cv_worldwrite=yes \
|
|
mutt_cv_groupwrite=yes \
|
|
mutt_cv_iconv_good=yes \
|
|
mutt_cv_iconv_nontrans=no
|
|
|
|
MUTT_CONF_OPTS += --with-mailpath=/var/mail
|
|
|
|
define MUTT_VAR_MAIL
|
|
mkdir -p $(TARGET_DIR)/var
|
|
ln -sf /tmp $(TARGET_DIR)/var/mail
|
|
endef
|
|
MUTT_POST_INSTALL_TARGET_HOOKS += MUTT_VAR_MAIL
|
|
|
|
$(eval $(autotools-package))
|