Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Nov 2012 21:01:38 GMT
From:      svn-freebsd-gecko@chruetertee.ch
To:        freebsd-gecko@freebsd.org
Subject:   [SVN-Commit] r1098 - in trunk: . mail/thunderbird-esr www/firefox-esr www/libxul
Message-ID:  <201211192101.qAJL1c4g025080@trillian.chruetertee.ch>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Mon Nov 19 21:01:38 2012
New Revision: 1098

Log:
unbreak -current build

PR:	ports/173679

Modified:
   trunk/Gecko_ChangeLog
   trunk/mail/thunderbird-esr/Makefile
   trunk/www/firefox-esr/Makefile
   trunk/www/libxul/Makefile

Modified: trunk/Gecko_ChangeLog
==============================================================================
--- trunk/Gecko_ChangeLog	Mon Nov 19 21:01:29 2012	(r1097)
+++ trunk/Gecko_ChangeLog	Mon Nov 19 21:01:38 2012	(r1098)
@@ -1,2 +1,5 @@
 17.0:
 - support more h264 codecs when using GSTREAMER with YouTube
+- unbreak build for -esr on -CURRENT after clang became default [1]
+
+PR:	ports/173679 [1]

Modified: trunk/mail/thunderbird-esr/Makefile
==============================================================================
--- trunk/mail/thunderbird-esr/Makefile	Mon Nov 19 21:01:29 2012	(r1097)
+++ trunk/mail/thunderbird-esr/Makefile	Mon Nov 19 21:01:38 2012	(r1098)
@@ -76,7 +76,7 @@
 .endif
 .endif
 
-.if !empty(CXX:M*clang++*)
+.if !empty(CXX:M*clang++*) || (${CXX:Mc++} && ${OSVERSION} > 1000023)
 CFLAGS+=	-Wno-return-type-c-linkage
 .endif
 

Modified: trunk/www/firefox-esr/Makefile
==============================================================================
--- trunk/www/firefox-esr/Makefile	Mon Nov 19 21:01:29 2012	(r1097)
+++ trunk/www/firefox-esr/Makefile	Mon Nov 19 21:01:38 2012	(r1098)
@@ -80,7 +80,7 @@
 		@MOZ_OBJDIR@/_profile/pgo/profileserver.py"
 .endif
 
-.if !empty(CXX:M*clang++*)
+.if !empty(CXX:M*clang++*) || (${CXX:Mc++} && ${OSVERSION} > 1000023)
 CXXFLAGS+=	-Wno-return-type-c-linkage
 .endif
 

Modified: trunk/www/libxul/Makefile
==============================================================================
--- trunk/www/libxul/Makefile	Mon Nov 19 21:01:29 2012	(r1097)
+++ trunk/www/libxul/Makefile	Mon Nov 19 21:01:38 2012	(r1098)
@@ -69,7 +69,7 @@
 .endif
 .endif
 
-.if !empty(CXX:M*clang++*)
+.if !empty(CXX:M*clang++*) || (${CXX:Mc++} && ${OSVERSION} > 1000023)
 CXXFLAGS+=	-Wno-return-type-c-linkage
 .endif
 



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