Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
4a5ecad0
Commit
4a5ecad0
authored
Sep 05, 2018
by
Ondřej Surý
Browse files
Replace custom HAVE_SIGWAIT define with AC_CHECK_FUNCS
parent
19ae4438
Changes
4
Hide whitespace changes
Inline
Side-by-side
acconfig.h
View file @
4a5ecad0
...
...
@@ -17,9 +17,6 @@
***/
@
TOP
@
/** define if your system has sigwait() */
#undef HAVE_SIGWAIT
/** define if sysctlbyname() is available */
#undef HAVE_SYSCTLBYNAME
...
...
config.h.in
View file @
4a5ecad0
...
...
@@ -17,9 +17,6 @@
*** it does not get installed.
***/
/** define if your system has sigwait() */
#undef HAVE_SIGWAIT
/** define if sysctlbyname() is available */
#undef HAVE_SYSCTLBYNAME
...
...
configure
View file @
4a5ecad0
...
...
@@ -15266,54 +15266,10 @@ done
#
# Additional OS-specific issues related to pthreads
and sigwait
.
# Additional OS-specific issues related to pthreads.
#
case "$host" in
#
# One more place to look for sigwait.
#
*-freebsd*)
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sigwait in -lc_r" >&5
$as_echo_n "checking for sigwait in -lc_r... " >&6; }
if ${ac_cv_lib_c_r_sigwait+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lc_r $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
/* Override any GCC internal prototype to avoid an error.
Use char because int might match the return type of a GCC
builtin and then its argument prototype would still apply. */
#ifdef __cplusplus
extern "C"
#endif
char sigwait ();
int
main ()
{
return sigwait ();
;
return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
ac_cv_lib_c_r_sigwait=yes
else
ac_cv_lib_c_r_sigwait=no
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_r_sigwait" >&5
$as_echo "$ac_cv_lib_c_r_sigwait" >&6; }
if test "x$ac_cv_lib_c_r_sigwait" = xyes; then :
$as_echo "#define HAVE_SIGWAIT 1" >>confdefs.h
fi
case $host in
*-freebsd5.[012]|*-freebsd5.[012].*);;
*-freebsd5.[3456789]|*-freebsd5.[3456789].*)
...
...
configure.in
View file @
4a5ecad0
...
...
@@ -734,14 +734,10 @@ AC_SEARCH_LIBS([sched_yield],[rt])
AC_CHECK_FUNCS([sched_yield pthread_yield pthread_yield_np])
#
# Additional OS-specific issues related to pthreads
and sigwait
.
# Additional OS-specific issues related to pthreads.
#
case "$host" in
#
# One more place to look for sigwait.
#
*-freebsd*)
AC_CHECK_LIB(c_r, sigwait, AC_DEFINE(HAVE_SIGWAIT),)
case $host in
*-freebsd5.[[012]]|*-freebsd5.[[012]].*);;
*-freebsd5.[[3456789]]|*-freebsd5.[[3456789]].*)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment