projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
e2c1c28
)
Exclude VMS extensions on non-VMS.
Nicholas Clark [Thu, 5 Feb 2009 14:14:53 +0000 (14:14 +0000)]
Configure
patch
|
blob
|
blame
|
history
win32/FindExt.pm
patch
|
blob
|
blame
|
history
diff --git
a/Configure
b/Configure
index
71f997f
..
6063e53
100755
(executable)
--- a/
Configure
+++ b/
Configure
@@
-21759,6
+21759,8
@@
for xxx in $known_extensions ; do
# --jhi
avail_ext="$avail_ext $xxx"
;;
+ VMS*)
+ ;;
Win32*)
case "$osname" in
cygwin) avail_ext="$avail_ext $xxx" ;;
diff --git
a/win32/FindExt.pm
b/win32/FindExt.pm
index
9ba18b6
..
830619e
100644
(file)
--- a/
win32/FindExt.pm
+++ b/
win32/FindExt.pm
@@
-6,7
+6,7
@@
use strict;
use warnings;
my $no = join('|',qw(GDBM_File ODBM_File NDBM_File DB_File
- Syslog SysV Langinfo));
+ VMS Syslog SysV Langinfo));
$no = qr/^(?:$no)$/i;
my %ext;