diff options
author | mo <mo> | 2000-07-19 02:15:59 (GMT) |
---|---|---|
committer | mo <mo> | 2000-07-19 02:15:59 (GMT) |
commit | e5a13e0d55918441c5cb7bd32eed38d443205097 (patch) | |
tree | 84a3364c6d90c16dc8726a1fe737c29fbd3c7ed2 /unix/configure.in | |
parent | d046a8a0ca9b4b60ea496c1f63a59e71450ee100 (diff) | |
download | tk-e5a13e0d55918441c5cb7bd32eed38d443205097.zip tk-e5a13e0d55918441c5cb7bd32eed38d443205097.tar.gz tk-e5a13e0d55918441c5cb7bd32eed38d443205097.tar.bz2 |
* unix/aclocal.m4: Use tcl.m4.
* unix/configure.in: Properly quote
LOCALES variable. Properly quote
argument to m4 macro.
* unix/tcl.m4: Add updated file from tcl.
* win/tcl.m4: Updated file from tcl.
Diffstat (limited to 'unix/configure.in')
-rw-r--r-- | unix/configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/configure.in b/unix/configure.in index 94f3654..f80be4a 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,14 +3,14 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tk installation dnl to configure the system for the local environment. AC_INIT(../generic/tk.h) -# RCS: @(#) $Id: configure.in,v 1.52 2000/07/18 21:33:46 ericm Exp $ +# RCS: @(#) $Id: configure.in,v 1.53 2000/07/19 02:16:00 mo Exp $ TK_VERSION=8.4 TK_MAJOR_VERSION=8 TK_MINOR_VERSION=4 TK_PATCH_LEVEL="a1" VERSION=${TK_VERSION} -LOCALES=de en es fr +LOCALES="de en es fr" if test "${prefix}" = "NONE"; then prefix=/usr/local @@ -256,7 +256,7 @@ if test "$tk_checkBoth" = 1; then LIBS="$LIBS -lsocket -lnsl" AC_CHECK_FUNC(accept, tk_checkNsl=0, [LIBS=$tk_oldLibs]) fi -AC_CHECK_FUNC(gethostbyname, , AC_CHECK_LIB(nsl, main, [LIBS="$LIBS -lnsl"])) +AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl, main, [LIBS="$LIBS -lnsl"])]) # Add the threads support libraries |