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:
parent
2ca65a99c7
commit
3f2598abad
@ -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
|
||||
|
3045
source4/build/pidl/lib/Parse/RecDescent.pm
Normal file
3045
source4/build/pidl/lib/Parse/RecDescent.pm
Normal file
File diff suppressed because it is too large
Load Diff
11
source4/build/pidl/lib/README
Normal file
11
source4/build/pidl/lib/README
Normal 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)
|
@ -10,6 +10,7 @@ use strict;
|
||||
|
||||
use FindBin qw($RealBin);
|
||||
use lib "$RealBin";
|
||||
use lib "$RealBin/lib";
|
||||
use Getopt::Long;
|
||||
use idl;
|
||||
use dump;
|
||||
|
Loading…
x
Reference in New Issue
Block a user