Skip to content

Commit

Permalink
Don't check for sigprocmask() in configure
Browse files Browse the repository at this point in the history
It's not used in the code anymore.
  • Loading branch information
xaizek committed Dec 14, 2020
1 parent dfe2135 commit 59ed5bc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
7 changes: 0 additions & 7 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -7236,13 +7236,6 @@ else
as_fn_error $? "signal() function not found." "$LINENO" 5
fi
ac_fn_c_check_func "$LINENO" "sigprocmask" "ac_cv_func_sigprocmask"
if test "x$ac_cv_func_sigprocmask" = xyes; then :
else
as_fn_error $? "sigprocmask() function not found." "$LINENO" 5
fi
ac_fn_c_check_func "$LINENO" "snprintf" "ac_cv_func_snprintf"
if test "x$ac_cv_func_snprintf" = xyes; then :
Expand Down
1 change: 0 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ AC_CHECK_FUNC([sigaction], [], [AC_MSG_ERROR([sigaction() function not found.])]
AC_CHECK_FUNC([sigaddset], [], [AC_MSG_ERROR([sigaddset() function not found.])])
AC_CHECK_FUNC([sigemptyset], [], [AC_MSG_ERROR([sigemptyset() function not found.])])
AC_CHECK_FUNC([signal], [], [AC_MSG_ERROR([signal() function not found.])])
AC_CHECK_FUNC([sigprocmask], [], [AC_MSG_ERROR([sigprocmask() function not found.])])
AC_CHECK_FUNC([snprintf], [], [AC_MSG_ERROR([snprintf() function not found.])])
AC_CHECK_FUNC([sprintf], [], [AC_MSG_ERROR([sprintf() function not found.])])
AC_CHECK_FUNC([strcasecmp], [], [AC_MSG_ERROR([strcasecmp() function not found.])])
Expand Down

0 comments on commit 59ed5bc

Please sign in to comment.