summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-11-06 20:01:22 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:24:56 -0500
commit5c3fd8e4717ec7167a67f9e9ee1e2d86f7d515a8 (patch)
treeb16ae1fcc626cf915f92ba73f8ccd220e6af03b8 /source4
parent7218b3b878fe74b8bd739443a38cb2409d332e20 (diff)
downloadsamba-5c3fd8e4717ec7167a67f9e9ee1e2d86f7d515a8.tar.gz
samba-5c3fd8e4717ec7167a67f9e9ee1e2d86f7d515a8.tar.bz2
samba-5c3fd8e4717ec7167a67f9e9ee1e2d86f7d515a8.zip
r19580: Add --includedir option.
(This used to be commit b076bfa39fefafcf30ac5be5056abfd629338fa5)
Diffstat (limited to 'source4')
-rw-r--r--source4/pidl/idl.yp7
-rw-r--r--source4/pidl/lib/Parse/Pidl/IDL.pm7
-rwxr-xr-xsource4/pidl/pidl14
3 files changed, 19 insertions, 9 deletions
diff --git a/source4/pidl/idl.yp b/source4/pidl/idl.yp
index 43f1db82c8..8c2d039ad7 100644
--- a/source4/pidl/idl.yp
+++ b/source4/pidl/idl.yp
@@ -470,9 +470,9 @@ sub parse_string
return CleanData($idl);
}
-sub parse_file($)
+sub parse_file($$)
{
- my ($filename) = @_;
+ my ($filename,$incdirs) = @_;
my $saved_delim = $/;
undef $/;
@@ -480,7 +480,8 @@ sub parse_file($)
if (! defined $cpp) {
$cpp = "cpp";
}
- my $data = `$cpp -D__PIDL__ -xc $filename`;
+ my $includes = map { " -I$_" } @$incdirs;
+ my $data = `$cpp -D__PIDL__$includes -xc $filename`;
$/ = $saved_delim;
return parse_string($data, $filename);
diff --git a/source4/pidl/lib/Parse/Pidl/IDL.pm b/source4/pidl/lib/Parse/Pidl/IDL.pm
index b9c39f186e..87b4ccb5e5 100644
--- a/source4/pidl/lib/Parse/Pidl/IDL.pm
+++ b/source4/pidl/lib/Parse/Pidl/IDL.pm
@@ -2987,9 +2987,9 @@ sub parse_string
return CleanData($idl);
}
-sub parse_file($)
+sub parse_file($$)
{
- my ($filename) = @_;
+ my ($filename,$incdirs) = @_;
my $saved_delim = $/;
undef $/;
@@ -2997,7 +2997,8 @@ sub parse_file($)
if (! defined $cpp) {
$cpp = "cpp";
}
- my $data = `$cpp -D__PIDL__ -xc $filename`;
+ my $includes = map { " -I$_" } @$incdirs;
+ my $data = `$cpp -D__PIDL__$includes -xc $filename`;
$/ = $saved_delim;
return parse_string($data, $filename);
diff --git a/source4/pidl/pidl b/source4/pidl/pidl
index 669ca270f8..397378e443 100755
--- a/source4/pidl/pidl
+++ b/source4/pidl/pidl
@@ -17,7 +17,7 @@ pidl - An IDL compiler written in Perl
pidl --help
-pidl [--outputdir[=OUTNAME]] [--parse-idl-tree] [--dump-idl-tree] [--dump-ndr-tree] [--header[=OUTPUT]] [--ejs[=OUTPUT]] [--swig[=OUTPUT]] [--uint-enums] [--ndr-parser[=OUTPUT]] [--client] [--server] [--dcom-proxy] [--com-header] [--warn-compat] [--quiet] [--verbose] [--template] [--ws-parser[=OUTPUT]] [--diff] [--dump-idl] [--tdr-parser[=OUTPUT]] [--samba3-ndr-client[=OUTPUT]] [--samba3-ndr-server[=OUTPUT]] [<idlfile>.idl]...
+pidl [--outputdir[=OUTNAME]] [--includedir DIR...] [--parse-idl-tree] [--dump-idl-tree] [--dump-ndr-tree] [--header[=OUTPUT]] [--ejs[=OUTPUT]] [--swig[=OUTPUT]] [--uint-enums] [--ndr-parser[=OUTPUT]] [--client] [--server] [--dcom-proxy] [--com-header] [--warn-compat] [--quiet] [--verbose] [--template] [--ws-parser[=OUTPUT]] [--diff] [--dump-idl] [--tdr-parser[=OUTPUT]] [--samba3-ndr-client[=OUTPUT]] [--samba3-ndr-server[=OUTPUT]] [<idlfile>.idl]...
=head1 DESCRIPTION
@@ -57,6 +57,11 @@ Show list of available options.
Write output files to the specified directory. Defaults to the current
directory.
+
+=item I<--includedir DIR>
+
+Add DIR to the search path used by the preprocessor. This option can be
+specified multiple times.
=item I<--parse-idl-tree>
@@ -440,6 +445,7 @@ sub FileSave($$)
close(FILE);
}
+my(@opt_incdirs) = ();
my($opt_help) = 0;
my($opt_parse_idl_tree) = 0;
my($opt_dump_idl_tree);
@@ -484,6 +490,7 @@ Generic Options:
--warn-compat warn about incompatibility with other compilers
--quiet be quiet
--verbose be verbose
+ --includedir DIR search DIR for included files
Debugging:
--dump-idl-tree[=FILE] dump internal representation to file [BASENAME.pidl]
@@ -542,7 +549,8 @@ my $result = GetOptions (
'com-header:s' => \$opt_com_header,
'quiet' => \$opt_quiet,
'verbose' => \$opt_verbose,
- 'warn-compat' => \$opt_warn_compat
+ 'warn-compat' => \$opt_warn_compat,
+ 'includedir=s@' => \@opt_incdirs
);
if (not $result) {
@@ -571,7 +579,7 @@ sub process_file($)
} else {
require Parse::Pidl::IDL;
- $pidl = Parse::Pidl::IDL::parse_file($idl_file);
+ $pidl = Parse::Pidl::IDL::parse_file($idl_file, \@opt_incdirs);
defined @$pidl || die "Failed to parse $idl_file";
require Parse::Pidl::Typelist;
Parse::Pidl::Typelist::LoadIdl($pidl);