diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 1997-12-13 13:09:15 -0500 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-12-17 12:02:03 +0000 |
commit | dd96f567babd77c258fd51112ff376f11f0b32ac (patch) | |
tree | 25be9a2f30132eaa9bf9f5a5a2cafb22b3630ea3 /hints/os2.sh | |
parent | 414017bba678bf057e68f59bd92234bf578ec54e (diff) | |
download | perl-dd96f567babd77c258fd51112ff376f11f0b32ac.tar.gz |
Threading patches for OS/2 (missing files taken from previous patch):
Subject: Re: 5.004_55: OS/2 patches again
p4raw-id: //depot/perl@371
Diffstat (limited to 'hints/os2.sh')
-rw-r--r-- | hints/os2.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hints/os2.sh b/hints/os2.sh index 2a589b5cb4..a012a7317a 100644 --- a/hints/os2.sh +++ b/hints/os2.sh @@ -245,6 +245,15 @@ case "X$optimize" in ;; esac +if [ "X$usethreads" != "X" ]; then + ccflags="-DUSE_THREADS -Zmt $ccflags" + cppflags="-DUSE_THREADS -Zmt $cppflags" + aout_ccflags="-DUSE_THREADS $aout_ccflags" + aout_cppflags="-DUSE_THREADS $aout_cppflags" + aout_lddlflags="-Zmt $aout_lddlflags" + aout_ldflags="-Zmt $aout_ldflags" +fi + # The next two are commented. pdksh handles #!, extproc gives no path part. # sharpbang='extproc ' # shsharp='false' |