summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2000-02-08 10:06:58 (GMT)
committerhobbs <hobbs@noemail.net>2000-02-08 10:06:58 (GMT)
commit99fe292e8d4577e1c8880c1a0369ea57bd839121 (patch)
treee7916bc5a5a57d71490c3dbb4681113553cc8638 /unix
parentc09cca8534ab947221d0137f90a2d99005557858 (diff)
downloadtcl-99fe292e8d4577e1c8880c1a0369ea57bd839121.zip
tcl-99fe292e8d4577e1c8880c1a0369ea57bd839121.tar.gz
tcl-99fe292e8d4577e1c8880c1a0369ea57bd839121.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 FossilOrigin-Name: 6b327fb3d21be04e0fcc2404bb42a023b204a772
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"