From: Ethan B. <ebl...@us...> - 2003-10-27 18:05:39
|
Update of /cvsroot/gaim/gaim In directory sc8-pr-cvs1:/tmp/cvs-serv14709 Modified Files: configure.ac Log Message: Improve Tcl detection on systems with Tcl in a nonstandard location. Index: configure.ac =================================================================== RCS file: /cvsroot/gaim/gaim/configure.ac,v retrieving revision 1.198 retrieving revision 1.199 diff -u -d -p -r1.198 -r1.199 --- configure.ac 26 Oct 2003 22:25:20 -0000 1.198 +++ configure.ac 27 Oct 2003 18:05:24 -0000 1.199 @@ -766,7 +766,7 @@ if test "$enable_tcl" = yes; then eval "TCL_LIB_SPEC=\"$TCL_LIB_SPEC\"" AC_MSG_CHECKING([for Tcl linkability]) oldCPPFLAGS=$CPPFLAGS - CPPFLAGS="$CPPFLAGS $TCL_INCLUDE_SPEC" + CPPFLAGS="$CPPFLAGS $TCL_INCLUDE_SPEC -I$TCL_PREFIX/include" oldLIBS=$LIBS LIBS="$LIBS $TCL_LIB_SPEC" AC_TRY_LINK([#include <tcl.h>], @@ -783,7 +783,7 @@ if test "$enable_tcl" = yes; then AM_CONDITIONAL(USE_TCL, true) TCL_LIBS=$TCL_LIB_SPEC AC_SUBST(TCL_LIBS) - TCL_CFLAGS=$TCL_INCLUDE_SPEC + TCL_CFLAGS="$TCL_INCLUDE_SPEC -I$TCL_PREFIX/include" if test "x$GCC" = "xyes"; then TCL_CFLAGS="$TCL_CFLAGS -fno-strict-aliasing" fi |