2008-09-13 08:29:13 +08:00
|
|
|
#
|
2010-02-19 07:50:44 +08:00
|
|
|
# Copyright (C) 2007-2010 OpenWrt.org
|
2007-12-27 10:11:07 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2010-02-19 07:50:44 +08:00
|
|
|
PKG_LIBTOOL_PATHS?=$(CONFIGURE_PATH)
|
2010-12-13 09:44:28 +08:00
|
|
|
PKG_AUTOMAKE_PATHS?=$(CONFIGURE_PATH)
|
2010-12-11 06:59:07 +08:00
|
|
|
PKG_REMOVE_FILES?=aclocal.m4
|
2010-02-19 07:50:44 +08:00
|
|
|
|
2010-03-29 11:38:40 +08:00
|
|
|
autoconf_bool = $(patsubst %,$(if $($(1)),--enable,--disable)-%,$(2))
|
2007-12-27 10:11:07 +08:00
|
|
|
|
2010-12-04 21:44:43 +08: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 08:54:14 +08:00
|
|
|
find $(1) -name '*.la' | $(XARGS) rm -f;
|
|
|
|
endef
|
|
|
|
|
|
|
|
define autoreconf
|
2010-12-08 09:15:38 +08:00
|
|
|
(cd $(PKG_BUILD_DIR); \
|
2010-12-08 23:55:05 +08:00
|
|
|
$(patsubst %,rm -f %;,$(PKG_REMOVE_FILES)) \
|
2010-12-13 09:44:28 +08:00
|
|
|
$(foreach p,$(PKG_AUTOMAKE_PATHS), \
|
|
|
|
if [ -x $(p)/autogen.sh ]; then \
|
|
|
|
$(p)/autogen.sh || true; \
|
|
|
|
elif [ -f $(p)/configure.ac ] || [ -f $(p)/configure.in ]; then \
|
|
|
|
[ -f $(p)/aclocal.m4 ] && [ ! -f $(p)/acinclude.m4 ] && mv aclocal.m4 acinclude.m4; \
|
|
|
|
[ -d $(p)/autom4te.cache ] && rm -rf autom4te.cache; \
|
|
|
|
$(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \
|
|
|
|
-B $(STAGING_DIR_HOST)/share/aclocal \
|
|
|
|
-B $(STAGING_DIR)/host/share/aclocal \
|
2010-12-14 00:05:53 +08:00
|
|
|
-B $(STAGING_DIR)/usr/share/aclocal \
|
2010-12-13 09:44:28 +08:00
|
|
|
$(patsubst %,-I %,$(PKG_LIBTOOL_PATHS)) $(PKG_LIBTOOL_PATHS) || true; \
|
|
|
|
fi; \
|
|
|
|
) \
|
2010-12-08 09:15:38 +08:00
|
|
|
);
|
2010-12-04 21:44:43 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
Hooks/InstallDev/Post += libtool_remove_files
|
|
|
|
|
2010-12-05 03:56:47 +08:00
|
|
|
ifneq ($(filter libtool,$(PKG_FIXUP)),)
|
|
|
|
PKG_BUILD_DEPENDS += libtool
|
2010-12-08 10:24:21 +08:00
|
|
|
ifeq ($(filter no-autoreconf,$(PKG_FIXUP)),)
|
2010-12-08 08:54:14 +08:00
|
|
|
Hooks/Configure/Pre += autoreconf
|
2010-12-08 10:24:21 +08:00
|
|
|
endif
|
2010-12-05 03:56:47 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(filter libtool-ucxx,$(PKG_FIXUP)),)
|
|
|
|
PKG_BUILD_DEPENDS += libtool
|
2010-12-08 10:24:21 +08:00
|
|
|
ifeq ($(filter no-autoreconf,$(PKG_FIXUP)),)
|
2010-12-08 08:54:14 +08:00
|
|
|
Hooks/Configure/Pre += autoreconf
|
2010-12-08 10:24:21 +08:00
|
|
|
endif
|
2010-12-05 03:56:47 +08:00
|
|
|
endif
|
2009-06-04 08:20:01 +08:00
|
|
|
|
2010-12-10 23:20:51 +08:00
|
|
|
ifneq ($(filter autoreconf,$(PKG_FIXUP)),)
|
|
|
|
ifeq ($(filter autoreconf,$(Hooks/Configure/Pre)),)
|
|
|
|
Hooks/Configure/Pre += autoreconf
|
|
|
|
endif
|
|
|
|
endif
|