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-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
|
|
|
|
|
2010-12-15 08:19:08 +08:00
|
|
|
|
|
|
|
AM_TOOL_PATHS:= \
|
|
|
|
AUTOM4TE=$(STAGING_DIR_HOST)/bin/autom4te \
|
|
|
|
AUTOCONF=$(STAGING_DIR_HOST)/bin/autoconf \
|
|
|
|
AUTOMAKE=$(STAGING_DIR_HOST)/bin/automake \
|
|
|
|
ACLOCAL=$(STAGING_DIR_HOST)/bin/aclocal \
|
|
|
|
AUTOHEADER=$(STAGING_DIR_HOST)/bin/autoheader \
|
|
|
|
LIBTOOLIZE=$(STAGING_DIR_HOST)/bin/libtoolize \
|
|
|
|
M4=$(STAGING_DIR_HOST)/bin/m4
|
|
|
|
|
2010-12-14 03:04:33 +08:00
|
|
|
# 1: build dir
|
|
|
|
# 2: remove files
|
|
|
|
# 3: automake paths
|
|
|
|
# 4: libtool paths
|
|
|
|
# 5: extra m4 dirs
|
2010-12-08 08:54:14 +08:00
|
|
|
define autoreconf
|
2010-12-14 03:04:33 +08:00
|
|
|
(cd $(1); \
|
|
|
|
$(patsubst %,rm -f %;,$(2)) \
|
|
|
|
$(foreach p,$(3), \
|
2010-12-13 09:44:28 +08:00
|
|
|
if [ -x $(p)/autogen.sh ]; then \
|
2010-12-15 08:19:08 +08:00
|
|
|
$(AM_TOOL_PATHS) $(p)/autogen.sh || true; \
|
2010-12-13 09:44:28 +08:00
|
|
|
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; \
|
2010-12-15 08:19:08 +08:00
|
|
|
$(AM_TOOL_PATHS) $(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \
|
2010-12-13 09:44:28 +08:00
|
|
|
-B $(STAGING_DIR_HOST)/share/aclocal \
|
2010-12-14 03:04:33 +08:00
|
|
|
$(patsubst %,-B %,$(5)) \
|
|
|
|
$(patsubst %,-I %,$(4)) $(4) || true; \
|
2010-12-13 09:44:28 +08:00
|
|
|
fi; \
|
|
|
|
) \
|
2010-12-08 09:15:38 +08:00
|
|
|
);
|
2010-12-04 21:44:43 +08:00
|
|
|
endef
|
|
|
|
|
2010-12-14 03:04:33 +08:00
|
|
|
|
|
|
|
PKG_LIBTOOL_PATHS?=$(CONFIGURE_PATH)
|
|
|
|
PKG_AUTOMAKE_PATHS?=$(CONFIGURE_PATH)
|
|
|
|
PKG_REMOVE_FILES?=aclocal.m4
|
|
|
|
|
2010-12-04 21:44:43 +08:00
|
|
|
Hooks/InstallDev/Post += libtool_remove_files
|
|
|
|
|
2010-12-14 03:04:33 +08:00
|
|
|
define autoreconf_target
|
|
|
|
$(strip $(call autoreconf, \
|
|
|
|
$(PKG_BUILD_DIR), $(PKG_REMOVE_FILES), \
|
|
|
|
$(PKG_AUTOMAKE_PATHS), $(PKG_LIBTOOL_PATHS), \
|
|
|
|
$(STAGING_DIR)/host/share/aclocal $(STAGING_DIR)/usr/share/aclocal))
|
|
|
|
endef
|
|
|
|
|
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-14 03:04:33 +08:00
|
|
|
Hooks/Configure/Pre += autoreconf_target
|
2010-12-08 10:24:21 +08:00
|
|
|
endif
|
2010-12-05 03:56:47 +08:00
|
|
|
endif
|
2010-12-14 03:04:33 +08:00
|
|
|
|
2010-12-05 03:56:47 +08:00
|
|
|
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-14 03:04:33 +08:00
|
|
|
Hooks/Configure/Pre += autoreconf_target
|
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)),)
|
2010-12-14 03:04:33 +08:00
|
|
|
Hooks/Configure/Pre += autoreconf_target
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
HOST_FIXUP?=$(PKG_FIXUP)
|
|
|
|
HOST_LIBTOOL_PATHS?=$(if $(PKG_LIBTOOL_PATHS),$(PKG_LIBTOOL_PATHS),.)
|
|
|
|
HOST_AUTOMAKE_PATHS?=$(if $(PKG_AUTOMAKE_PATHS),$(PKG_AUTOMAKE_PATHS),.)
|
|
|
|
HOST_REMOVE_FILES?=$(PKG_REMOVE_FILES)
|
|
|
|
|
|
|
|
define autoreconf_host
|
|
|
|
$(strip $(call autoreconf, \
|
|
|
|
$(HOST_BUILD_DIR), $(HOST_REMOVE_FILES), \
|
|
|
|
$(HOST_AUTOMAKE_PATHS), $(HOST_LIBTOOL_PATHS)))
|
|
|
|
endef
|
|
|
|
|
|
|
|
ifneq ($(filter libtool,$(HOST_FIXUP)),)
|
|
|
|
HOST_BUILD_DEPENDS += libtool
|
|
|
|
ifeq ($(filter no-autoreconf,$(HOST_FIXUP)),)
|
|
|
|
Hooks/HostConfigure/Pre += autoreconf_host
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(filter libtool-ucxx,$(HOST_FIXUP)),)
|
|
|
|
HOST_BUILD_DEPENDS += libtool
|
|
|
|
ifeq ($(filter no-autoreconf,$(HOST_FIXUP)),)
|
|
|
|
Hooks/HostConfigure/Pre += autoreconf_host
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(filter autoreconf,$(HOST_FIXUP)),)
|
|
|
|
ifeq ($(filter autoreconf,$(Hooks/HostConfigure/Pre)),)
|
|
|
|
Hooks/HostConfigure/Pre += autoreconf_host
|
2010-12-10 23:20:51 +08:00
|
|
|
endif
|
|
|
|
endif
|