summaryrefslogtreecommitdiff
path: root/configure.com
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2001-06-19 12:19:48 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-19 21:24:41 +0000
commit9b5878dfcb68ef2f9b4ea3468138a78a0face680 (patch)
treebf75ed7a0dbbc9b95e61e435841f154ab0642200 /configure.com
parent28f5ac64634a59c745f35fa344b1611121715c59 (diff)
downloadperl-9b5878dfcb68ef2f9b4ea3468138a78a0face680.tar.gz
build ext/Socket dynamically on VMS
Message-Id: <5.1.0.14.0.20010619165650.01bd8478@exchi01> p4raw-id: //depot/perl@10734
Diffstat (limited to 'configure.com')
-rw-r--r--configure.com9
1 files changed, 4 insertions, 5 deletions
diff --git a/configure.com b/configure.com
index d5de2003f4..a7459b049d 100644
--- a/configure.com
+++ b/configure.com
@@ -2149,10 +2149,6 @@ $ ans = F$EDIT(ans,"TRIM,COMPRESS,LOWERCASE")
$ IF ans.eqs."decc" then Has_Dec_C_Sockets = "T"
$ IF ans.eqs."socketshr" then Has_socketshr = "T"
$ ENDIF
-$ IF Has_Dec_C_Sockets .or. Has_socketshr
-$ THEN
-$ static_ext = f$edit(static_ext+" "+"Socket","trim,compress")
-$ ENDIF
$!
$!
$! Ask if they want to build with VMS_DEBUG perl
@@ -2485,7 +2481,10 @@ $ dflt = dflt - "GDBM_File" ! needs porting/special library
$ dflt = dflt - "IPC/SysV" ! needs to be ported
$ dflt = dflt - "NDBM_File" ! needs porting/special library
$ dflt = dflt - "ODBM_File" ! needs porting/special library
-$ dflt = dflt - "Socket" ! on VMS is optional static extension
+$ IF .NOT. Has_socketshr .AND. .NOT. Has_Dec_C_Sockets
+$ THEN
+$ dflt = dflt - "Socket" ! optional on VMS
+$ ENDIF
$ dflt = F$EDIT(dflt,"TRIM,COMPRESS")
$!
$! Ask for their default list of extensions to build