/[grub]/grub2/util/console.c
ViewVC logotype

Diff of /grub2/util/console.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.10 by okuji, Sat Aug 6 15:50:07 2005 UTC revision 1.11 by okuji, Sun Aug 7 17:12:52 2005 UTC
# Line 18  Line 18 
18   *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.   *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19   */   */
20    
21  #include <curses.h>  #include <config.h>
22    
23    #if defined(HAVE_NCURSES_CURSES_H)
24    # include <ncurses/curses.h>
25    #elif defined(HAVE_NCURSES_H)
26    # include <ncurses.h>
27    #elif defined(HAVE_CURSES_H)
28    # include <curses.h>
29    #endif
30    
31    /* For compatibility.  */
32    #ifndef A_NORMAL
33    # define A_NORMAL       0
34    #endif /* ! A_NORMAL */
35    #ifndef A_STANDOUT
36    # define A_STANDOUT     0
37    #endif /* ! A_STANDOUT */
38    
39  #include <grub/machine/console.h>  #include <grub/machine/console.h>
40  #include <grub/term.h>  #include <grub/term.h>
41  #include <grub/types.h>  #include <grub/types.h>

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26