diff options
author | wtchang%redhat.com <devnull@localhost> | 2005-03-09 21:24:03 +0000 |
---|---|---|
committer | wtchang%redhat.com <devnull@localhost> | 2005-03-09 21:24:03 +0000 |
commit | bdf8f49122e9754547f46accde21bb7948c4de51 (patch) | |
tree | a45791dac358407374bd9bb90cbaa99f6d060dbd /configure.in | |
parent | de7a255880416b87f419db232e702d7ac5eeede8 (diff) | |
download | nspr-hg-bdf8f49122e9754547f46accde21bb7948c4de51.tar.gz |
Bugzilla bug 256508: make --with-pthreads the default on OpenBSD. The
fix was tested by Jim Rees <rees@umich.edu>.
Modified Files: configure.in configure
Tag: NSPRPUB_PRE_4_2_CLIENT_BRANCH
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 97807fd3..d91fc4a6 100644 --- a/configure.in +++ b/configure.in @@ -1552,7 +1552,9 @@ mips-sony-newsos*) DSO_CFLAGS=-fPIC MDCPUCFG_H=_openbsd.cfg PR_MD_CSRCS=openbsd.c - USE_NSPR_THREADS=1 + if test -z "$USE_NSPR_THREADS"; then + USE_PTHREADS=1 + fi DSO_LDOPTS='-shared -fPIC' MKSHLIB='$(CC) $(DSO_LDOPTS) -o $@' ;; |