diff options
author | peter <peter@FreeBSD.org> | 1996-08-29 10:40:03 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-08-29 10:40:03 +0000 |
commit | fcf3d725cab8a9b38ca6dc841a78a01d6cbe632a (patch) | |
tree | bee443586e177342b5555d3d99509567b226a6ae /lib/libtcl/tclConfig.sh | |
parent | df15b999312f93c7d54bb5b2d96f55ee59f850d5 (diff) | |
download | FreeBSD-src-fcf3d725cab8a9b38ca6dc841a78a01d6cbe632a.zip FreeBSD-src-fcf3d725cab8a9b38ca6dc841a78a01d6cbe632a.tar.gz |
Regenerate Makefile with mkMakefile.sh, add generated tclConfig.sh
Diffstat (limited to 'lib/libtcl/tclConfig.sh')
-rw-r--r-- | lib/libtcl/tclConfig.sh | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/lib/libtcl/tclConfig.sh b/lib/libtcl/tclConfig.sh new file mode 100644 index 0000000..3bebf98 --- /dev/null +++ b/lib/libtcl/tclConfig.sh @@ -0,0 +1,99 @@ +# tclConfig.sh -- +# +# This shell script (for sh) is generated automatically by Tcl's +# configure script. It will create shell variables for most of +# the configuration options discovered by the configure script. +# This script is intended to be included by the configure scripts +# for Tcl extensions so that they don't have to figure this all +# out for themselves. +# +# The information in this file is specific to a single platform. +# +# SCCS: @(#) tclConfig.sh.in 1.15 96/04/17 10:46:27 + +# Tcl's version number. +TCL_VERSION='7.5' +TCL_MAJOR_VERSION='7' +TCL_MINOR_VERSION='5' + +# C compiler to use for compilation. +TCL_CC='cc' + +# -D flags for use with the C compiler. +TCL_DEFS=' -DHAVE_UNISTD_H=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_TM_ZONE=1 -DHAVE_TM_GMTOFF=1 -DSTDC_HEADERS=1 -DNEED_MATHERR=1 ' + +# The name of the Tcl library (may be either a .a file or a shared library): +TCL_LIB_FILE=libtcl75.so.1.0 + +# Additional libraries to use when linking Tcl. +TCL_LIBS=' -lm' + +# Top-level directory in which Tcl's platform-independent files are +# installed. +TCL_PREFIX='/usr' + +# Top-level directory in which Tcl's platform-specific files (e.g. +# executables) are installed. +TCL_EXEC_PREFIX='/usr' + +# Flags to pass to cc when compiling the components of a shared library: +TCL_SHLIB_CFLAGS='-fPIC' + +# Base command to use for combining object files into a shared library: +TCL_SHLIB_LD='ld -Bshareable' + +# Either '$LIBS' (if dependent libraries should be included when linking +# shared libraries) or an empty string. See Tcl's configure.in for more +# explanation. +TCL_SHLIB_LD_LIBS='' + +# Suffix to use for the name of a shared library. +TCL_SHLIB_SUFFIX='.so' + +# Library file(s) to include in tclsh and other base applications +# in order to provide facilities needed by DLOBJ above. +TCL_DL_LIBS='' + +# Flags to pass to the compiler when linking object files into +# an executable tclsh or tcltest binary. +TCL_LD_FLAGS='' + +# Flags to pass to ld, such as "-R /usr/local/tcl/lib", that tell the +# run-time dynamic linker where to look for shared libraries such as +# libtcl.so. Used when linking applications. Only works if there +# is a variable "LIB_INSTALL_DIR" defined in the Makefile. +TCL_LD_SEARCH_FLAGS='' + +# Additional object files linked with Tcl to provide compatibility +# with standard facilities from ANSI C or POSIX. +TCL_COMPAT_OBJS='' + +# Name of the ranlib program to use. +TCL_RANLIB=':' + +# String to pass to linker to pick up the Tcl library from its +# build directory. +#XXX not available# TCL_BUILD_LIB_SPEC='-L/home/src/contrib/tcl/unix -ltcl75' + +# String to pass to linker to pick up the Tcl library from its +# installed directory. +TCL_LIB_SPEC='-L/usr/lib -ltcl75' + +# Indicates whether a version numbers should be used in -l switches +# ("ok" means it's safe to use switches like -ltcl7.5; "nodots" means +# use switches like -ltcl75). SunOS and FreeBSD require "nodots", for +# example. +TCL_LIB_VERSIONS_OK='nodots' + +# String that can be evaluated to generate the part of a shared library +# name that comes after the "libxxx" (includes version number, if any, +# extension, and anything else needed). May depend on the variables +# VERSION and SHLIB_SUFFIX. On most UNIX systems this is +# ${VERSION}${SHLIB_SUFFIX}. +TCL_SHARED_LIB_SUFFIX='`echo ${VERSION} | tr -d .`.so.1.0' + +# String that can be evaluated to generate the part of an unshared library +# name that comes after the "libxxx" (includes version number, if any, +# extension, and anything else needed). May depend on the variable +# VERSION. On most UNIX systems this is ${VERSION}.a. +TCL_UNSHARED_LIB_SUFFIX='`echo ${VERSION} | tr -d .`.a' |