This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
up $File::Glob::VERSION; add a note pointing out the version of
authorGurusamy Sarathy <gsar@cpan.org>
Wed, 11 Apr 2001 03:38:40 +0000 (03:38 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Wed, 11 Apr 2001 03:38:40 +0000 (03:38 +0000)
the OpenBSD glob bsd_glob.c resembles

p4raw-id: //depot/maint-5.6/perl@9679

ext/File/Glob/Glob.pm
ext/File/Glob/bsd_glob.c
ext/File/Glob/bsd_glob.h

index ccec0be..8181bec 100644 (file)
@@ -59,7 +59,7 @@ require AutoLoader;
     ) ],
 );
 
-$VERSION = '0.991';
+$VERSION = '1.0';
 
 sub import {
     my $i = 1;
index 4c121bd..ef9ca30 100644 (file)
@@ -32,6 +32,9 @@
 
 #if defined(LIBC_SCCS) && !defined(lint)
 static char sccsid[] = "@(#)glob.c     8.3 (Berkeley) 10/13/93";
+/* most changes between the version above and the one below have been ported:
+static char sscsid[]=  "$OpenBSD: glob.c,v 1.8.10.1 2001/04/10 jason Exp $";
+ */
 #endif /* LIBC_SCCS and not lint */
 
 /*
index c8a3abd..af92c04 100644 (file)
@@ -30,6 +30,7 @@
  * SUCH DAMAGE.
  *
  *     @(#)glob.h      8.1 (Berkeley) 6/2/93
+ *     [lots of perl-specific changes since then--see bsd_glob.c]
  */
 
 #ifndef _BSD_GLOB_H_