]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* gdb_curses.h: Provide a fallback prototype for tgetnum.
authorDaniel Jacobowitz <drow@false.org>
Thu, 23 Feb 2006 20:53:00 +0000 (20:53 +0000)
committerDaniel Jacobowitz <drow@false.org>
Thu, 23 Feb 2006 20:53:00 +0000 (20:53 +0000)
gdb/ChangeLog
gdb/gdb_curses.h

index 1d5c6a18a0dbea77621e38d24ed0628571a99a1a..f26f680de4c11ee1bdf80973fcbc567cf1ced7bc 100644 (file)
@@ -1,3 +1,7 @@
+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
index f7854b0710009d1069ada8a2f63adf4e07bca1e2..ac3cd3d1e39041a6c273449a7521f0caba6e2be3 100644 (file)
@@ -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.
 
 #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 */