e921567efb
The gettext macros in the package are from a gettext version older than the one we have in Buildroot, so autoreconf fails. Run gettextize prior to running autoreconf, like we do in wget. Fixes: http://autobuild.buildroot.net/results/8dd/8dd6651ce99c0b81497fd285909b2b614009e273/ http://autobuild.buildroot.net/results/0bb/0bbfddda94ac7f75f74a54157c27de5b4fb3e559/ http://autobuild.buildroot.net/results/92b/92bcb493619ce4508bc4571cbfc3d5c3bdf49ff4/ http://autobuild.buildroot.net/results/768/768efd71745c72cec159edaa92e266167629ec5d/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
798 B
Makefile
27 lines
798 B
Makefile
################################################################################
|
|
#
|
|
# fetchmail
|
|
#
|
|
################################################################################
|
|
|
|
FETCHMAIL_VERSION_MAJOR = 6.3
|
|
FETCHMAIL_VERSION = $(FETCHMAIL_VERSION_MAJOR).26
|
|
FETCHMAIL_SOURCE = fetchmail-$(FETCHMAIL_VERSION).tar.xz
|
|
FETCHMAIL_SITE = http://downloads.sourceforge.net/project/fetchmail/branch_$(FETCHMAIL_VERSION_MAJOR)/
|
|
FETCHMAIL_LICENSE = GPLv2; some exceptions are mentioned in COPYING
|
|
FETCHMAIL_LICENSE_FILES = COPYING
|
|
FETCHMAIL_AUTORECONF = YES
|
|
FETCHMAIL_GETTEXTIZE = YES
|
|
|
|
FETCHMAIL_CONF_ENV += LIBS="-lz"
|
|
|
|
FETCHMAIL_CONF_OPT = \
|
|
--with-ssl=$(STAGING_DIR)/usr
|
|
|
|
FETCHMAIL_DEPENDENCIES = \
|
|
ca-certificates \
|
|
openssl \
|
|
$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
|
|
|
|
$(eval $(autotools-package))
|