squashfs4: fix build breakage
[openwrt/svn-archive/archive.git] / include / autotools.mk
1 #
2 # Copyright (C) 2007-2009 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 # replace copies of ltmain.sh with the build system's version
17 update_libtool_common=$(call replace,ltmain.sh,$(STAGING_DIR)/host/share/libtool,$(CONFIGURE_PATH)/)$(call replace,libtool.m4,$(STAGING_DIR)/host/share/aclocal,$(CONFIGURE_PATH)/)
18 update_libtool=$(call replace,libtool,$(STAGING_DIR)/host/bin,$(CONFIGURE_PATH)/)$(call update_libtool_common)
19 update_libtool_ucxx=$(call replace,libtool,$(STAGING_DIR)/host/bin,$(CONFIGURE_PATH)/,libtool-ucxx)$(call update_libtool_common)
20
21
22 # prevent libtool from linking against host development libraries
23 define libtool_fixup_libdir
24 find $(1) -name '*.la' | $(XARGS) \
25 $(SED) "s,\(^libdir='\| \|-L\|^dependency_libs='\)/usr/lib,\1$(STAGING_DIR)/usr/lib,g"
26 find $(2) -name '*.la' | $(XARGS) \
27 $(SED) "s,\(^libdir='\| \|-L\|^dependency_libs='\)/usr/lib,\1$(STAGING_DIR)/usr/lib,g"
28 endef
29
30 define remove_version_check
31 if [ -f "$(PKG_BUILD_DIR)/$(CONFIGURE_PATH)/configure" ]; then \
32 $(SED) \
33 's,pardus_ltmain_version=.*,pardus_ltmain_version="$$$$pardus_lt_version",' \
34 $(PKG_BUILD_DIR)/$(CONFIGURE_PATH)/configure; \
35 fi
36 endef
37
38 ifneq ($(filter libtool,$(PKG_FIXUP)),)
39 PKG_BUILD_DEPENDS += libtool
40 Hooks/Configure/Pre += update_libtool remove_version_check
41 Hooks/Configure/Post += update_libtool
42 Hooks/InstallDev/Post += libtool_fixup_libdir
43 endif
44
45 ifneq ($(filter libtool-ucxx,$(PKG_FIXUP)),)
46 PKG_BUILD_DEPENDS += libtool
47 Hooks/Configure/Pre += update_libtool_ucxx remove_version_check
48 Hooks/Configure/Post += update_libtool_ucxx
49 Hooks/InstallDev/Post += libtool_fixup_libdir
50 endif
51