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 /gdb/configure.in | |
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.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
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 |