Move check for strerror_r to common.m4 where it belongs
gdb/ChangeLog: 2019-11-01 Christian Biesinger <cbiesinger@google.com> * configure: Regenerate. * configure.ac: Remove check for strerror_r. * gdbsupport/common.m4: Check for strerror_r. gdb/gdbserver/ChangeLog: 2019-11-01 Christian Biesinger <cbiesinger@google.com> * configure: Regenerate. * configure.ac: Remove check for strerror_r. Change-Id: Ibc290c3f84b1db23e998cffdbe2c1f97651d2a8d
This commit is contained in:
parent
bd5766ec68
commit
e48f6033b0
7 changed files with 18 additions and 7 deletions
|
@ -1,3 +1,9 @@
|
|||
2019-11-01 Christian Biesinger <cbiesinger@google.com>
|
||||
|
||||
* configure: Regenerate.
|
||||
* configure.ac: Remove check for strerror_r.
|
||||
* gdbsupport/common.m4: Check for strerror_r.
|
||||
|
||||
2019-11-01 Luis Machado <luis.machado@linaro.org>
|
||||
|
||||
PR gdb/25124
|
||||
|
|
4
gdb/configure
vendored
4
gdb/configure
vendored
|
@ -13073,7 +13073,7 @@ for ac_func in getauxval getrusage getuid getgid \
|
|||
sigaction sigsetmask socketpair \
|
||||
ttrace wborder wresize setlocale iconvlist libiconvlist btowc \
|
||||
setrlimit getrlimit posix_madvise waitpid \
|
||||
ptrace64 sigaltstack setns use_default_colors strerror_r
|
||||
ptrace64 sigaltstack setns use_default_colors
|
||||
do :
|
||||
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
||||
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
|
||||
|
@ -13480,7 +13480,7 @@ done
|
|||
|
||||
|
||||
for ac_func in fdwalk getrlimit pipe pipe2 socketpair sigaction \
|
||||
sigprocmask
|
||||
sigprocmask strerror_r
|
||||
do :
|
||||
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
||||
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
|
||||
|
|
|
@ -1318,7 +1318,7 @@ AC_CHECK_FUNCS([getauxval getrusage getuid getgid \
|
|||
sigaction sigsetmask socketpair \
|
||||
ttrace wborder wresize setlocale iconvlist libiconvlist btowc \
|
||||
setrlimit getrlimit posix_madvise waitpid \
|
||||
ptrace64 sigaltstack setns use_default_colors strerror_r])
|
||||
ptrace64 sigaltstack setns use_default_colors])
|
||||
AM_LANGINFO_CODESET
|
||||
GDB_AC_COMMON
|
||||
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2019-11-01 Christian Biesinger <cbiesinger@google.com>
|
||||
|
||||
* configure: Regenerate.
|
||||
* configure.ac: Remove check for strerror_r.
|
||||
|
||||
2019-10-31 Christian Biesinger <cbiesinger@google.com>
|
||||
|
||||
* config.in: Regenerate.
|
||||
|
|
4
gdb/gdbserver/configure
vendored
4
gdb/gdbserver/configure
vendored
|
@ -6448,7 +6448,7 @@ $as_echo "#define HAVE_WORKING_FORK 1" >>confdefs.h
|
|||
|
||||
fi
|
||||
|
||||
for ac_func in getauxval pread pwrite pread64 setns strerror_r
|
||||
for ac_func in getauxval pread pwrite pread64 setns
|
||||
do :
|
||||
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
||||
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
|
||||
|
@ -6822,7 +6822,7 @@ done
|
|||
|
||||
|
||||
for ac_func in fdwalk getrlimit pipe pipe2 socketpair sigaction \
|
||||
sigprocmask
|
||||
sigprocmask strerror_r
|
||||
do :
|
||||
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
||||
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
|
||||
|
|
|
@ -90,7 +90,7 @@ AC_CHECK_HEADERS(termios.h sys/reg.h string.h dnl
|
|||
sys/ioctl.h netinet/in.h sys/socket.h netdb.h dnl
|
||||
netinet/tcp.h arpa/inet.h)
|
||||
AC_FUNC_FORK
|
||||
AC_CHECK_FUNCS(getauxval pread pwrite pread64 setns strerror_r)
|
||||
AC_CHECK_FUNCS(getauxval pread pwrite pread64 setns)
|
||||
|
||||
GDB_AC_COMMON
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ AC_DEFUN([GDB_AC_COMMON], [
|
|||
dlfcn.h)
|
||||
|
||||
AC_CHECK_FUNCS([fdwalk getrlimit pipe pipe2 socketpair sigaction \
|
||||
sigprocmask])
|
||||
sigprocmask strerror_r])
|
||||
|
||||
AC_CHECK_DECLS([strerror, strstr])
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue