diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2020-10-31 08:30:59 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2020-10-31 08:30:59 -0400 |
commit | 5164c11714c92ba7690d4f93de6be6a90f460220 (patch) | |
tree | 2f616d6805b100c55f6090ddb2e834a763299c4c /gdbsupport/configure | |
parent | b6fb30eda72b7fc3a6214ed2787f80971f66810d (diff) | |
download | gdb-5164c11714c92ba7690d4f93de6be6a90f460220.zip gdb-5164c11714c92ba7690d4f93de6be6a90f460220.tar.gz gdb-5164c11714c92ba7690d4f93de6be6a90f460220.tar.bz2 |
gdbsupport: replace AC_TRY_COMPILE in ptrace.m4
Replace AC_TRY_COMPILE with AC_COMPILE_IFELSE + AC_LANG_PROGRAM.
All the changes in the generated configure files are insignificant
whitespace changes.
gdb/ChangeLog:
* configure: Re-generate.
gdbserver/ChangeLog:
* configure: Re-generate.
gdbsupport/ChangeLog:
* configure: Re-generate.
* ptrace.m4: Replace AC_TRY_COMPILE with AC_COMPILE_IFELSE +
AC_LANG_PROGRAM.
Change-Id: Ia782b5477fe49dad04e68c0f41c6d8ab3fde5bf0
Diffstat (limited to 'gdbsupport/configure')
-rwxr-xr-x | gdbsupport/configure | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gdbsupport/configure b/gdbsupport/configure index e51c7b5..904403d 100755 --- a/gdbsupport/configure +++ b/gdbsupport/configure @@ -10017,11 +10017,12 @@ if ${gdb_cv_func_ptrace_ret+:} false; then : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -$gdb_ptrace_headers + $gdb_ptrace_headers int main () { extern long ptrace (enum __ptrace_request, ...); + ; return 0; } @@ -10036,6 +10037,7 @@ int main () { extern int ptrace (); + ; return 0; } @@ -10074,6 +10076,7 @@ int main () { extern long ptrace (enum __ptrace_request, ...); + ; return 0; } @@ -10092,6 +10095,7 @@ int main () { extern $gdb_cv_func_ptrace_ret ptrace ($gdb_arg1, $gdb_arg2, $gdb_arg3, $gdb_arg4); + ; return 0; } @@ -10111,6 +10115,7 @@ int main () { extern $gdb_cv_func_ptrace_ret ptrace ($gdb_arg1, $gdb_arg2, $gdb_arg3, $gdb_arg4, $gdb_arg5); + ; return 0; } |