From 3e6cd210414b55818e320df382cfa8540a609bd0 Mon Sep 17 00:00:00 2001 From: stefanjones Date: Mon, 14 Apr 2003 10:27:39 +0000 Subject: [PATCH] * configure.in: Tcl disables shared --- ChangeLog | 4 ++++ configure.in | 28 +++++++++++++--------------- 2 files changed, 17 insertions(+), 15 deletions(-) diff --git a/ChangeLog b/ChangeLog index 209d86836..4409a9506 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-04-14 Stefan Jones + + * configure.in: Made Tcl disable-shared and print info at end of configure + 2001-12-05 Emmanuel Rouat * configure.in: removed (unnecessary) macros to handle GNU getopt diff --git a/configure.in b/configure.in index f350f7447..5cc429cb2 100644 --- a/configure.in +++ b/configure.in @@ -111,22 +111,13 @@ fi dnl Chech system we're on , and tune accordingly AC_CANONICAL_HOST - -dnl Checks for programs - -AC_LIBTOOL_DLOPEN -AM_PROG_LIBTOOL - - - - dnl dnl The tclSpice options dnl if test "$enable_tcl" = "yes"; then AC_DEFINE(TCL_MODULE) with_x=no - + enable_shared=no AC_MSG_CHECKING([for tclConfig.sh]) tcl_config_sh="" @@ -211,6 +202,13 @@ fi AC_SUBST(TCL_PACKAGE_PATH) AC_SUBST(TCL_BUILD_LIB_SPEC) + +dnl Checks for programs + +AC_LIBTOOL_DLOPEN +AM_PROG_LIBTOOL + + dnl Checks for X11 header files and libraries - X11 support can be disabled dnl by passing the '--without-x' option to configure: @@ -387,11 +385,6 @@ AC_SUBST(XSPICEDIR) AC_SUBST(XSPICELIB1) AC_SUBST(XSPICELIB2) -dnl Printout Tcl option -if test "$enable_tcl" = "yes"; then - AC_MSG_RESULT(Tcl module being made, use "make tcl" and "make tcl_install", read README in src/tcl/README) -fi - dnl Cluster option if test "$enable_cluster" = "yes"; then AC_MSG_RESULT(Cluster version is being compiled) @@ -489,3 +482,8 @@ tests/bsim3soidd/Makefile \ tests/bsim4/Makefile \ tests/mesa/Makefile ) + +dnl Printout Tcl option +if test "$enable_tcl" = "yes"; then + echo 'Tcl module being made, use "make tcl" and "make install-tcl", read README in src/tcl/README' +fi