2 # Copyright (C) 2007-2010 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 autoconf_bool = $(patsubst %,$(if $($(1)),--enable,--disable)-%,$(2))
10 # delete *.la-files from staging_dir - we can not yet remove respective lines within all package
11 # Makefiles, since backfire still uses libtool v1.5.x which (may) require those files
12 define libtool_remove_files
13 find $(1) -name '*.la' | $(XARGS) rm -f;
18 AUTOM4TE=$(STAGING_DIR_HOST)/bin/autom4te \
19 AUTOCONF=$(STAGING_DIR_HOST)/bin/autoconf \
20 AUTOMAKE=$(STAGING_DIR_HOST)/bin/automake \
21 ACLOCAL=$(STAGING_DIR_HOST)/bin/aclocal \
22 AUTOHEADER=$(STAGING_DIR_HOST)/bin/autoheader \
23 LIBTOOLIZE=$(STAGING_DIR_HOST)/bin/libtoolize \
24 M4=$(STAGING_DIR_HOST)/bin/m4
33 $(patsubst %,rm -f %;,$(2)) \
35 if [ -f $(p)/configure.ac ] || [ -f $(p)/configure.in ]; then \
36 [ -f $(p)/aclocal.m4 ] && [ ! -f $(p)/acinclude.m4 ] && mv aclocal.m4 acinclude.m4; \
37 [ -d $(p)/autom4te.cache ] && rm -rf autom4te.cache; \
38 $(AM_TOOL_PATHS) $(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \
39 -B $(STAGING_DIR_HOST)/share/aclocal \
40 $(patsubst %,-B %,$(5)) \
41 $(patsubst %,-I %,$(4)) -I m4 $(4) || true; \
48 PKG_LIBTOOL_PATHS?=$(CONFIGURE_PATH)
49 PKG_AUTOMAKE_PATHS?=$(CONFIGURE_PATH)
50 PKG_REMOVE_FILES?=aclocal.m4
52 Hooks/InstallDev/Post += libtool_remove_files
54 define autoreconf_target
55 $(strip $(call autoreconf, \
56 $(PKG_BUILD_DIR), $(PKG_REMOVE_FILES), \
57 $(PKG_AUTOMAKE_PATHS), $(PKG_LIBTOOL_PATHS), \
58 $(STAGING_DIR)/host/share/aclocal $(STAGING_DIR)/usr/share/aclocal))
61 ifneq ($(filter libtool,$(PKG_FIXUP)),)
62 PKG_BUILD_DEPENDS += libtool
63 ifeq ($(filter no-autoreconf,$(PKG_FIXUP)),)
64 Hooks/Configure/Pre += autoreconf_target
68 ifneq ($(filter libtool-ucxx,$(PKG_FIXUP)),)
69 PKG_BUILD_DEPENDS += libtool
70 ifeq ($(filter no-autoreconf,$(PKG_FIXUP)),)
71 Hooks/Configure/Pre += autoreconf_target
75 ifneq ($(filter autoreconf,$(PKG_FIXUP)),)
76 ifeq ($(filter autoreconf,$(Hooks/Configure/Pre)),)
77 Hooks/Configure/Pre += autoreconf_target
82 HOST_FIXUP?=$(PKG_FIXUP)
83 HOST_LIBTOOL_PATHS?=$(if $(PKG_LIBTOOL_PATHS),$(PKG_LIBTOOL_PATHS),.)
84 HOST_AUTOMAKE_PATHS?=$(if $(PKG_AUTOMAKE_PATHS),$(PKG_AUTOMAKE_PATHS),.)
85 HOST_REMOVE_FILES?=$(PKG_REMOVE_FILES)
87 define autoreconf_host
88 $(strip $(call autoreconf, \
89 $(HOST_BUILD_DIR), $(HOST_REMOVE_FILES), \
90 $(HOST_AUTOMAKE_PATHS), $(HOST_LIBTOOL_PATHS)))
93 ifneq ($(filter libtool,$(HOST_FIXUP)),)
94 HOST_BUILD_DEPENDS += libtool
95 ifeq ($(filter no-autoreconf,$(HOST_FIXUP)),)
96 Hooks/HostConfigure/Pre += autoreconf_host
100 ifneq ($(filter libtool-ucxx,$(HOST_FIXUP)),)
101 HOST_BUILD_DEPENDS += libtool
102 ifeq ($(filter no-autoreconf,$(HOST_FIXUP)),)
103 Hooks/HostConfigure/Pre += autoreconf_host
107 ifneq ($(filter autoreconf,$(HOST_FIXUP)),)
108 ifeq ($(filter autoreconf,$(Hooks/HostConfigure/Pre)),)
109 Hooks/HostConfigure/Pre += autoreconf_host