mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
The ifdef construct intended to avoid passing -DBUILD_DEFINES="" was never needed, because even upstream version v1.9 used in 2019 when the configuration options were added, can handle an empty string for BUILD_DEFINES. In fact an empty string is the default for v1.9 if it is not passed during configure. Also, the host variant already sets BUILD_DEFINES unconditionally. So remove the unneeded conditional. Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Theo Debrouwere <t.debrouwere@televic.com> Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
40 lines
1.3 KiB
Makefile
40 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# pugixml
|
|
#
|
|
################################################################################
|
|
|
|
PUGIXML_VERSION = 1.13
|
|
PUGIXML_SITE = https://github.com/zeux/pugixml/releases/download/v$(PUGIXML_VERSION)
|
|
PUGIXML_LICENSE = MIT
|
|
PUGIXML_LICENSE_FILES = LICENSE.md
|
|
PUGIXML_CPE_ID_VENDOR = pugixml_project
|
|
|
|
PUGIXML_INSTALL_STAGING = YES
|
|
|
|
# Pugixml will automatically enable 'long long' support on C++11 compilers,
|
|
# which means gcc 4.8+. As gcc always supports the 'long long' type,
|
|
# force-enable this option to support older gcc versions. See also:
|
|
# https://gcc.gnu.org/onlinedocs/gcc/Long-Long.html
|
|
PUGIXML_BUILD_DEFINES += PUGIXML_HAS_LONG_LONG
|
|
HOST_PUGIXML_BUILD_DEFINES += PUGIXML_HAS_LONG_LONG
|
|
|
|
ifeq ($(BR2_PACKAGE_PUGIXML_XPATH_SUPPORT),)
|
|
PUGIXML_BUILD_DEFINES += PUGIXML_NO_XPATH
|
|
endif
|
|
ifeq ($(BR2_PACKAGE_PUGIXML_COMPACT),y)
|
|
PUGIXML_BUILD_DEFINES += PUGIXML_COMPACT
|
|
endif
|
|
ifeq ($(BR2_PACKAGE_PUGIXML_HEADER_ONLY),y)
|
|
PUGIXML_BUILD_DEFINES += PUGIXML_HEADER_ONLY
|
|
endif
|
|
|
|
PUGIXML_CONF_OPTS += -DBUILD_DEFINES="$(subst $(space),;,$(PUGIXML_BUILD_DEFINES))"
|
|
|
|
HOST_PUGIXML_CONF_OPTS += \
|
|
-DBUILD_PKGCONFIG=ON \
|
|
-DBUILD_DEFINES="$(subst $(space),;,$(HOST_PUGIXML_BUILD_DEFINES))"
|
|
|
|
$(eval $(cmake-package))
|
|
$(eval $(host-cmake-package))
|