From: Daniel Jacobowitz Date: Thu, 23 Feb 2006 20:53:00 +0000 (+0000) Subject: * gdb_curses.h: Provide a fallback prototype for tgetnum. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=921286914fd31d4b7f3175c55e7c32ceef29a010;p=deliverable%2Fbinutils-gdb.git * gdb_curses.h: Provide a fallback prototype for tgetnum. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1d5c6a18a0..f26f680de4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2006-02-23 Daniel Jacobowitz + + * gdb_curses.h: Provide a fallback prototype for tgetnum. + 2006-02-23 Daniel Jacobowitz * doublest.h: Conditionalize DOUBLEST on PRINTF_HAS_LONG_DOUBLE diff --git a/gdb/gdb_curses.h b/gdb/gdb_curses.h index f7854b0710..ac3cd3d1e3 100644 --- a/gdb/gdb_curses.h +++ b/gdb/gdb_curses.h @@ -1,6 +1,6 @@ /* Portable . - 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 #elif defined (HAVE_TERM_H) #include +#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 */