summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2014-01-02 16:46:14 +0100
committerArthur de Jong <arthur@arthurdejong.org>2014-01-02 22:51:34 +0100
commit907d49d643aaed11f3f765f903f71ba9d1a6a119 (patch)
tree7db5f4ebc875203004c52074c20d83e651910d30 /configure.ac
parent42a1a3dbee96c209f5ccb97207d11f536253516c (diff)
Close daemon pipe file descriptor on fork or exec
This tries to avoid child processes ending up with a copy of the pipe file descriptor that is used to signal readiness of the daemon.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 27d8e56..a80dff6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
#
# Copyright (C) 2006 Luke Howard
# Copyright (C) 2006 West Consulting
-# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Arthur de Jong
+# Copyright (C) 2006-2014 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -23,7 +23,7 @@ AC_PREREQ(2.61)
AC_COPYRIGHT(
[Copyright (C) 2006 Luke Howard
Copyright (C) 2006 West Consulting
-Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Arthur de Jong
+Copyright (C) 2006-2014 Arthur de Jong
This configure script is derived from configure.ac which is free software;
you can redistribute it and/or modify it under the terms of the GNU Lesser
@@ -726,7 +726,7 @@ then
pthread_save_LIBS="$LIBS"
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
LIBS="$LIBS $PTHREAD_LIBS"
- AC_CHECK_FUNCS([pthread_mutex_lock pthread_join pthread_timedjoin_np])
+ AC_CHECK_FUNCS([pthread_mutex_lock pthread_join pthread_timedjoin_np pthread_atfork])
CFLAGS="$pthread_save_CFLAGS"
LIBS="$pthread_save_LIBS"