diff options
author | Tim Potter <tpot@samba.org> | 2004-05-07 11:57:31 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:51:47 -0500 |
commit | dee25d910e5ed3d07a240cebe8600f4a95c94159 (patch) | |
tree | 98a3c396108d4ff109e132f3842277b62fce2580 /source4/build/pidl/pidl.pl | |
parent | 7e921fb96d9310e649a7d73972a0a87af8cb1233 (diff) | |
download | samba-dee25d910e5ed3d07a240cebe8600f4a95c94159.tar.gz samba-dee25d910e5ed3d07a240cebe8600f4a95c94159.tar.bz2 samba-dee25d910e5ed3d07a240cebe8600f4a95c94159.zip |
r550: Remove clientfns.pm module - it was a bad idea.
Start to resurrect eparser.pm for auto-generating ethereal dissectors
for rpc.
(This used to be commit 993a18dd35fb0b09c088eb2bb38d3e14ff755130)
Diffstat (limited to 'source4/build/pidl/pidl.pl')
-rwxr-xr-x | source4/build/pidl/pidl.pl | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/source4/build/pidl/pidl.pl b/source4/build/pidl/pidl.pl index b390ba7728..022dc393d5 100755 --- a/source4/build/pidl/pidl.pl +++ b/source4/build/pidl/pidl.pl @@ -17,7 +17,6 @@ use idl; use dump; use header; use server; -use clientfns; use parser; use eparser; use validator; @@ -32,7 +31,6 @@ my($opt_header) = 0; my($opt_template) = 0; my($opt_server) = 0; my($opt_parser) = 0; -my($opt_clientfns) = 0; my($opt_eparser) = 0; my($opt_keep) = 0; my($opt_output); @@ -86,7 +84,6 @@ GetOptions ( 'server' => \$opt_server, 'template' => \$opt_template, 'parser' => \$opt_parser, - 'clientfns' => \$opt_clientfns, 'eparser' => \$opt_eparser, 'diff' => \$opt_diff, 'keep' => \$opt_keep @@ -146,13 +143,8 @@ sub process_file($) IdlParser::Parse($pidl, $parser); } - if ($opt_clientfns) { - my($clientfns) = util::ChangeExtension($output, "_c.c"); - util::FileSave($clientfns, IdlClientFns::Parse($pidl)); - } - if ($opt_eparser) { - my($parser) = util::ChangeExtension($output, ".c"); + my($parser) = util::ChangeExtension($output, "_ethereal.c"); util::FileSave($parser, IdlEParser::Parse($pidl)); } |