diff options
author | Craig A. Berry <craigberry@mac.com> | 2007-02-26 13:36:41 +0000 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2007-02-26 13:36:41 +0000 |
commit | 428c2b4eb54f86e0c7b5afda2dc907e1069149c2 (patch) | |
tree | 0e6bfbc89c4e35b5201cb1097f099eddfea51ed2 /configure.com | |
parent | 57d226e4c036539e44197f78a5d0e896298c6424 (diff) | |
download | perl-428c2b4eb54f86e0c7b5afda2dc907e1069149c2.tar.gz |
In configure.com, include the Win32 extensions in $Config{known_extensions},
but not it $Config{extensions}. This way t/TEST knows to exclude them.
p4raw-id: //depot/perl@30410
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.com b/configure.com index a5ae57729b..d4b5273837 100644 --- a/configure.com +++ b/configure.com @@ -2747,7 +2747,6 @@ $ IF xxx .EQS. "DynaLoader" THEN goto ext_loop ! omit $ IF xxx .EQS. "SDBM_File/sdbm" THEN goto ext_loop ! sub extension - omit $ IF xxx .EQS. "Devel/PPPort/harness" THEN goto ext_loop ! sub extension - omit $ IF F$EXTRACT(0,7,xxx) .EQS. "Encode/" THEN goto ext_loop ! sub extension - omit -$ IF F$EXTRACT(0,5,xxx) .EQS. "Win32" THEN goto ext_loop ! no Win32 API here $ IF xxx .EQS. "B/C" THEN goto ext_loop ! sub extension - omit $ IF F$EXTRACT(0,8,line) .EQS. "vms/ext/" THEN - xxx = "VMS/" + F$EXTRACT(8,line_len - 20,line) @@ -2774,6 +2773,7 @@ $ THEN $ dflt = dflt - "Socket" ! optional on VMS $ ENDIF $ IF .NOT. use_threads THEN dflt = dflt - "Thread" +$ dflt = dflt - "Win32API/File" - "Win32CORE" - "Win32" ! need Dave Cutler's other project $ dflt = F$EDIT(dflt,"TRIM,COMPRESS") $! $! Ask for their default list of extensions to build |