27b425ef49
The heirloom-mailx package exhibits gcc bug 101916 when built for the SH4 architecture with optimization enabled, which causes a build failure. As done for other packages in Buildroot work around this gcc bug by setting optimization to -O0 if BR2_TOOLCHAIN_HAS_GCC_BUG_101916=y. Also introduce HEIRLOOM_MAILX_CFLAGS as done for other packages and move the already present -fPIC CFLAG to it. Fixes: http://autobuild.buildroot.net/results/911/911f5c024834741754102ff1bbb05c4a64c54a0b/ Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
48 lines
1.4 KiB
Makefile
48 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# heirloom-mailx
|
|
#
|
|
################################################################################
|
|
|
|
HEIRLOOM_MAILX_VERSION = 12.5
|
|
HEIRLOOM_MAILX_SOURCE = heirloom-mailx_$(HEIRLOOM_MAILX_VERSION).orig.tar.gz
|
|
HEIRLOOM_MAILX_SITE = http://snapshot.debian.org/archive/debian/20141023T043132Z/pool/main/h/heirloom-mailx
|
|
HEIRLOOM_MAILX_LICENSE = BSD-4-Clause, Bellcore (base64), OpenVision (imap_gssapi), RSA Data Security (md5), Network Working Group (hmac), MPL-1.1 (nss)
|
|
HEIRLOOM_MAILX_LICENSE_FILES = COPYING
|
|
HEIRLOOM_MAILX_CPE_ID_VENDOR = heirloom
|
|
HEIRLOOM_MAILX_CPE_ID_PRODUCT = mailx
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
HEIRLOOM_MAILX_DEPENDENCIES += openssl
|
|
endif
|
|
|
|
define HEIRLOOM_MAILX_CONFIGURE_CMDS
|
|
(cd $(@D); $(TARGET_CONFIGURE_OPTS) $(SHELL) ./makeconfig)
|
|
endef
|
|
|
|
HEIRLOOM_MAILX_CFLAGS = $(TARGET_CFLAGS)
|
|
|
|
# -fPIC is needed to build with NIOS2 toolchains.
|
|
HEIRLOOM_MAILX_CFLAGS += -fPIC
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_101916),y)
|
|
HEIRLOOM_MAILX_CFLAGS += -O0
|
|
endif
|
|
|
|
define HEIRLOOM_MAILX_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) \
|
|
CFLAGS="$(HEIRLOOM_MAILX_CFLAGS)" \
|
|
-C $(@D)
|
|
endef
|
|
|
|
define HEIRLOOM_MAILX_INSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
PREFIX=/usr \
|
|
UCBINSTALL=$(INSTALL) \
|
|
STRIP=/bin/true \
|
|
DESTDIR=$(TARGET_DIR) \
|
|
install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|