diff options
author | Daniel Jacobowitz <drow@false.org> | 2006-02-23 20:53:00 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2006-02-23 20:53:00 +0000 |
commit | 921286914fd31d4b7f3175c55e7c32ceef29a010 (patch) | |
tree | 515c6f9b1b744bba408877a29bdf1ea780c69f56 | |
parent | a6205f535ae295e644a1ec53fa130e2785adfb58 (diff) | |
download | gdb-921286914fd31d4b7f3175c55e7c32ceef29a010.zip gdb-921286914fd31d4b7f3175c55e7c32ceef29a010.tar.gz gdb-921286914fd31d4b7f3175c55e7c32ceef29a010.tar.bz2 |
* gdb_curses.h: Provide a fallback prototype for tgetnum.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/gdb_curses.h | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1d5c6a1..f26f680 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2006-02-23 Daniel Jacobowitz <dan@codesourcery.com> + * gdb_curses.h: Provide a fallback prototype for tgetnum. + +2006-02-23 Daniel Jacobowitz <dan@codesourcery.com> + * doublest.h: Conditionalize DOUBLEST on PRINTF_HAS_LONG_DOUBLE also. (DOUBLEST_FORMAT): Rename to DOUBLEST_PRINT_FORMAT. diff --git a/gdb/gdb_curses.h b/gdb/gdb_curses.h index f7854b0..ac3cd3d 100644 --- a/gdb/gdb_curses.h +++ b/gdb/gdb_curses.h @@ -1,6 +1,6 @@ /* Portable <curses.h>. - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004, 2006 Free Software Foundation, Inc. This file is part of GDB. @@ -36,6 +36,12 @@ #include <ncurses/term.h> #elif defined (HAVE_TERM_H) #include <term.h> +#else +/* On MinGW, a real termcap library is usually not present. Stub versions + of the termcap functions will be built from win32-termcap.c. Readline + provides its own extern declarations when there's no termcap.h; do the + same here for the termcap functions used in GDB. */ +extern int tgetnum (const char *); #endif #endif /* gdb_curses.h */ |