diff options
author | stwo <stwo> | 2010-02-19 13:25:06 (GMT) |
---|---|---|
committer | stwo <stwo> | 2010-02-19 13:25:06 (GMT) |
commit | 76bfa8368792738afb69378d51241d1b8d7385ad (patch) | |
tree | 9be0aeb733939ab2133c450205043fccda70b334 /unix/configure | |
parent | 57ee061f92f967744eb386d744f4fb4d41534e55 (diff) | |
download | tcl-76bfa8368792738afb69378d51241d1b8d7385ad.zip tcl-76bfa8368792738afb69378d51241d1b8d7385ad.tar.gz tcl-76bfa8368792738afb69378d51241d1b8d7385ad.tar.bz2 |
Correct compiler/linker flags for threaded builds on OpenBSD.
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/unix/configure b/unix/configure index 41cd40a..576abf2 100755 --- a/unix/configure +++ b/unix/configure @@ -7697,6 +7697,14 @@ else LDFLAGS="" fi + if test "${TCL_THREADS}" = "1"; then + + # OpenBSD builds and links with -pthread, never -lpthread. + LIBS=`echo $LIBS | sed s/-lpthread//` + CFLAGS="$CFLAGS -pthread" + SHLIB_CFLAGS="$SHLIB_CFLAGS -pthread" + +fi # OpenBSD doesn't do version numbers with dots. UNSHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}.a' @@ -8952,7 +8960,7 @@ fi BSD/OS*) ;; CYGWIN_*) ;; IRIX*) ;; - NetBSD-*|FreeBSD-*) ;; + NetBSD-*|FreeBSD-*|OpenBSD-*) ;; Darwin-*) ;; SCO_SV-3.2*) ;; *) SHLIB_CFLAGS="-fPIC" ;; |