From 56d03280f0eb633e2ce497f2b41efa7ac6a3614d Mon Sep 17 00:00:00 2001
From: Ian Lynagh <ian@well-typed.com>
Date: Thu, 17 Jan 2013 21:54:06 +0000
Subject: [PATCH] Expose genericRaise; fixes signals004(dyn) no OS X 32

---
 includes/rts/Utils.h | 3 +++
 rts/RtsUtils.h       | 3 ---
 validate             | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/includes/rts/Utils.h b/includes/rts/Utils.h
index 1258f6daa34b..1cb52ae83fdc 100644
--- a/includes/rts/Utils.h
+++ b/includes/rts/Utils.h
@@ -18,4 +18,7 @@
 HsInt genSymZh(void);
 HsInt resetGenSymZh(void);
 
+/* Alternate to raise(3) for threaded rts, for BSD-based OSes */
+int genericRaise(int sig);
+
 #endif /* RTS_UTILS_H */
diff --git a/rts/RtsUtils.h b/rts/RtsUtils.h
index b57112682816..5d825a2118e1 100644
--- a/rts/RtsUtils.h
+++ b/rts/RtsUtils.h
@@ -43,9 +43,6 @@ void heapCheckFail( void );
 
 void printRtsInfo(void);
 
-/* Alternate to raise(3) for threaded rts, for OpenBSD */
-int genericRaise(int sig);
-
 void checkFPUStack(void);
 
 #include "EndPrivate.h"
diff --git a/validate b/validate
index 7db30fb3bf0f..ecd8067d6b09 100755
--- a/validate
+++ b/validate
@@ -160,7 +160,7 @@ SLOW)
         BINDIST="BINDIST=YES"
         ;;
 NORMAL)
-        MAKE_TEST_TARGET=test
+        MAKE_TEST_TARGET=fulltest
         BINDIST="BINDIST=YES"
         ;;
 FAST)
-- 
GitLab