summaryrefslogtreecommitdiff
path: root/meta-pkgs/boost/patches/patch-aq
blob: aa187b2bb80f16701ae377871fa859a99f5ebe28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
$NetBSD: patch-aq,v 1.9 2016/10/07 17:51:11 adam Exp $

--- boost/test/impl/execution_monitor.ipp.orig	2016-10-05 08:52:21.000000000 +0000
+++ boost/test/impl/execution_monitor.ipp
@@ -166,7 +166,8 @@ namespace { void _set_se_translator( voi
 #  if defined(SIGPOLL) && !defined(__CYGWIN__)                              && \
       !(defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__))  && \
       !defined(__NetBSD__)                                                  && \
-      !defined(__QNXNTO__)
+      !defined(__QNXNTO__)                                                  && \
+      !defined(__DragonFly__)
 #    define BOOST_TEST_CATCH_SIGPOLL
 #  endif
 
@@ -365,6 +366,7 @@ system_signal_exception::report() const
     if( !m_sig_info )
         return; // no error actually occur?
 
+#if !defined(__DragonFly__)
     switch( m_sig_info->si_code ) {
     case SI_USER:
         report_error( execution_exception::system_error,
@@ -379,14 +381,18 @@ system_signal_exception::report() const
         report_error( execution_exception::system_error,
                       "signal: the expiration of a timer set by timer_settimer()" );
         break;
+#if defined(SI_ASYNCIO)
     case SI_ASYNCIO:
         report_error( execution_exception::system_error,
                       "signal: generated by the completion of an asynchronous I/O request" );
         break;
+#endif
+#if defined(SI_MESGQ)
     case SI_MESGQ:
         report_error( execution_exception::system_error,
                       "signal: generated by the the arrival of a message on an empty message queue" );
         break;
+#endif
     default:
         break;
     }
@@ -605,6 +611,7 @@ system_signal_exception::report() const
         report_error( execution_exception::system_error,
                       "unrecognized signal %d", m_sig_info->si_signo );
     }
+#endif /* !__DragonFly__ */
 }
 
 //____________________________________________________________________________//