8e33cc012e
Samba-4.16 bumped its internal heimdal code[1] which made it incompatible with asn1_compile built with heimdal-7.7.1: /home/user/buildroot/output/build/samba4-4.18.2/third_party/heimdal/lib/asn1/rfc2459.asn1:260: Ignoring char(_) /home/user/buildroot/output/build/samba4-4.18.2/third_party/heimdal/lib/asn1/rfc2459.asn1:260: syntax error Bump this package to the same version LibreELEC is using1dc0b5bf3e
1112a18795
763eddbab1
to fix the build error. Removed HOST_HEIMDAL_MAKE_SYMLINK as asn1_compile is now installed in $(HOST_DIR)/bin/. [1] https://www.samba.org/samba/history/samba-4.16.0.html Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# heimdal
|
|
#
|
|
################################################################################
|
|
|
|
HEIMDAL_VERSION = f4faaeaba371fff3f8d1bc14389f5e6d70ca8e17
|
|
HEIMDAL_SITE = $(call github,heimdal,heimdal,$(HEIMDAL_VERSION))
|
|
HOST_HEIMDAL_DEPENDENCIES = host-e2fsprogs host-ncurses host-pkgconf
|
|
HOST_HEIMDAL_AUTORECONF = YES
|
|
HEIMDAL_INSTALL_STAGING = YES
|
|
# static because of -fPIC issues with e2fsprogs on x86_64 host
|
|
HOST_HEIMDAL_CONF_OPTS = \
|
|
--disable-shared \
|
|
--enable-static \
|
|
--without-openldap \
|
|
--without-capng \
|
|
--with-db-type-preference= \
|
|
--without-sqlite3 \
|
|
--without-libintl \
|
|
--without-openssl \
|
|
--without-berkeley-db \
|
|
--without-readline \
|
|
--without-libedit \
|
|
--without-hesiod \
|
|
--without-x \
|
|
--disable-mdb-db \
|
|
--disable-ndbm-db \
|
|
--disable-heimdal-documentation
|
|
|
|
# Don't use compile_et from e2fsprogs as it raises a build failure with samba4
|
|
HOST_HEIMDAL_CONF_ENV = ac_cv_prog_COMPILE_ET=no MAKEINFO=true
|
|
HEIMDAL_LICENSE = BSD-3-Clause
|
|
HEIMDAL_LICENSE_FILES = LICENSE
|
|
HEIMDAL_CPE_ID_VENDOR = heimdal_project
|
|
|
|
# We need compile_et for samba4
|
|
define HOST_HEIMDAL_INSTALL_COMPILE_ET
|
|
$(INSTALL) -m 0755 $(@D)/lib/com_err/compile_et \
|
|
$(HOST_DIR)/bin/compile_et
|
|
endef
|
|
|
|
HOST_HEIMDAL_POST_INSTALL_HOOKS += \
|
|
HOST_HEIMDAL_INSTALL_COMPILE_ET
|
|
|
|
$(eval $(host-autotools-package))
|