0be744e495
Now that we have libtool-2.2.x patch support, we can get rid of a bunch of _LIBTOOL_PATH = NO, fixing (potential) cross link issues. Notice: php not changed, as it uses a very old 1.5 version for the embedded sqlite, where our buildroot-libtool-v1.5.patch doesn't apply. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
26 lines
710 B
Makefile
26 lines
710 B
Makefile
#############################################################
|
|
#
|
|
# libgail
|
|
#
|
|
#############################################################
|
|
LIBGAIL_VERSION_MAJOR = 1.22
|
|
LIBGAIL_VERSION_MINOR = 3
|
|
LIBGAIL_VERSION = $(LIBGAIL_VERSION_MAJOR).$(LIBGAIL_VERSION_MINOR)
|
|
LIBGAIL_SOURCE = gail-$(LIBGAIL_VERSION).tar.bz2
|
|
LIBGAIL_SITE = http://ftp.gnome.org/pub/gnome/sources/gail/$(LIBGAIL_VERSION_MAJOR)
|
|
|
|
LIBGAIL_AUTORECONF = YES
|
|
LIBGAIL_INSTALL_STAGING = YES
|
|
LIBGAIL_INSTALL_TARGET = YES
|
|
|
|
LIBGAIL_CONF_OPT = --enable-shared \
|
|
--enable-static
|
|
|
|
ifneq ($(BR2_PACKAGE_XLIB_LIBX11),y)
|
|
LIBGAIL_CONF_OPT += --disable-x
|
|
endif
|
|
|
|
LIBGAIL_DEPENDENCIES = host-pkg-config libgtk2 pango
|
|
|
|
$(eval $(call AUTOTARGETS,package,libgail))
|