Revision: 76869
          http://sourceforge.net/p/brlcad/code/76869
Author:   starseeker
Date:     2020-08-21 15:09:51 +0000 (Fri, 21 Aug 2020)
Log Message:
-----------
Ah!  There we go.  Adding setjmp.h to bomb.c's system headers works.  Should 
already have been coming in from bu/parallel.h though...

Modified Paths:
--------------
    brlcad/trunk/regress/usage.sh
    brlcad/trunk/src/libbu/bomb.c
    brlcad/trunk/src/sig/dauto.c

Modified: brlcad/trunk/regress/usage.sh
===================================================================
--- brlcad/trunk/regress/usage.sh       2020-08-21 15:05:15 UTC (rev 76868)
+++ brlcad/trunk/regress/usage.sh       2020-08-21 15:09:51 UTC (rev 76869)
@@ -78,7 +78,7 @@
 
 exists="`timeout --version 2>&1 | head -1 | awk '{print $1}'`"
 if test "x$exists" != "xtimeout" ; then
-    function timeout() { perl -e 'alarm shift; exec @ARGV' "$@"; }
+    timeout() { perl -e 'alarm shift; exec @ARGV' "$@"; }
 fi
 
 
@@ -92,6 +92,7 @@
 test_usage ( ) {
     cmd=$1
 
+    echo $cmd
     log "=== $cmd === (pid: $$)"
 
     usage="`timeout ${WAIT} $cmd -h -? 2>&1`"

Modified: brlcad/trunk/src/libbu/bomb.c
===================================================================
--- brlcad/trunk/src/libbu/bomb.c       2020-08-21 15:05:15 UTC (rev 76868)
+++ brlcad/trunk/src/libbu/bomb.c       2020-08-21 15:09:51 UTC (rev 76869)
@@ -24,6 +24,7 @@
 #include "bu/exit.h"
 
 /* system headers */
+#include <setjmp.h>
 #include <stdlib.h>
 #include <ctype.h>
 #include <string.h>

Modified: brlcad/trunk/src/sig/dauto.c
===================================================================
--- brlcad/trunk/src/sig/dauto.c        2020-08-21 15:05:15 UTC (rev 76868)
+++ brlcad/trunk/src/sig/dauto.c        2020-08-21 15:09:51 UTC (rev 76869)
@@ -36,10 +36,8 @@
 
 #include "bu/app.h"
 #include "bu/malloc.h"
-#include "bu/parallel.h"
 #include "bu/exit.h"
 
-
 int
 main(int argc, char *argv[])
 {

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to