summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-02-08 10:06:58 (GMT)
committerhobbs <hobbs>2000-02-08 10:06:58 (GMT)
commit67763d47ff042080e9e4784101f27258c6148379 (patch)
treee7916bc5a5a57d71490c3dbb4681113553cc8638 /unix
parentc8f6788c1a50158b77972cd8d404c11ca0ce14e0 (diff)
downloadtcl-67763d47ff042080e9e4784101f27258c6148379.zip
tcl-67763d47ff042080e9e4784101f27258c6148379.tar.gz
tcl-67763d47ff042080e9e4784101f27258c6148379.tar.bz2
* unix/configure.in:
* win/configure.in: * win/README: * win/README.binary: * generic/tcl.h (TCL_RELEASE_SERIAL): Moved to 8.3.0 patchlevel * unix/tcl.m4: changed all -fpic to -fPIC
Diffstat (limited to 'unix')
-rw-r--r--unix/configure.in4
-rw-r--r--unix/tcl.m46
2 files changed, 5 insertions, 5 deletions
diff --git a/unix/configure.in b/unix/configure.in
index 92f203b..ae36606 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -2,12 +2,12 @@ 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.
AC_INIT(../generic/tcl.h)
-# RCS: @(#) $Id: configure.in,v 1.54 2000/01/14 00:20:51 hobbs Exp $
+# RCS: @(#) $Id: configure.in,v 1.55 2000/02/08 10:06:58 hobbs Exp $
TCL_VERSION=8.3
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=3
-TCL_PATCH_LEVEL="b2"
+TCL_PATCH_LEVEL=".0"
VERSION=${TCL_VERSION}
#------------------------------------------------------------------------
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index de5657f..f8828b1 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -799,7 +799,7 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [
;;
FreeBSD-*)
# FreeBSD 3.* and greater have ELF.
- SHLIB_CFLAGS="-fpic"
+ SHLIB_CFLAGS="-fPIC"
SHLIB_LD="ld -Bshareable -x"
SHLIB_LD_LIBS=""
SHLIB_SUFFIX=".so"
@@ -836,7 +836,7 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [
;;
OSF1-1.*)
# OSF/1 1.3 from OSF using ELF, and derivatives, including AD2
- SHLIB_CFLAGS="-fpic"
+ SHLIB_CFLAGS="-fPIC"
SHLIB_LD="ld -shared"
SHLIB_LD_LIBS=""
SHLIB_SUFFIX=".so"
@@ -886,7 +886,7 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [
# this test works, since "uname -s" was non-standard in 3.2.4 and
# below.
if test "$using_gcc" = "yes" ; then
- SHLIB_CFLAGS="-fpic -melf"
+ SHLIB_CFLAGS="-fPIC -melf"
LDFLAGS="-melf -Wl,-Bexport"
else
SHLIB_CFLAGS="-Kpic -belf"