diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-06-11 08:28:31 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2021-06-11 08:32:03 +0200 |
commit | d1fc11d852262bacb650a49782dbce0c8cbd572a (patch) | |
tree | 7c39bc0843d52f4f304e41685d89125ec64ed23c /contrib/package/lucihttp/Makefile | |
parent | 113c0b0d26b2f60c38a605732ce4c0fb3bdfc7dc (diff) |
lucihttp: update to latest Git HEAD
Fixes compilation under 32bit systems by using the proper printf format
specifier for size_t values.
Also fixes compilation with Ninja by appending instead of
overwriting CMAKE_OPTIONS.
Fixes: #5116
Suggested-by: Rosen Penev <rosenp@gmail.com>
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'contrib/package/lucihttp/Makefile')
-rw-r--r-- | contrib/package/lucihttp/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/package/lucihttp/Makefile b/contrib/package/lucihttp/Makefile index a1b740deed..e0deae10f3 100644 --- a/contrib/package/lucihttp/Makefile +++ b/contrib/package/lucihttp/Makefile @@ -5,9 +5,9 @@ PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL=https://github.com/jow-/lucihttp.git -PKG_SOURCE_DATE:=2019-07-05 -PKG_SOURCE_VERSION:=a34a17d501c0e23f0a91dd9d3e87697347c861ba -PKG_MIRROR_HASH:=f08b526515b4a654e5529457da9d0676696170846288c55863dba087417a0483 +PKG_SOURCE_DATE:=2021-06-11 +PKG_SOURCE_VERSION:=3dc89af443410c9eae7a0ff091bd7fb4c5d48f41 +PKG_MIRROR_HASH:=6024a34c514a7231bcc36486abfb3e43e6c17490ac8d838f202a43ce259cda03 CMAKE_INSTALL:=1 PKG_LICENSE:=ISC @@ -35,7 +35,7 @@ endef TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include -CMAKE_OPTIONS = \ +CMAKE_OPTIONS += \ -DLUAPATH=/usr/lib/lua \ -DBUILD_LUA=$(if $(CONFIG_PACKAGE_liblucihttp-lua),ON,OFF) \ -DBUILD_TESTS=OFF |