218b4ec6bc
-Merge the current blackbox-0.70.1-configure.patch to a new one named blackbox-001-Fix-configure-ac.patch that will patch configure.ac instead and also will add -lpthreads to LIBS to fix a linkage problem. -Force autoreconf to generate the new configure script using the new patched configure.ac file. Fixes: http://autobuild.buildroot.net/results/a97/a979cc079706be2012fb4b6c72894aca636adfb6/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
23 lines
641 B
Makefile
23 lines
641 B
Makefile
################################################################################
|
|
#
|
|
# blackbox
|
|
#
|
|
################################################################################
|
|
|
|
BLACKBOX_VERSION = 0.70.1
|
|
BLACKBOX_SOURCE = blackbox-$(BLACKBOX_VERSION).tar.bz2
|
|
BLACKBOX_SITE = http://downloads.sourceforge.net/project/blackboxwm/blackboxwm/Blackbox%20$(BLACKBOX_VERSION)
|
|
|
|
BLACKBOX_CONF_OPT = --x-includes=$(STAGING_DIR)/usr/include/X11 \
|
|
--x-libraries=$(STAGING_DIR)/usr/lib
|
|
|
|
BLACKBOX_DEPENDENCIES = xlib_libX11
|
|
|
|
ifneq ($(BR2_ENABLE_LOCALE),y)
|
|
BLACKBOX_DEPENDENCIES += libiconv
|
|
endif
|
|
|
|
BLACKBOX_AUTORECONF = YES
|
|
|
|
$(eval $(autotools-package))
|