From 0f4685be21cf15f0eb803087771aaa7d65aae917 Mon Sep 17 00:00:00 2001 From: stefanjones Date: Wed, 24 Dec 2003 19:40:01 +0000 Subject: [PATCH] 2003-12-24 Stefan Jones * configure.in: Fix the check for headers so it actually uses the info from tclConfig.sh --- ChangeLog | 7 ++++++- configure.in | 3 ++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 47165eda4..db6530458 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,9 @@ -2003-12-03 Evgeny Fiksman +2003-12-24 Stefan Jones + + * configure.in: + Fix the check for headers so it actually uses the info from tclConfig.sh + +2003-12-13 Evgeny Fiksman * src/frontend/terminal.c: Increase the buffer size for tgetent diff --git a/configure.in b/configure.in index 8098debf3..44cf250e9 100644 --- a/configure.in +++ b/configure.in @@ -187,8 +187,9 @@ fi . $tcl_config_sh CFLAGS="$CFLAGS $TCL_INCLUDE_SPEC" +CPPFLAGS="$CPPFLAGS $TCL_INCLUDE_SPEC" -AC_CHECK_HEADERS(tcl.h blt.h,,AC_MSG_ERROR(Couldn't find Tcl/BLT headers),$TCL_INCLUDE_SPEC) +AC_CHECK_HEADERS(tcl.h blt.h,,AC_MSG_ERROR(Couldn't find Tcl/BLT headers),) if test ! -x "$TCL_EXEC_PREFIX/bin/tclsh$TCL_VERSION" ; then AC_MSG_ERROR(Couldn't find $TCL_EXEC_PREFIX/bin/tclsh$TCL_VERSION)