Exclude VMS extensions on non-VMS.
Nicholas Clark [Thu, 5 Feb 2009 14:14:53 +0000 (14:14 +0000)]
Configure
win32/FindExt.pm

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" ;;
index 9ba18b6..830619e 100644 (file)
@@ -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;