822a757456
A lot of packages ignored BR2_ENABLE_DEBUG. This patch simplifies the handling of this option by adding the corresponding configure option to the global Makefile for target packages. For host packages --disable-debug is added to the global Makefile. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
635 B
Makefile
26 lines
635 B
Makefile
################################################################################
|
|
#
|
|
# gamin
|
|
#
|
|
################################################################################
|
|
|
|
GAMIN_VERSION = 0.1.10
|
|
GAMIN_SITE = http://www.gnome.org/~veillard/gamin/sources
|
|
GAMIN_AUTORECONF = YES
|
|
GAMIN_INSTALL_STAGING = YES
|
|
GAMIN_LICENSE = LGPLv2+
|
|
GAMIN_LICENSE_FILES = COPYING
|
|
|
|
# python support broken
|
|
GAMIN_CONF_OPTS += --without-python
|
|
|
|
GAMIN_CONF_ENV = have_abstract_sockets=no
|
|
|
|
ifneq ($(BR2_LARGEFILE),y)
|
|
GAMIN_CONF_ENV += CC="$(TARGET_CC) $(TARGET_CFLAGS) -DNO_LARGEFILE_SOURCE"
|
|
endif
|
|
|
|
GAMIN_DEPENDENCIES = libglib2
|
|
|
|
$(eval $(autotools-package))
|