diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-07-20 15:24:55 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-07-20 15:24:55 +0000 |
commit | a156a290642281359c8dc0c949fdd942826455a1 (patch) | |
tree | da58d7ff7a9397f6b007b1c7cf274b85e90522b3 /gdb/config.in | |
parent | b4d1e8c7001940584b7e63af5411535e42785690 (diff) | |
download | gdb-a156a290642281359c8dc0c949fdd942826455a1.zip gdb-a156a290642281359c8dc0c949fdd942826455a1.tar.gz gdb-a156a290642281359c8dc0c949fdd942826455a1.tar.bz2 |
fix gdbtui build errors when pipe() is not available (e.g. mingw targets)
* configure.ac (AC_CHECK_FUNCS): Check for pipe.
* config.in, configure: Regenerate.
* tui/tui-io.c (TUI_USE_PIPE_FOR_READLINE): Define if HAVE_PIPE.
Diffstat (limited to 'gdb/config.in')
-rw-r--r-- | gdb/config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/config.in b/gdb/config.in index d4d4469..f2d56a0 100644 --- a/gdb/config.in +++ b/gdb/config.in @@ -279,6 +279,9 @@ /* Define if you support the personality syscall. */ #undef HAVE_PERSONALITY +/* Define to 1 if you have the `pipe' function. */ +#undef HAVE_PIPE + /* Define to 1 if you have the `poll' function. */ #undef HAVE_POLL |