1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-08 05:57:51 +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 used to be commit 76c24a5cb09b096a9cb490f3bb42af0b9d0f5fa9)
This commit is contained in:
Andrew Tridgell 2003-11-22 01:40:24 +00:00
parent 2ca65a99c7
commit 3f2598abad
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;