diff options
author | hobbs <hobbs> | 2000-02-08 10:06:58 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-02-08 10:06:58 (GMT) |
commit | 67763d47ff042080e9e4784101f27258c6148379 (patch) | |
tree | e7916bc5a5a57d71490c3dbb4681113553cc8638 /unix/tcl.m4 | |
parent | c8f6788c1a50158b77972cd8d404c11ca0ce14e0 (diff) | |
download | tcl-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/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
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" |