From ac16dc8a7f831c727eb842f43894f94bcd1c9711 Mon Sep 17 00:00:00 2001 From: Sam Varshavchik Date: Feb 28 2019 12:14:32 +0000 Subject: Fix spawn_detached() --- diff --git a/ChangeLog b/ChangeLog index 9c915c1..101cd3d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +0.15.1 + +2019-02-27 Sam Varshavchik + + * base/forkexec.C (forkexec::spawn_detached): spawn_detached() + should wait() for the first child process to exit. + 0.15 2019-01-28 Sam Varshavchik diff --git a/base/forkexec.C b/base/forkexec.C index 0125fb8..b046de6 100644 --- a/base/forkexec.C +++ b/base/forkexec.C @@ -183,6 +183,7 @@ void forkexec::spawn_detached() } pair.second->close(); before_fork(pair.first); + wait4(p); } int forkexec::system() diff --git a/configure.ac b/configure.ac index 9909881..6825a83 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ # See COPYING for distribution information. AC_PREREQ(2.61) -AC_INIT(libcxx, 0.15.0, [mrsam@courier-mta.com]) +AC_INIT(libcxx, 0.15.1, [mrsam@courier-mta.com]) AC_CONFIG_SRCDIR([includes/x/obj.H]) AC_CONFIG_HEADER([libcxx_config.h]) @@ -43,7 +43,7 @@ XGETTEXT_EXTRA_OPTIONS="--keyword=_txt --keyword=_txtw --keyword=_txtn:1,2 --key # ABIVER=0.15 AC_SUBST(ABIVER) -VERSION_INFO=15:0:0 +VERSION_INFO=15:1:0 AC_SUBST(VERSION_INFO) # Checks for libraries. diff --git a/docbook/book.css b/docbook/book.css index 8bb17ab..7fce468 100644 --- a/docbook/book.css +++ b/docbook/book.css @@ -65,6 +65,10 @@ code.computeroutput div.literallayout { margin-left: 4em; } +body { + font-family: "liberation serif", "times new roman", "serif"; +} + .application { font-family: "liberation sans", arial, "sans serif"; font-weight: bold;