2008-09-13 00:29:13 +00:00
|
|
|
#
|
2010-02-18 23:50:44 +00:00
|
|
|
# Copyright (C) 2007-2010 OpenWrt.org
|
2007-12-27 02:11:07 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2010-02-18 23:50:44 +00:00
|
|
|
PKG_LIBTOOL_PATHS?=$(CONFIGURE_PATH)
|
|
|
|
|
2010-03-29 03:38:40 +00:00
|
|
|
autoconf_bool = $(patsubst %,$(if $($(1)),--enable,--disable)-%,$(2))
|
2007-12-27 02:11:07 +00:00
|
|
|
|
2010-12-04 13:44:43 +00:00
|
|
|
# delete *.la-files from staging_dir - we can not yet remove respective lines within all package
|
|
|
|
# Makefiles, since backfire still uses libtool v1.5.x which (may) require those files
|
|
|
|
define libtool_remove_files
|
2010-12-08 00:54:14 +00:00
|
|
|
find $(1) -name '*.la' | $(XARGS) rm -f;
|
|
|
|
endef
|
|
|
|
|
|
|
|
define autoreconf
|
2010-12-08 01:15:38 +00:00
|
|
|
(cd $(PKG_BUILD_DIR); \
|
|
|
|
if [ -x ./autogen.sh ]; then \
|
2010-12-08 01:19:52 +00:00
|
|
|
./autogen.sh || true; \
|
2010-12-08 01:15:38 +00:00
|
|
|
elif [ -f ./configure.ac ] || [ -f ./configure.in ]; then \
|
|
|
|
$(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \
|
2010-12-08 01:19:52 +00:00
|
|
|
$(patsubst %,-I %,$(PKG_LIBTOOL_PATHS)) $(PKG_LIBTOOL_PATHS) || true; \
|
2010-12-08 01:15:38 +00:00
|
|
|
fi \
|
|
|
|
);
|
2010-12-04 13:44:43 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
Hooks/InstallDev/Post += libtool_remove_files
|
|
|
|
|
2010-12-04 19:56:47 +00:00
|
|
|
ifneq ($(filter libtool,$(PKG_FIXUP)),)
|
|
|
|
PKG_BUILD_DEPENDS += libtool
|
2010-12-08 02:24:21 +00:00
|
|
|
ifeq ($(filter no-autoreconf,$(PKG_FIXUP)),)
|
2010-12-08 00:54:14 +00:00
|
|
|
Hooks/Configure/Pre += autoreconf
|
2010-12-08 02:24:21 +00:00
|
|
|
endif
|
2010-12-04 19:56:47 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(filter libtool-ucxx,$(PKG_FIXUP)),)
|
|
|
|
PKG_BUILD_DEPENDS += libtool
|
2010-12-08 02:24:21 +00:00
|
|
|
ifeq ($(filter no-autoreconf,$(PKG_FIXUP)),)
|
2010-12-08 00:54:14 +00:00
|
|
|
Hooks/Configure/Pre += autoreconf
|
2010-12-08 02:24:21 +00:00
|
|
|
endif
|
2010-12-04 19:56:47 +00:00
|
|
|
endif
|
2009-06-04 00:20:01 +00:00
|
|
|
|