X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/1ce8862ab409526a36936eb93db4e23ad92e3b79..eacd5dbffae57f6e167b6ef2c288730e2a1175c4:/package/base-files/Makefile diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 30e90453e..0d3d3040b 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -42,7 +42,7 @@ define Package/base-files$(TARGET) VERSION:=$(PKG_RELEASE)-$(REV) $(call Config,network.lan.proto,string,static,LAN Protocol) $(call Config,network.lan.ipaddr,ip,192.168.1.1,LAN IP Address) - $(call Config,network.lan.netmask,netmask,255.255.0.0,LAN Network Mask) + $(call Config,network.lan.netmask,netmask,255.255.255.0,LAN Network Mask) $(call Config,network.lan.gateway,ip,,LAN Gateway) $(call Config,network.lan.dns,ip,,LAN DNS server) endef @@ -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)) -