Synch usethreads parts from maint-5.005.
Jarkko Hietaniemi [Tue, 2 Feb 1999 13:43:24 +0000 (13:43 +0000)]
p4raw-id: //depot/cfgperl@2777

hints/dos_djgpp.sh
hints/irix_6.sh
hints/os2.sh

index db09cbc..7c59428 100644 (file)
@@ -63,4 +63,3 @@ $define|true|[yY]*)
        ;;
 esac
 EOCBU
-
index cb2f5dd..6a115b8 100644 (file)
@@ -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
index fe0c2d3..5365522 100644 (file)
@@ -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 ../..