* configure.in (PTRACE_TYPE_ARG3, PTRACE_TYPE_ARG5): Don't use
parenthesis in definition. * configure: Regenerated.
This commit is contained in:
parent
caa32fe507
commit
64218d3eae
3 changed files with 10 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-08-13 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* configure.in (PTRACE_TYPE_ARG3, PTRACE_TYPE_ARG5): Don't use
|
||||
parenthesis in definition.
|
||||
* configure: Regenerated.
|
||||
|
||||
2004-08-12 Michael Chastain <mec.gnu@mindspring.com>
|
||||
|
||||
* PROBLEMS: Mention build/1411.
|
||||
|
|
4
gdb/configure
vendored
4
gdb/configure
vendored
|
@ -7362,12 +7362,12 @@ set dummy `echo "$gdb_cv_func_ptrace_args" | sed 's/\*/\*/g'`
|
|||
IFS=$ac_save_IFS
|
||||
shift
|
||||
cat >> confdefs.h <<EOF
|
||||
#define PTRACE_TYPE_ARG3 ($3)
|
||||
#define PTRACE_TYPE_ARG3 $3
|
||||
EOF
|
||||
|
||||
if test -n "$5"; then
|
||||
cat >> confdefs.h <<EOF
|
||||
#define PTRACE_TYPE_ARG5 ($5)
|
||||
#define PTRACE_TYPE_ARG5 $5
|
||||
EOF
|
||||
|
||||
fi
|
||||
|
|
|
@ -540,10 +540,10 @@ ac_save_IFS=$IFS; IFS=','
|
|||
set dummy `echo "$gdb_cv_func_ptrace_args" | sed 's/\*/\*/g'`
|
||||
IFS=$ac_save_IFS
|
||||
shift
|
||||
AC_DEFINE_UNQUOTED(PTRACE_TYPE_ARG3, ($[3]),
|
||||
AC_DEFINE_UNQUOTED(PTRACE_TYPE_ARG3, $[3],
|
||||
[Define to the type of arg 3 for ptrace.])
|
||||
if test -n "$[5]"; then
|
||||
AC_DEFINE_UNQUOTED(PTRACE_TYPE_ARG5, ($[5]),
|
||||
AC_DEFINE_UNQUOTED(PTRACE_TYPE_ARG5, $[5],
|
||||
[Define to the type of arg 5 for ptrace.])
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue