From: <amc...@us...> - 2006-09-03 19:07:01
|
Revision: 17144 http://svn.sourceforge.net/gaim/?rev=17144&view=rev Author: amc_grim Date: 2006-09-03 12:06:50 -0700 (Sun, 03 Sep 2006) Log Message: ----------- sadrul said the last version didn't work for him, so now we're trying absolute include paths which still work fine for me Modified Paths: -------------- trunk/configure.ac Modified: trunk/configure.ac =================================================================== --- trunk/configure.ac 2006-09-03 18:45:16 UTC (rev 17143) +++ trunk/configure.ac 2006-09-03 19:06:50 UTC (rev 17144) @@ -821,7 +821,7 @@ dnl # Some distros put the headers in ncursesw/, some don't found_ncurses_h=no - for f in ncurses.h ncursesw/ncurses.h + for f in /usr/include/ncurses.h /usr/include/ncursesw/ncurses.h do AC_CHECK_HEADER($f,[ AC_MSG_CHECKING([if $f supports wide characters]) @@ -835,7 +835,7 @@ ], [ dir=`dirname $f` if test x"$dir" != x"." ; then - GNT_CFLAGS="-I $dir/" + GNT_CFLAGS="-I$dir/" else GNT_CFLAGS="" fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |