2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

find sigwait() on FreeBSD

This commit is contained in:
Bob Halley
2000-02-09 19:22:36 +00:00
parent cbe5f076ba
commit a505a3f6e0

View File

@@ -13,7 +13,7 @@ dnl PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
dnl ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS dnl ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
dnl SOFTWARE. dnl SOFTWARE.
AC_REVISION($Revision: 1.95 $) AC_REVISION($Revision: 1.96 $)
AC_PREREQ(2.13) AC_PREREQ(2.13)
@@ -187,6 +187,15 @@ AC_CHECK_LIB(c, sigwait,
AC_DEFINE(HAVE_SIGWAIT),)) AC_DEFINE(HAVE_SIGWAIT),))
) )
dnl
dnl Additional OS-specific searching for sigwait.
dnl
case "$host" in
*-freebsd*)
AC_CHECK_LIB(c_r, sigwait, AC_DEFINE(HAVE_SIGWAIT),)
;;
esac
dnl dnl
dnl Make sure we get the right sigwait() semantics... dnl Make sure we get the right sigwait() semantics...
dnl dnl