svn commit: r408723 - head/www/nginx-devel/files

Sergey A. Osokin osa at FreeBSD.org
Fri Feb 12 12:48:57 UTC 2016


Author: osa
Date: Fri Feb 12 12:48:56 2016
New Revision: 408723
URL: https://svnweb.freebsd.org/changeset/ports/408723

Log:
  Add vendor's patch.
  
  <ChangeLog>
  
  Changes to NGX_MODULE_V1 and ngx_module_t in 85dea406e18f (1.9.11)
  broke all modules written in C++, because ISO C++11 does not allow
  conversion from string literal to char *.
  
  </ChangeLog>

Added:
  head/www/nginx-devel/files/patch-src-core-ngx_module.h   (contents, props changed)

Added: head/www/nginx-devel/files/patch-src-core-ngx_module.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/nginx-devel/files/patch-src-core-ngx_module.h	Fri Feb 12 12:48:56 2016	(r408723)
@@ -0,0 +1,11 @@
+--- src/core/ngx_module.h.orig	2016-02-10 19:26:57.903123000 -0500
++++ src/core/ngx_module.h	2016-02-10 19:27:40.978113000 -0500
+@@ -253,7 +253,7 @@
+     ngx_uint_t            spare1;
+ 
+     ngx_uint_t            version;
+-    char                 *signature;
++    const char           *signature;
+ 
+     void                 *ctx;
+     ngx_command_t        *commands;


More information about the svn-ports-all mailing list