c8f847c4f4
Override check for groupadd as already done for setfacl since commit
d9123dd799
to avoid the following build
failure:
checking for groupadd... no
configure: error: Missing required program 'groupadd': ensure it is installed and on PATH.
Fixes:
- http://autobuild.buildroot.org/results/5accac06abbd3980484d8e2667a5446ec5d85bc1
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# tpm2-tss
|
|
#
|
|
################################################################################
|
|
|
|
TPM2_TSS_VERSION = 3.1.0
|
|
TPM2_TSS_SITE = https://github.com/tpm2-software/tpm2-tss/releases/download/$(TPM2_TSS_VERSION)
|
|
TPM2_TSS_LICENSE = BSD-2-Clause
|
|
TPM2_TSS_LICENSE_FILES = LICENSE
|
|
TPM2_TSS_CPE_ID_VENDOR = tpm2_software_stack_project
|
|
TPM2_TSS_CPE_ID_PRODUCT = tpm2_software_stack
|
|
TPM2_TSS_INSTALL_STAGING = YES
|
|
TPM2_TSS_DEPENDENCIES = liburiparser openssl host-pkgconf
|
|
|
|
# 0001-configure-Only-use-CXX-when-fuzzing.patch
|
|
TPM2_TSS_AUTORECONF = YES
|
|
|
|
TPM2_TSS_CONF_OPTS = \
|
|
ac_cv_prog_result_groupadd=yes \
|
|
ac_cv_prog_result_setfacl=yes \
|
|
--with-crypto=ossl \
|
|
--disable-doxygen-doc \
|
|
--disable-defaultflags
|
|
|
|
# uses C99 code but forgets to pass -std=c99 when --disable-defaultflags is used
|
|
TPM2_TSS_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -std=c99"
|
|
|
|
ifeq ($(BR2_PACKAGE_TPM2_TSS_FAPI),y)
|
|
TPM2_TSS_DEPENDENCIES += json-c libcurl
|
|
TPM2_TSS_CONF_OPTS += --enable-fapi
|
|
else
|
|
TPM2_TSS_CONF_OPTS += --disable-fapi
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|