summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorPale Moon <git-repo@palemoon.org>2015-12-09 15:21:44 +0100
committerPale Moon <git-repo@palemoon.org>2015-12-09 15:21:44 +0100
commitd7d37a9b9208410277422303f8ea2698628d380c (patch)
tree93dbee85ddaa4a9d24a55967a9cae210ccb04d7b /build
parent66309378de09c4c2478dad45613c6ef17b06f469 (diff)
downloadpalemoon-gre-d7d37a9b9208410277422303f8ea2698628d380c.tar.gz
Remove locked conflict files.
Diffstat (limited to 'build')
-rw-r--r--build/autoconf/gcc-pr39608.m437
1 files changed, 0 insertions, 37 deletions
diff --git a/build/autoconf/gcc-pr39608.m4 b/build/autoconf/gcc-pr39608.m4
deleted file mode 100644
index 540dd7a51..000000000
--- a/build/autoconf/gcc-pr39608.m4
+++ /dev/null
@@ -1,37 +0,0 @@
-dnl This Source Code Form is subject to the terms of the Mozilla Public
-dnl License, v. 2.0. If a copy of the MPL was not distributed with this
-dnl file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-dnl Check if the compiler is gcc and has pr39608. If so
-dnl disable vrp.
-
-AC_DEFUN([MOZ_GCC_PR39608],
-[
-AC_MSG_CHECKING(for gcc pr39608)
-ac_have_gcc_pr39608="yes"
-AC_LANG_SAVE
-AC_LANG_CPLUSPLUS
-
-AC_TRY_COMPILE([
-typedef void (*FuncType)();
-template<FuncType Impl>
-void f();
-template<typename T> class C {
- typedef C<T> ThisC;
- template<int g()>
- static void h() {
- f<ThisC::h<g> >();
- }
-};
-], true,
- ac_have_gcc_pr39608="no",
- true)
-
-AC_LANG_RESTORE
-
-AC_MSG_RESULT($ac_have_gcc_pr39608)
-if test "$ac_have_gcc_pr39608" = "yes"; then
- echo This compiler would fail to build Pale Moon, please upgrade.
- exit 1
-fi
-])