From: <the...@us...> - 2006-09-03 21:22:16
|
Revision: 17145 http://svn.sourceforge.net/gaim/?rev=17145&view=rev Author: thekingant Date: 2006-09-03 14:22:14 -0700 (Sun, 03 Sep 2006) Log Message: ----------- 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 Modified Paths: -------------- trunk/console/libgnt/gntmain.c Modified: trunk/console/libgnt/gntmain.c =================================================================== --- trunk/console/libgnt/gntmain.c 2006-09-03 19:06:50 UTC (rev 17144) +++ trunk/console/libgnt/gntmain.c 2006-09-03 21:22:14 UTC (rev 17145) @@ -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> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |