[SVN-Commit] r955 - in branches/experimental: mail/thunderbird www/seamonkey www/seamonkey/files

svn-freebsd-gecko at chruetertee.ch svn-freebsd-gecko at chruetertee.ch
Tue Aug 28 15:24:34 UTC 2012


Author: jbeich
Date: Tue Aug 28 15:24:27 2012
New Revision: 955

Log:
remove clang workaround for gecko15 after r949

Added:
   branches/experimental/www/seamonkey/files/patch-configure.in
Modified:
   branches/experimental/mail/thunderbird/Makefile
   branches/experimental/www/seamonkey/Makefile

Modified: branches/experimental/mail/thunderbird/Makefile
==============================================================================
--- branches/experimental/mail/thunderbird/Makefile	Tue Aug 28 15:24:19 2012	(r954)
+++ branches/experimental/mail/thunderbird/Makefile	Tue Aug 28 15:24:27 2012	(r955)
@@ -75,10 +75,6 @@
 BUILD_DEPENDS+=	yasm:${PORTSDIR}/devel/yasm
 .endif
 
-.if !empty(CXX:M*clang++*)
-CFLAGS+=	-Wno-return-type-c-linkage
-.endif
-
 .if ${PORT_OPTIONS:MLIGHTNING}
 MOZ_OPTIONS+=	--enable-calendar
 MOZ_MK_OPTIONS+=	MOZ_CO_PROJECT=calendar

Modified: branches/experimental/www/seamonkey/Makefile
==============================================================================
--- branches/experimental/www/seamonkey/Makefile	Tue Aug 28 15:24:19 2012	(r954)
+++ branches/experimental/www/seamonkey/Makefile	Tue Aug 28 15:24:27 2012	(r955)
@@ -95,10 +95,6 @@
 BUILD_DEPENDS+=	yasm:${PORTSDIR}/devel/yasm
 .endif
 
-.if !empty(CXX:M*clang++*)
-CFLAGS+=	-Wno-return-type-c-linkage
-.endif
-
 .if ${PORT_OPTIONS:MLIGHTNING}
 MOZ_OPTIONS+=	--enable-calendar
 MOZ_MK_OPTIONS+=	MOZ_CO_PROJECT=calendar

Added: branches/experimental/www/seamonkey/files/patch-configure.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/experimental/www/seamonkey/files/patch-configure.in	Tue Aug 28 15:24:27 2012	(r955)
@@ -0,0 +1,49 @@
+--- configure.in.orig	2012-07-14 00:40:08.000000000 +0200
++++ configure.in	2012-08-18 18:16:06.000000000 +0200
+@@ -3101,6 +3118,8 @@
+ 
+ AC_SUBST(VISIBILITY_FLAGS)
+ 
++MOZ_COMPILER_OPTS
++
+ dnl Checks for header files.
+ dnl ========================================================
+ AC_HEADER_DIRENT
+@@ -4067,29 +4086,29 @@
+ 
+ AC_CACHE_CHECK(for __attribute__((always_inline)),
+                ac_cv_attribute_always_inline,
+-               [AC_TRY_COMPILE([],
+-                               [inline void f(void) __attribute__((always_inline));],
++               [AC_TRY_COMPILE([inline void f(void) __attribute__((always_inline));],
++                               [],
+                                ac_cv_attribute_always_inline=yes,
+                                ac_cv_attribute_always_inline=no)])
+ 
+ AC_CACHE_CHECK(for __attribute__((malloc)),
+                ac_cv_attribute_malloc,
+-               [AC_TRY_COMPILE([],
+-                               [void* f(int) __attribute__((malloc));],
++               [AC_TRY_COMPILE([void* f(int) __attribute__((malloc));],
++                               [],
+                                ac_cv_attribute_malloc=yes,
+                                ac_cv_attribute_malloc=no)])
+ 
+ AC_CACHE_CHECK(for __attribute__((warn_unused_result)),
+                ac_cv_attribute_warn_unused,
+-               [AC_TRY_COMPILE([],
+-                               [int f(void) __attribute__((warn_unused_result));],
++               [AC_TRY_COMPILE([int f(void) __attribute__((warn_unused_result));],
++                               [],
+                                ac_cv_attribute_warn_unused=yes,
+                                ac_cv_attribute_warn_unused=no)])
+ 
+ AC_CACHE_CHECK(for __attribute__((noreturn)),
+                ac_cv_attribute_noreturn,
+-               [AC_TRY_COMPILE([],
+-                               [void f(void) __attribute__((noreturn));],
++               [AC_TRY_COMPILE([void f(void) __attribute__((noreturn));],
++                               [],
+                                ac_cv_attribute_noreturn=yes,
+                                ac_cv_attribute_noreturn=no)])
+ 


More information about the freebsd-gecko mailing list