diff options
author | Craig A. Berry <craigberry@mac.com> | 2007-05-16 03:08:51 +0000 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2007-05-16 03:08:51 +0000 |
commit | 112b974cac4fae625cc04bc3d230ed4864cde8f4 (patch) | |
tree | 36a33de021f8eda199ebed9cab54b868ae3d1305 /configure.com | |
parent | 56b27c9aa7f7f437454756acd9a09e4d194e45fe (diff) | |
download | perl-112b974cac4fae625cc04bc3d230ed4864cde8f4.tar.gz |
Better suppression of Threads build (probably still needed on 5.8.x)
p4raw-id: //depot/perl@31226
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.com b/configure.com index b4fdaf2757..b6c923d825 100644 --- a/configure.com +++ b/configure.com @@ -2774,7 +2774,12 @@ $ THEN $ dflt = dflt - "Socket" ! optional on VMS $ ENDIF $ ! Build this one only for threads without ithreads -$ IF useithreads .OR. useithreads .EQS. "define" .OR. .NOT. use_threads THEN dflt = dflt - "Thread" +$ IF F$TYPE(useithreads) .EQS. "" .OR. .NOT. use_threads +$ THEN +$ dflt = dflt - "Thread" +$ ELSE +$ IF useithreads .OR. useithreads .EQS. "define" THEN dflt = dflt - "Thread" +$ ENDIF $ dflt = dflt - "Win32API/File" - "Win32CORE" - "Win32" ! need Dave Cutler's other project $ dflt = F$EDIT(dflt,"TRIM,COMPRESS") $! |