summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorsuresh <suresh>1999-03-26 19:48:03 (GMT)
committersuresh <suresh>1999-03-26 19:48:03 (GMT)
commit9bc96b913d4e65e5c3521ced19512c89779a933d (patch)
tree43e82cd4936f5ed798df54d54664f99b766566e7 /unix
parentd8db2ababd286b1b0098a6d369b073b5697da342 (diff)
downloadtk-9bc96b913d4e65e5c3521ced19512c89779a933d.zip
tk-9bc96b913d4e65e5c3521ced19512c89779a933d.tar.gz
tk-9bc96b913d4e65e5c3521ced19512c89779a933d.tar.bz2
--enable-shared is now the default that builds Tcl as a shared library. Use
--disable-shared and --enable-shared=no to build Tcl as a static library.
Diffstat (limited to 'unix')
-rw-r--r--unix/configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/configure.in b/unix/configure.in
index 0286472..c99acaf 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 Tk installation
dnl to configure the system for the local environment.
AC_INIT(../generic/tk.h)
-# RCS: @(#) $Id: configure.in,v 1.1.4.14 1999/03/22 19:55:52 redman Exp $
+# RCS: @(#) $Id: configure.in,v 1.1.4.15 1999/03/26 19:48:03 suresh Exp $
TK_VERSION=8.1
TK_MAJOR_VERSION=8
@@ -431,8 +431,8 @@ fi
#--------------------------------------------------------------------
AC_ARG_ENABLE(shared,
- [ --enable-shared build libtk as a shared library],
- [ok=$enableval], [ok=no])
+ [ --enable-shared build libtk as a shared library (on by default)],
+ [ok=$enableval], [ok=yes])
if test "$ok" = "yes" -a "${SHLIB_SUFFIX}" != ""; then
TK_SHARED_BUILD=1
TK_SHLIB_CFLAGS="${SHLIB_CFLAGS}"