Mercurial > pidgin
changeset 14431:0ed8b285a44b
[gaim-migrate @ 17145]
This fixes compiling for me. The problem is that panel.h includes
/usr/include/ncurses/curses.h, which then prevents us from
correctly including /usr/include/ncursesw/ncurses.h. So I just
moved the include for panel.h below the other include
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 03 Sep 2006 21:22:14 +0000 |
parents | 2e1ad5ecb6e4 |
children | 3ac156db9cb6 |
files | console/libgnt/gntmain.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/console/libgnt/gntmain.c Sun Sep 03 19:06:50 2006 +0000 +++ b/console/libgnt/gntmain.c Sun Sep 03 21:22:14 2006 +0000 @@ -3,8 +3,6 @@ #include "config.h" -#include <panel.h> - #include <gmodule.h> #include "gnt.h" @@ -15,6 +13,8 @@ #include "gnttree.h" #include "gntwm.h" +#include <panel.h> + #include <stdio.h> #include <stdlib.h> #include <locale.h>