]> git.pld-linux.org Git - packages/gdb.git/blob - gdb-ncurses.patch
387714d487d849596d468d691b2337a5 vcd-1.5.tar.gz
[packages/gdb.git] / gdb-ncurses.patch
1 diff -urN gdb-5.0.org/gdb/config.in gdb-5.0/gdb/config.in
2 --- gdb-5.0.org/gdb/config.in   Fri Apr 14 12:40:00 2000
3 +++ gdb-5.0/gdb/config.in       Tue Sep  5 18:21:12 2000
4 @@ -207,8 +207,8 @@
5  /* Define if you have the <ctype.h> header file.  */
6  #undef HAVE_CTYPE_H
7  
8 -/* Define if you have the <curses.h> header file.  */
9 -#undef HAVE_CURSES_H
10 +/* Define if you have the <ncurses/curses.h> header file.  */
11 +#undef HAVE_NCURSES_CURSES_H
12  
13  /* Define if you have the <endian.h> header file.  */
14  #undef HAVE_ENDIAN_H
15 diff -urN gdb-5.0.org/gdb/configure.in gdb-5.0/gdb/configure.in
16 --- gdb-5.0.org/gdb/configure.in        Tue Sep  5 18:19:34 2000
17 +++ gdb-5.0/gdb/configure.in    Tue Sep  5 18:20:44 2000
18 @@ -97,7 +97,7 @@
19      AC_DEFINE(_MSE_INT_H)
20  esac; esac
21  
22 -AC_CHECK_HEADERS(ctype.h curses.h endian.h link.h thread_db.h proc_service.h \
23 +AC_CHECK_HEADERS(ctype.h ncurses/curses.h endian.h link.h thread_db.h proc_service.h \
24         memory.h objlist.h ptrace.h sgtty.h stddef.h stdlib.h \
25         string.h sys/procfs.h sys/ptrace.h sys/reg.h stdint.h \
26         term.h termio.h termios.h unistd.h wait.h sys/wait.h \
27 diff -urN gdb-5.0.org/gdb/tui/tui.h gdb-5.0/gdb/tui/tui.h
28 --- gdb-5.0.org/gdb/tui/tui.h   Tue Sep  5 18:19:34 2000
29 +++ gdb-5.0/gdb/tui/tui.h       Tue Sep  5 18:20:16 2000
30 @@ -2,7 +2,7 @@
31  
32  #ifndef TUI_H
33  #define TUI_H
34 -#include <curses.h>
35 +#include <ncurses/curses.h>
36  
37  #ifdef ANSI_PROTOTYPES
38  #include <stdarg.h>
39 diff -urN gdb-5.0.org/gdb/tui/tuiGeneralWin.c gdb-5.0/gdb/tui/tuiGeneralWin.c
40 --- gdb-5.0.org/gdb/tui/tuiGeneralWin.c Tue Sep  5 18:19:34 2000
41 +++ gdb-5.0/gdb/tui/tuiGeneralWin.c     Tue Sep  5 18:20:25 2000
42 @@ -3,7 +3,7 @@
43     ** This module supports general window behavior
44   */
45  
46 -#include <curses.h>
47 +#include <ncurses/curses.h>
48  #include "defs.h"
49  #include "tui.h"
50  #include "tuiData.h"
51 diff -urN gdb-5.0.org/gdb/utils.c gdb-5.0/gdb/utils.c
52 --- gdb-5.0.org/gdb/utils.c     Tue Sep  5 18:19:34 2000
53 +++ gdb-5.0/gdb/utils.c Tue Sep  5 18:21:55 2000
54 @@ -24,8 +24,8 @@
55  #include "gdb_string.h"
56  #include "event-top.h"
57  
58 -#ifdef HAVE_CURSES_H
59 -#include <curses.h>
60 +#ifdef HAVE_NCURSES_CURSES_H
61 +#include <ncurses/curses.h>
62  #endif
63  #ifdef HAVE_TERM_H
64  #include <term.h>
65 diff -urN gdb-5.0.org/gdb/tui/tui.c gdb-5.0/gdb/tui/tui.c
66 --- gdb-5.0.org/gdb/tui/tui.c   Tue Sep  5 19:51:50 2000
67 +++ gdb-5.0/gdb/tui/tui.c       Tue Sep  5 19:52:17 2000
68 @@ -7,7 +7,7 @@
69  #include <stdlib.h>
70  #include <ctype.h>
71  #include <malloc.h>
72 -#include <curses.h>
73 +#include <ncurses/curses.h>
74  #ifdef HAVE_TERM_H
75  #include <term.h>
76  #endif
This page took 0.285855 seconds and 4 git commands to generate.