summaryrefslogtreecommitdiffstats
path: root/unix/tcl.m4
diff options
context:
space:
mode:
authorstwo <stwo>2014-09-16 15:52:44 (GMT)
committerstwo <stwo>2014-09-16 15:52:44 (GMT)
commit76db7c5c047f92589956c4c5d0ae3eb6997dd69d (patch)
tree26f65c8515018cef08162c3debe999b991327bf3 /unix/tcl.m4
parent5f9519213f1ee34452f4fa7bd495a4c1ddada792 (diff)
downloadtcl-76db7c5c047f92589956c4c5d0ae3eb6997dd69d.zip
tcl-76db7c5c047f92589956c4c5d0ae3eb6997dd69d.tar.gz
tcl-76db7c5c047f92589956c4c5d0ae3eb6997dd69d.tar.bz2
Better pic flag for OpenBSD.
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r--unix/tcl.m49
1 files changed, 8 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index 437ce3d..c4e4675 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -1499,7 +1499,14 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [
LDFLAGS=""
;;
*)
- SHLIB_CFLAGS="-fPIC"
+ case "$arch" in
+ alpha|sparc64)
+ SHLIB_CFLAGS="-fPIC"
+ ;;
+ *)
+ SHLIB_CFLAGS="-fpic"
+ ;;
+ esac
SHLIB_LD='${CC} -shared ${SHLIB_CFLAGS}'
SHLIB_SUFFIX=".so"
DL_OBJS="tclLoadDl.o"