summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-02-02 13:43:24 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-02-02 13:43:24 +0000
commit7162771d58ae1c494a77e94588d66265a29e1159 (patch)
treee2453ae24eccc13cd86fecbbca95374fe62f012c /hints
parent73d40b3e8e2639688f6a52079a430333769fcb55 (diff)
downloadperl-7162771d58ae1c494a77e94588d66265a29e1159.tar.gz
Synch usethreads parts from maint-5.005.
p4raw-id: //depot/cfgperl@2777
Diffstat (limited to 'hints')
-rw-r--r--hints/dos_djgpp.sh1
-rw-r--r--hints/irix_6.sh2
-rw-r--r--hints/os2.sh30
3 files changed, 16 insertions, 17 deletions
diff --git a/hints/dos_djgpp.sh b/hints/dos_djgpp.sh
index db09cbc6d9..7c59428c7e 100644
--- a/hints/dos_djgpp.sh
+++ b/hints/dos_djgpp.sh
@@ -63,4 +63,3 @@ $define|true|[yY]*)
;;
esac
EOCBU
-
diff --git a/hints/irix_6.sh b/hints/irix_6.sh
index cb2f5dd609..6a115b85bd 100644
--- a/hints/irix_6.sh
+++ b/hints/irix_6.sh
@@ -177,7 +177,7 @@ EOM
6.2)
cat >&4 <<EOM
IRIX 6.2 can have the POSIX threads.
-However,the following IRIX patches (or their replacements) MUST be installed:
+However, the following IRIX patches (or their replacements) MUST be installed:
1404 Irix 6.2 Posix 1003.1b man pages
1645 IRIX 6.2 & 6.3 POSIX header file updates
2000 Irix 6.2 Posix 1003.1b support modules
diff --git a/hints/os2.sh b/hints/os2.sh
index fe0c2d3ab5..5365522c5a 100644
--- a/hints/os2.sh
+++ b/hints/os2.sh
@@ -261,6 +261,21 @@ d_setprior='define'
cp ./README.os2 ./pod/perlos2.pod
+# This script UU/usethreads.cbu will get 'called-back' by Configure
+# after it has prompted the user for whether to use threads.
+cat > UU/usethreads.cbu <<'EOCBU'
+case "$usethreads" in
+$define|true|[yY]*)
+ ccflags="-Zmt $ccflags"
+ cppflags="-Zmt $cppflags" # Do we really need to set this?
+ aout_ccflags="-DUSE_THREADS $aout_ccflags"
+ aout_cppflags="-DUSE_THREADS $aout_cppflags"
+ aout_lddlflags="-Zmt $aout_lddlflags"
+ aout_ldflags="-Zmt $aout_ldflags"
+ ;;
+esac
+EOCBU
+
# Now install the external modules. We are in the ./hints directory.
cd ./os2/OS2
@@ -289,20 +304,5 @@ for xxx in * ; do
fi
done
-# This script UU/usethreads.cbu will get 'called-back' by Configure
-# after it has prompted the user for whether to use threads.
-cat > UU/usethreads.cbu <<'EOCBU'
-case "$usethreads" in
-$define|true|[yY]*)
- ccflags="-Zmt $ccflags"
- cppflags="-Zmt $cppflags" # Do we really need to set this?
- aout_ccflags="-DUSE_THREADS $aout_ccflags"
- aout_cppflags="-DUSE_THREADS $aout_cppflags"
- aout_lddlflags="-Zmt $aout_lddlflags"
- aout_ldflags="-Zmt $aout_ldflags"
- ;;
-esac
-EOCBU
-
# Now go back
cd ../..