Import of pkgsrc-2014Q1

This commit is contained in:
2014-04-17 16:38:45 +02:00
parent 785076ae39
commit 9a8c06dafb
19365 changed files with 828089 additions and 278039 deletions

View File

@@ -0,0 +1,17 @@
$NetBSD: patch-Iex_IexBaseExc.cpp,v 1.1 2013/12/26 15:59:27 tron Exp $
Fix build with C compilers other GCC.
--- Iex/IexBaseExc.cpp.orig 2013-10-15 23:55:09.000000000 +0100
+++ Iex/IexBaseExc.cpp 2013-12-26 15:17:54.000000000 +0000
@@ -149,8 +149,10 @@
void
iex_debugTrap()
{
+#ifdef __GNUC__
// how to in Linux?
if (0 != ::getenv("IEXDEBUGTHROW"))
__builtin_trap();
+#endif
}
#endif