Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Feb 2016 12:48:56 +0000 (UTC)
From:      "Sergey A. Osokin" <osa@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r408723 - head/www/nginx-devel/files
Message-ID:  <201602121248.u1CCmuEK084795@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602121248.u1CCmuEK084795>