svn commit: r307277 - branches/RELENG_9_1_0/www/node-devel/files

Jason E. Hale jhale at FreeBSD.org
Sat Nov 10 13:36:37 UTC 2012


Author: jhale
Date: Sat Nov 10 13:36:36 2012
New Revision: 307277
URL: http://svnweb.freebsd.org/changeset/ports/307277

Log:
  MFH r307220
  
  - Fix build with base gcc
  
  Reported by:	pointyhat via beat
  Approved by:	portmgr (tabthorpe)
  		makc, avilla (mentors, implicit)
  Obtained from:	https://github.com/joyent/node/issues/4186
  Feature safe:	yes

Added:
  branches/RELENG_9_1_0/www/node-devel/files/patch-deps__openssl__openssl.gyp
     - copied unchanged from r307220, head/www/node-devel/files/patch-deps__openssl__openssl.gyp
Modified:
Directory Properties:
  branches/RELENG_9_1_0/   (props changed)

Copied: branches/RELENG_9_1_0/www/node-devel/files/patch-deps__openssl__openssl.gyp (from r307220, head/www/node-devel/files/patch-deps__openssl__openssl.gyp)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/RELENG_9_1_0/www/node-devel/files/patch-deps__openssl__openssl.gyp	Sat Nov 10 13:36:36 2012	(r307277, copy of r307220, head/www/node-devel/files/patch-deps__openssl__openssl.gyp)
@@ -0,0 +1,29 @@
+--- ./deps/openssl/openssl.gyp.orig	2012-10-24 12:21:44.000000000 -0400
++++ ./deps/openssl/openssl.gyp	2012-11-08 19:57:39.000000000 -0500
+@@ -3,6 +3,11 @@
+ # found in the LICENSE file.
+ 
+ {
++  'variables': {
++    'is_clang': 0,
++    'gcc_version': 0,
++  },
++
+   'targets': [
+     {
+       'target_name': 'openssl',
+@@ -674,10 +679,10 @@
+             'OPENSSLDIR="/etc/ssl"',
+             'TERMIOS',
+           ],
+-          'cflags': [
+-            '-Wno-missing-field-initializers',
+-            '-Wno-old-style-declaration',
+-          ],
++          'cflags': ['-Wno-missing-field-initializers'],
++        }],
++        ['is_clang==1 or gcc_version>=43', {
++          'cflags': ['-Wno-old-style-declaration'],
+         }],
+         ['OS=="solaris"', {
+           'defines': ['__EXTENSIONS__'],


More information about the svn-ports-branches mailing list