summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 ../..