From: Nicholas Clark Date: Thu, 5 Feb 2009 14:14:53 +0000 (+0000) Subject: Exclude VMS extensions on non-VMS. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=aefe3e7eb5caf2308d0c098e045a537a24dc42b6;p=p5sagit%2Fp5-mst-13.2.git Exclude VMS extensions on non-VMS. --- diff --git a/Configure b/Configure index 71f997f..6063e53 100755 --- 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 --- 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;