prevent kernel.mk from defining PATCH_DIR and FILES_DIR for regular packages
[openwrt-10.03/.git] / include / autotools.mk
1 #
2 # Copyright (C) 2007-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 define replace
9         if [ -f "$(PKG_BUILD_DIR)/$(3)$(1)" -a -e "$(2)/$(if $(4),$(4),$(1))" ]; then \
10                 rm -f $(PKG_BUILD_DIR)/$(3)$(1); \
11                 ln -s $(2)/$(if $(4),$(4),$(1)) $(PKG_BUILD_DIR)/$(3)$(1); \
12         fi
13         
14 endef
15
16 PKG_LIBTOOL_PATHS?=$(CONFIGURE_PATH)
17
18 # replace copies of ltmain.sh with the build system's version
19 update_libtool_common = \
20         $(foreach p,$(LIBTOOL_PATHS), \
21                 $(call replace,ltmain.sh,$(STAGING_DIR)/host/share/libtool,$(p)/) \
22                 $(call replace,libtool.m4,$(STAGING_DIR)/host/share/aclocal,$(p)/) \
23         )
24 update_libtool = \
25         $(foreach p,$(PKG_LIBTOOL_PATHS), \
26                 $(call replace,libtool,$(STAGING_DIR)/host/bin,$(p)/) \
27         ) \
28         $(call update_libtool_common)
29 update_libtool_ucxx = \
30         $(foreach p,$(PKG_LIBTOOL_PATHS), \
31                 $(call replace,libtool,$(STAGING_DIR)/host/bin,$(p)/,libtool-ucxx) \
32         ) \
33         $(call update_libtool_common)
34
35
36 # prevent libtool from linking against host development libraries
37 define libtool_fixup_libdir
38         find $(1) -name '*.la' | $(XARGS) \
39                 $(SED) "s,\(^libdir='\| \|-L\|^dependency_libs='\)/usr/lib,\1$(STAGING_DIR)/usr/lib,g" \
40                     -e "s,$(STAGING_DIR)/usr/lib/\(libstdc++\|libsupc++\).la,$(TOOLCHAIN_DIR)/usr/lib/\1.la,g"
41 endef
42
43 define remove_version_check
44         if [ -f "$(PKG_BUILD_DIR)/$(CONFIGURE_PATH)/configure" ]; then \
45                 $(SED) \
46                         's,\(gentoo\|pardus\)_ltmain_version=.*,\1_ltmain_version="$$$$\1_lt_version",' \
47                         $(PKG_BUILD_DIR)/$(CONFIGURE_PATH)/configure; \
48         fi
49 endef
50
51 ifneq ($(filter libtool,$(PKG_FIXUP)),)
52   PKG_BUILD_DEPENDS += libtool
53   Hooks/Configure/Pre += update_libtool remove_version_check
54   Hooks/Configure/Post += update_libtool
55   Hooks/InstallDev/Post += libtool_fixup_libdir
56 endif
57
58 ifneq ($(filter libtool-ucxx,$(PKG_FIXUP)),)
59   PKG_BUILD_DEPENDS += libtool
60   Hooks/Configure/Pre += update_libtool_ucxx remove_version_check
61   Hooks/Configure/Post += update_libtool_ucxx
62   Hooks/InstallDev/Post += libtool_fixup_libdir
63 endif
64