diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2008-12-12 16:22:57 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2008-12-12 16:22:57 (GMT) |
commit | ff69d9baf12d894d871342b00a357c8008b68704 (patch) | |
tree | ac3ebc3cba827a9815ad4d48a242e8cedde3f48b /unix/configure.in | |
parent | a5fbabae01fb74139bbfe1c34061e2458395cba5 (diff) | |
download | tcl-ff69d9baf12d894d871342b00a357c8008b68704.zip tcl-ff69d9baf12d894d871342b00a357c8008b68704.tar.gz tcl-ff69d9baf12d894d871342b00a357c8008b68704.tar.bz2 |
regen/fix blunders
Diffstat (limited to 'unix/configure.in')
-rw-r--r-- | unix/configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/configure.in b/unix/configure.in index 339b845..5f6d0c9 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tcl installation dnl to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.193 2008/12/12 16:18:09 dkf Exp $ +# RCS: @(#) $Id: configure.in,v 1.194 2008/12/12 16:22:57 dkf Exp $ AC_INIT([tcl],[8.6]) AC_PREREQ(2.59) @@ -121,14 +121,14 @@ zlib_ok=yes AC_CHECK_HEADER([zlib.h],[ AC_CHECK_TYPE([gz_header],[],[ zlib_ok=no - AC_DIAGNOSE([],[TODO: Add -I$srcdir/compat/zlib/include to compile lines]) + AC_MSG_WARN([todo: Add -Icompat/zlib/include to compile lines]) ],[#include <zlib.h>])],[ zlib_ok=no - AC_DIAGNOSE([],[TODO: Add -I$srcdir/compat/zlib/include to compile lines]) + AC_MSG_WARN([todo: Add -Icompat/zlib/include to compile lines]) ]) AC_SEARCH_LIBS([deflateSetHeader],[z],[],[ zlib_ok=no - AC_DIAGNOSE([],[TODO: Add $srcdir/compat/zlib to list of things to build]) + AC_MSG_WARN([todo: Add compat/zlib to list of things to build]) ]) if test $zlib_ok = yes; then AC_DEFINE(HAVE_ZLIB, 1, [Is there an installed zlib?]) |