mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 13:33:28 +08:00
8bba9e78d8
Since commit 4e1dbd063d
("package/bdwgc:
bump to version 8.0.0"), we no longer have any patch that requires
autoreconf. In addition, the libtool shipped with the package seems to
no longer be bogus, because it builds perfectly fine without
autoreconf. Therefore, let's drop this autoreconf.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Reviewed-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
36 lines
1.0 KiB
Makefile
36 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# bdwgc
|
|
#
|
|
################################################################################
|
|
|
|
BDWGC_VERSION = 8.0.0
|
|
BDWGC_SOURCE = gc-$(BDWGC_VERSION).tar.gz
|
|
BDWGC_SITE = http://www.hboehm.info/gc/gc_source
|
|
BDWGC_INSTALL_STAGING = YES
|
|
BDWGC_LICENSE = bdwgc license
|
|
BDWGC_LICENSE_FILES = README.QUICK
|
|
BDWGC_DEPENDENCIES = libatomic_ops host-pkgconf
|
|
HOST_BDWGC_DEPENDENCIES = host-libatomic_ops host-pkgconf
|
|
|
|
BDWGC_CONF_OPTS = CFLAGS_EXTRA="$(BDWGC_CFLAGS_EXTRA)"
|
|
ifeq ($(BR2_sparc),y)
|
|
BDWGC_CFLAGS_EXTRA += -DAO_NO_SPARC_V9
|
|
endif
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
BDWGC_CFLAGS_EXTRA += -DGC_NO_DLOPEN
|
|
endif
|
|
|
|
# Ensure we use the system libatomic_ops, and not the internal one.
|
|
BDWGC_CONF_OPTS += --with-libatomic-ops=yes
|
|
HOST_BDWGC_CONF_OPTS = --with-libatomic-ops=yes
|
|
|
|
ifeq ($(BR2_INSTALL_LIBSTDCPP),y)
|
|
BDWGC_CONF_OPTS += --enable-cplusplus
|
|
else
|
|
BDWGC_CONF_OPTS += --disable-cplusplus
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|