diff options
author | Craig A. Berry <craigberry@mac.com> | 2001-10-22 10:25:19 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-22 19:26:47 +0000 |
commit | 75bcfe6566a12999958024f9ae15002ab9161e6b (patch) | |
tree | d03b629ff1dea6757da6f149610726188c8b3622 /configure.com | |
parent | b30a9b8a637eb5e7d290288cb895c0488d9219e3 (diff) | |
download | perl-75bcfe6566a12999958024f9ae15002ab9161e6b.tar.gz |
configure.com: no threads/shared without ithreads
Message-Id: <5.1.0.14.2.20011022151232.032544e8@exchi01>
p4raw-id: //depot/perl@12584
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.com b/configure.com index 2c4f1be9d2..04144adfc9 100644 --- a/configure.com +++ b/configure.com @@ -2524,7 +2524,11 @@ $ IF .NOT. Has_socketshr .AND. .NOT. Has_Dec_C_Sockets $ THEN $ dflt = dflt - "Socket" ! optional on VMS $ ENDIF -$ IF .NOT. use_ithreads THEN dflt = dflt - "threads" +$ IF .NOT. use_ithreads +$ THEN +$ dflt = dflt - "threads/shared" +$ dflt = dflt - "threads" +$ ENDIF $ dflt = F$EDIT(dflt,"TRIM,COMPRESS") $! $! Ask for their default list of extensions to build |