131c520da8
If those flags are not explicitly passed, the libecore configure script will include -I/usr/X11R6/include and -L/usr/X11R6/lib in the compile flags, which are obviously unsafe for cross-compilation. The fix is similar to0d9d8984a9
andda50b6b61c
. Fixes: http://autobuild.buildroot.org/results/24b/24b578a28455409b7bcc0277abc6b478c51ae67f Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
580 B
Makefile
21 lines
580 B
Makefile
################################################################################
|
|
#
|
|
# expedite
|
|
#
|
|
################################################################################
|
|
|
|
EXPEDITE_VERSION = $(EFL_VERSION)
|
|
EXPEDITE_SITE = http://download.enlightenment.org/releases
|
|
EXPEDITE_LICENSE = BSD-2c
|
|
EXPEDITE_LICENSE_FILES = COPYING
|
|
|
|
EXPEDITE_DEPENDENCIES = libevas libeina libeet
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBEVAS_X11),y)
|
|
EXPEDITE_CONF_OPTS += --with-x=$(STAGING_DIR) \
|
|
--x-includes=$(STAGING_DIR)/usr/include \
|
|
--x-libraries=$(STAGING_DIR)/usr/lib
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|