mirror of
https://git.freebsd.org/ports.git
synced 2025-07-04 02:49:14 -04:00
ChangeLog: http://nginx.org/en/CHANGES-1.12 Remove IPV6 knob, IPv6 now compiled-in automatically if support is found. Also, remove third-party modules: o) udplog o) statsd Enable third_party mod_zip module back by changing upstream. Upgrade third-party modules: o) lua to 0.10.8 o) upstream_fair to b5be36f (upstream has been changed) o) upload to 72ec037 (upstream has been changed). o) http_auth_krb5 to 0c6ff3f. o) party njs to 0.1.10. Please see this comment in case of the production use of the lua module: https://github.com/openresty/lua-nginx-module/pull/1017#issuecomment-294076002 Patches obtained from: o)0459a285ca
o)d19df15904
17 lines
544 B
C
17 lines
544 B
C
--- ../nginx-goodies-nginx-sticky-module-ng-08a395c66e42/ngx_http_sticky_misc.c.orig 2016-07-10 11:39:07.943834000 -0400
|
|
+++ ../nginx-goodies-nginx-sticky-module-ng-08a395c66e42/ngx_http_sticky_misc.c 2016-07-10 11:43:05.601078000 -0400
|
|
@@ -12,6 +12,14 @@
|
|
|
|
#include "ngx_http_sticky_misc.h"
|
|
|
|
+#ifndef MD5_DIGEST_LENGTH
|
|
+ #define MD5_DIGEST_LENGTH 16
|
|
+#endif
|
|
+#ifndef MD5_CBLOCK
|
|
+ #define MD5_CBLOCK 64
|
|
+#endif
|
|
+
|
|
+
|
|
#ifndef ngx_str_set
|
|
#define ngx_str_set(str, text) (str)->len = sizeof(text) - 1; (str)->data = (u_char *) text
|
|
#endif
|