changeset 14430:2e1ad5ecb6e4

[gaim-migrate @ 17144] sadrul said the last version didn't work for him, so now we're trying absolute include paths which still work fine for me committer: Tailor Script <tailor@pidgin.im>
author Gary Kramlich <grim@reaperworld.com>
date Sun, 03 Sep 2006 19:06:50 +0000
parents 59b4751c8f1e
children 0ed8b285a44b
files configure.ac
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/configure.ac	Sun Sep 03 18:45:16 2006 +0000
+++ b/configure.ac	Sun Sep 03 19:06:50 2006 +0000
@@ -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