svn commit: r307220 - head/www/node-devel/files

Jason E. Hale jhale at FreeBSD.org
Fri Nov 9 01:13:52 UTC 2012


Author: jhale
Date: Fri Nov  9 01:13:50 2012
New Revision: 307220
URL: http://svnweb.freebsd.org/changeset/ports/307220

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

Added:
  head/www/node-devel/files/patch-deps__openssl__openssl.gyp   (contents, props changed)

Added: head/www/node-devel/files/patch-deps__openssl__openssl.gyp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/node-devel/files/patch-deps__openssl__openssl.gyp	Fri Nov  9 01:13:50 2012	(r307220)
@@ -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-all mailing list