Author: jow Date: 2015-01-25 18:59:08 +0100 (Sun, 25 Jan 2015) New Revision: 44138
Modified: trunk/package/network/services/uhttpd/Makefile Log: uhttpd: fix time_t type mismatch on 32bit systems The previous update introducing LFS support unconditionally changed the sprintf() pattern used to print the file modification time to use PRIx64. Explicitely convert the st_mtime member of the stat struct to uint64_t in order to avoid type mismatch errors when building for non-64bit targets. Signed-off-by: Jo-Philipp Wich <[email protected]> Modified: trunk/package/network/services/uhttpd/Makefile =================================================================== --- trunk/package/network/services/uhttpd/Makefile 2015-01-25 17:29:41 UTC (rev 44137) +++ trunk/package/network/services/uhttpd/Makefile 2015-01-25 17:59:08 UTC (rev 44138) @@ -8,13 +8,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=uhttpd -PKG_VERSION:=2015-01-25 +PKG_VERSION:=2015-01-25.1 PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=git://nbd.name/uhttpd2.git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE_VERSION:=7352ec423fb99a7970b0765287503abee05a56cd +PKG_SOURCE_VERSION:=d404cd06b657cdcd97555362abec7966e339fd6d PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_MAINTAINER:=Felix Fietkau <[email protected]> PKG_LICENSE:=ISC _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
