]> err.no Git - moreutils/commitdiff
parallel: Define WEXITED to allow building on FreeBSD kernel. (This is somewhat exper...
authorJoey Hess <joey@gnu.kitenet.net>
Tue, 9 Feb 2010 20:40:14 +0000 (15:40 -0500)
committerJoey Hess <joey@gnu.kitenet.net>
Tue, 9 Feb 2010 20:40:14 +0000 (15:40 -0500)
debian/changelog
parallel.c

index 5d06af3d5126b4db6cb0558bf811a24a9f419d56..d0d4fc866fe04292505a1f7f5e64b2d61d1abacf 100644 (file)
@@ -6,6 +6,8 @@ moreutils (0.38) UNRELEASED; urgency=low
     like `parallel -j3 -- ls df "echo hi"`
   * ifdata: Add FreeBSD kernel support, although some of the more esoteric
     interface options are not currently supported in FreeBSD.
+  * parallel: Define WEXITED to allow building on FreeBSD kernel.
+    (This is somewhat experimental.)
 
  -- Joey Hess <joeyh@debian.org>  Mon, 05 Oct 2009 13:33:07 -0400
 
index 2358470a29e86ccc296b669f108b2b6b8d7dcf42..c78e830e9fa6a9ab8ec7c7172c58ccef29e1e5cb 100644 (file)
 #include <sys/wait.h>
 #include <unistd.h>
 
+#if defined(__FreeBSD_kernel__)
+#define WEXITED 0
+#endif
+
 void usage() {
        printf("parallel [OPTIONS] command -- arguments\n\tfor each argument, "
               "run command with argument, in parallel\n");