diff options
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)); } |