Browse Source

Merge pull request #4379 from val-kulkov/nginx-package

nginx: update to 1.12.0, the latest stable version
lilik-openwrt-22.03
Thomas Heil 8 years ago
committed by GitHub
parent
commit
d1d28ed9de
2 changed files with 4 additions and 3 deletions
  1. +3
    -2
      net/nginx/Makefile
  2. +1
    -1
      net/nginx/patches/102-sizeof_test_fix.patch

+ 3
- 2
net/nginx/Makefile View File

@ -8,12 +8,13 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=nginx
PKG_VERSION:=1.10.3
PKG_VERSION:=1.12.0
PKG_RELEASE:=1
PKG_SOURCE:=nginx-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://nginx.org/download/
PKG_MD5SUM:=204a20cb4f0b0c9db746c630d89ff4ea
PKG_HASH:=b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30
PKG_MD5SUM:=995eb0a140455cf0cfc497e5bd7f94b3
PKG_MAINTAINER:=Thomas Heil <heil@terminal-consulting.de>
PKG_LICENSE:=2-clause BSD-like license


+ 1
- 1
net/nginx/patches/102-sizeof_test_fix.patch View File

@ -10,7 +10,7 @@
+ 'Y', '3', 'p', 'M', '\n'
+};
+
int main() {
int main(void) {
- printf("%d", (int) sizeof($ngx_type));
+ printf("dummy use of object_code_block to avoid gc-section: %c", object_code_block[0]);
return 0;


Loading…
Cancel
Save