1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-24 21:49:29 +03:00

added Parse::RecDescent module into pidl to ensure we all use the same

version. This should fix the problems Richard was seeing.
This commit is contained in:
Andrew Tridgell
-
parent 5962f1cffa
commit 76c24a5cb0
4 changed files with 3058 additions and 1 deletions

View File

@ -1,5 +1,5 @@
idl.pm: idl.gram
perl -MParse::RecDescent - idl.gram idl
perl -Ilib -MParse::RecDescent - idl.gram idl
clean:
rm -f idl.pm

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,11 @@
Many thanks to Damian Conway for his excellent Parse::Recdescent
package. I have included a copy of it here to prevent problems with
differing versions and pidl. The original package is distributed with
the following copyright:
COPYRIGHT
Copyright (c) 1997-2000, Damian Conway. All Rights Reserved.
This module is free software. It may be used, redistributed
and/or modified under the terms of the Perl Artistic License
(see http://www.perl.com/perl/misc/Artistic.html)

View File

@ -10,6 +10,7 @@ use strict;
use FindBin qw($RealBin);
use lib "$RealBin";
use lib "$RealBin/lib";
use Getopt::Long;
use idl;
use dump;