diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-03-16 20:37:04 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-03-16 20:37:04 +0000 |
commit | f38df5a0afddaea98c313d2985136be8bb599602 (patch) | |
tree | 40031c6396360cc2e272d3c5760b65fe176b3253 /package/base-files | |
parent | 12051a5761a5cdbf335593b78d3886b87c05eefd (diff) | |
download | upstream-f38df5a0afddaea98c313d2985136be8bb599602.tar.gz upstream-f38df5a0afddaea98c313d2985136be8bb599602.tar.bz2 upstream-f38df5a0afddaea98c313d2985136be8bb599602.zip |
package libssp for apps that need it (only enabled for gcc4)
SVN-Revision: 6584
Diffstat (limited to 'package/base-files')
-rw-r--r-- | package/base-files/Makefile | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 30e90453ee..345ae72f9f 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -69,6 +69,16 @@ define Package/libgcc VERSION:=$(LIBGCC_VERSION)-$(PKG_RELEASE) endef +define Package/libssp + SECTION:=libs + CATEGORY:=Base system + DEPENDS:=@!NATIVE_TOOLCHAIN + DEFAULT:=m + TITLE:=GCC support library + URL:=http://gcc.gnu.org/ + VERSION:=$(LIBGCC_VERSION)-$(PKG_RELEASE) +endef + define Package/libpthread SECTION:=libs CATEGORY:=Libraries @@ -140,6 +150,13 @@ define Package/libgcc/install $(CP) $(STAGING_DIR)/lib/libgcc_s.so.* $(1)/lib/ endef +ifeq ($(word 1,$(subst ., ,$(LIBGCC_VERSION))),4) + define Package/libssp/install + $(INSTALL_DIR) $(1)/lib + $(CP) $(STAGING_DIR)/lib/libssp.so.* $(1)/lib/ + endef +endif + define Package/libpthread/install $(INSTALL_DIR) $(1)/lib $(CP) $(STAGING_DIR)/lib/libpthread.so.* $(1)/lib/ @@ -160,7 +177,7 @@ endif $(eval $(call BuildPackage,base-files$(TARGET))) $(eval $(call BuildPackage,libgcc)) +$(eval $(call BuildPackage,libssp)) $(eval $(call BuildPackage,libpthread)) $(eval $(call BuildPackage,uclibc)) - |