diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-08-13 20:16:46 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-08-13 20:16:46 +0000 |
commit | 64218d3eae890f8166fd56651c6599e5695e216c (patch) | |
tree | 7009251416e470a244f076712582ead66387ce1f | |
parent | caa32fe507720347f37e2d060d64a89d96928db1 (diff) | |
download | gdb-64218d3eae890f8166fd56651c6599e5695e216c.zip gdb-64218d3eae890f8166fd56651c6599e5695e216c.tar.gz gdb-64218d3eae890f8166fd56651c6599e5695e216c.tar.bz2 |
* configure.in (PTRACE_TYPE_ARG3, PTRACE_TYPE_ARG5): Don't use
parenthesis in definition.
* configure: Regenerated.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rwxr-xr-x | gdb/configure | 4 | ||||
-rw-r--r-- | gdb/configure.in | 4 |
3 files changed, 10 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 187a642..c14f6c0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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. diff --git a/gdb/configure b/gdb/configure index cc9a2a0..495d798 100755 --- a/gdb/configure +++ b/gdb/configure @@ -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 diff --git a/gdb/configure.in b/gdb/configure.in index fe068ef..899a334 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -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 |