diff options
-rwxr-xr-x | source4/pidl/Makefile.PL | 15 | ||||
-rw-r--r-- | source4/pidl/README | 18 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl.pm (renamed from source4/pidl/Parse/Pidl.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Compat.pm (renamed from source4/pidl/Parse/Pidl/Compat.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Dump.pm (renamed from source4/pidl/Parse/Pidl/Dump.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm (renamed from source4/pidl/Parse/Pidl/Ethereal/Conformance.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm (renamed from source4/pidl/Parse/Pidl/Ethereal/NDR.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/IDL.pm (renamed from source4/pidl/Parse/Pidl/IDL.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/NDR.pm (renamed from source4/pidl/Parse/Pidl/NDR.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/ODL.pm (renamed from source4/pidl/Parse/Pidl/ODL.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba/COM/Header.pm (renamed from source4/pidl/Parse/Pidl/Samba/COM/Header.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba/COM/Proxy.pm (renamed from source4/pidl/Parse/Pidl/Samba/COM/Proxy.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba/COM/Stub.pm (renamed from source4/pidl/Parse/Pidl/Samba/COM/Stub.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba/EJS.pm (renamed from source4/pidl/Parse/Pidl/Samba/EJS.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba/EJSHeader.pm (renamed from source4/pidl/Parse/Pidl/Samba/EJSHeader.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba/Header.pm (renamed from source4/pidl/Parse/Pidl/Samba/Header.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba/NDR/Client.pm (renamed from source4/pidl/Parse/Pidl/Samba/NDR/Client.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm (renamed from source4/pidl/Parse/Pidl/Samba/NDR/Header.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba/NDR/Parser.pm (renamed from source4/pidl/Parse/Pidl/Samba/NDR/Parser.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba/NDR/Server.pm (renamed from source4/pidl/Parse/Pidl/Samba/NDR/Server.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba/SWIG.pm (renamed from source4/pidl/Parse/Pidl/Samba/SWIG.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba/TDR.pm (renamed from source4/pidl/Parse/Pidl/Samba/TDR.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba/Template.pm (renamed from source4/pidl/Parse/Pidl/Samba/Template.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Test.pm (renamed from source4/pidl/Parse/Pidl/Test.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Typelist.pm (renamed from source4/pidl/Parse/Pidl/Typelist.pm) | 0 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Util.pm (renamed from source4/pidl/Parse/Pidl/Util.pm) | 0 | ||||
-rwxr-xr-x | source4/pidl/pidl | 1 | ||||
-rwxr-xr-x | source4/script/build_idl.sh | 2 |
28 files changed, 32 insertions, 4 deletions
diff --git a/source4/pidl/Makefile.PL b/source4/pidl/Makefile.PL index ae862bfdb5..efa94dc068 100755 --- a/source4/pidl/Makefile.PL +++ b/source4/pidl/Makefile.PL @@ -1,10 +1,9 @@ use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'Parse::Pidl', - 'VERSION_FROM' => 'Parse/Pidl.pm', + 'VERSION_FROM' => 'lib/Parse/Pidl.pm', 'EXE_FILES' => [ 'pidl' ], - 'PMLIBDIRS' => [ 'Parse' ], - 'C' => [], + 'PMLIBDIRS' => [ 'lib' ], 'test' => { 'TESTS' => 'tests/*.pl' } ); @@ -12,5 +11,15 @@ sub MY::postamble { <<'EOT'; Parse/Pidl/IDL.pm :: idl.yp yapp -s -m 'Parse::Pidl::IDL' -o 'Parse/Pidl/IDL.pm' idl.yp + +doc: pidl.1 pidl.1.html + +XSLTPROC=xsltproc + +%.1: %.1.xml + test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< + +%.html: %.xml + test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $< EOT } diff --git a/source4/pidl/README b/source4/pidl/README index e6768b6940..8c709e5ecd 100644 --- a/source4/pidl/README +++ b/source4/pidl/README @@ -1,3 +1,5 @@ +Introduction: +============= This directory contains the source code of the pidl (Perl IDL) compiler. @@ -13,11 +15,26 @@ After a parse tree is present, pidl will call one of it's backends (which one depends on the options given on the command-line). Here is a list of current backends: +Standalone installation: +======================== +Run Makefile.PL to generate the Makefile. + +Then run "make install" (as root) to install. + +Documentation: +============== +Run 'make doc' to generate the manpage and a HTML version of the manpage. +This requires the xsltproc utility to be installed. + +Internals overview: +=================== + -- Generic -- Parse::Pidl::Dump - Converts the parse tree back to an IDL file Parse::Pidl::Samba::Header - Generates header file with data structures defined in IDL file Parse::Pidl::NDR - Generates intermediate datastructures for use by NDR parses/generators Parse::Pidl::ODL - Generates IDL structures from ODL structures for use in the NDR parser generator +Parse::Pidl::Test - Utility functions for use in pidl's testsuite -- Samba NDR -- Parse::Pidl::Samba::NDR::Client - Generates client call functions in C using the NDR parser @@ -25,6 +42,7 @@ Parse::Pidl::Samba::SWIG - Generates SWIG interface files (.i) Parse::Pidl::Samba::NDR::Header - Generates a header file with NDR-parser specific data Parse::Pidl::Samba::NDR::Parser - Generates pull/push functions for parsing NDR Parse::Pidl::Samba::NDR::Server - Generates server side implementation in C +Parse::Pidl::Samba::TDR - Parser generator for the "Trivial Data Representation" Parse::Pidl::Samba::Template - Generates stubs in C for server implementation Parse::Pidl::Samba::EJS - Generates bindings for Embedded JavaScript (EJS) Parse::Pidl::Samba::EJSHeader - Generates headers for the EJS bindings diff --git a/source4/pidl/Parse/Pidl.pm b/source4/pidl/lib/Parse/Pidl.pm index 465f3409ad..465f3409ad 100644 --- a/source4/pidl/Parse/Pidl.pm +++ b/source4/pidl/lib/Parse/Pidl.pm diff --git a/source4/pidl/Parse/Pidl/Compat.pm b/source4/pidl/lib/Parse/Pidl/Compat.pm index 39cb67fd71..39cb67fd71 100644 --- a/source4/pidl/Parse/Pidl/Compat.pm +++ b/source4/pidl/lib/Parse/Pidl/Compat.pm diff --git a/source4/pidl/Parse/Pidl/Dump.pm b/source4/pidl/lib/Parse/Pidl/Dump.pm index bca599262a..bca599262a 100644 --- a/source4/pidl/Parse/Pidl/Dump.pm +++ b/source4/pidl/lib/Parse/Pidl/Dump.pm diff --git a/source4/pidl/Parse/Pidl/Ethereal/Conformance.pm b/source4/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm index 45654fe6aa..45654fe6aa 100644 --- a/source4/pidl/Parse/Pidl/Ethereal/Conformance.pm +++ b/source4/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm diff --git a/source4/pidl/Parse/Pidl/Ethereal/NDR.pm b/source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm index 73dd34096e..73dd34096e 100644 --- a/source4/pidl/Parse/Pidl/Ethereal/NDR.pm +++ b/source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm diff --git a/source4/pidl/Parse/Pidl/IDL.pm b/source4/pidl/lib/Parse/Pidl/IDL.pm index 7f7e5bcdca..7f7e5bcdca 100644 --- a/source4/pidl/Parse/Pidl/IDL.pm +++ b/source4/pidl/lib/Parse/Pidl/IDL.pm diff --git a/source4/pidl/Parse/Pidl/NDR.pm b/source4/pidl/lib/Parse/Pidl/NDR.pm index e00a0c9828..e00a0c9828 100644 --- a/source4/pidl/Parse/Pidl/NDR.pm +++ b/source4/pidl/lib/Parse/Pidl/NDR.pm diff --git a/source4/pidl/Parse/Pidl/ODL.pm b/source4/pidl/lib/Parse/Pidl/ODL.pm index 03d66bfc45..03d66bfc45 100644 --- a/source4/pidl/Parse/Pidl/ODL.pm +++ b/source4/pidl/lib/Parse/Pidl/ODL.pm diff --git a/source4/pidl/Parse/Pidl/Samba/COM/Header.pm b/source4/pidl/lib/Parse/Pidl/Samba/COM/Header.pm index 7b6c4db212..7b6c4db212 100644 --- a/source4/pidl/Parse/Pidl/Samba/COM/Header.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/COM/Header.pm diff --git a/source4/pidl/Parse/Pidl/Samba/COM/Proxy.pm b/source4/pidl/lib/Parse/Pidl/Samba/COM/Proxy.pm index c94ef59ae9..c94ef59ae9 100644 --- a/source4/pidl/Parse/Pidl/Samba/COM/Proxy.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/COM/Proxy.pm diff --git a/source4/pidl/Parse/Pidl/Samba/COM/Stub.pm b/source4/pidl/lib/Parse/Pidl/Samba/COM/Stub.pm index 785c34fc77..785c34fc77 100644 --- a/source4/pidl/Parse/Pidl/Samba/COM/Stub.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/COM/Stub.pm diff --git a/source4/pidl/Parse/Pidl/Samba/EJS.pm b/source4/pidl/lib/Parse/Pidl/Samba/EJS.pm index 743139c8cd..743139c8cd 100644 --- a/source4/pidl/Parse/Pidl/Samba/EJS.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/EJS.pm diff --git a/source4/pidl/Parse/Pidl/Samba/EJSHeader.pm b/source4/pidl/lib/Parse/Pidl/Samba/EJSHeader.pm index 81c75705de..81c75705de 100644 --- a/source4/pidl/Parse/Pidl/Samba/EJSHeader.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/EJSHeader.pm diff --git a/source4/pidl/Parse/Pidl/Samba/Header.pm b/source4/pidl/lib/Parse/Pidl/Samba/Header.pm index d88b37e229..d88b37e229 100644 --- a/source4/pidl/Parse/Pidl/Samba/Header.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/Header.pm diff --git a/source4/pidl/Parse/Pidl/Samba/NDR/Client.pm b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Client.pm index 126dbc3ba9..126dbc3ba9 100644 --- a/source4/pidl/Parse/Pidl/Samba/NDR/Client.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Client.pm diff --git a/source4/pidl/Parse/Pidl/Samba/NDR/Header.pm b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm index 9aa0ed8daf..9aa0ed8daf 100644 --- a/source4/pidl/Parse/Pidl/Samba/NDR/Header.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm diff --git a/source4/pidl/Parse/Pidl/Samba/NDR/Parser.pm b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Parser.pm index ef22ff9788..ef22ff9788 100644 --- a/source4/pidl/Parse/Pidl/Samba/NDR/Parser.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Parser.pm diff --git a/source4/pidl/Parse/Pidl/Samba/NDR/Server.pm b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Server.pm index a8c159572b..a8c159572b 100644 --- a/source4/pidl/Parse/Pidl/Samba/NDR/Server.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Server.pm diff --git a/source4/pidl/Parse/Pidl/Samba/SWIG.pm b/source4/pidl/lib/Parse/Pidl/Samba/SWIG.pm index 409095804f..409095804f 100644 --- a/source4/pidl/Parse/Pidl/Samba/SWIG.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/SWIG.pm diff --git a/source4/pidl/Parse/Pidl/Samba/TDR.pm b/source4/pidl/lib/Parse/Pidl/Samba/TDR.pm index b9bfd83e41..b9bfd83e41 100644 --- a/source4/pidl/Parse/Pidl/Samba/TDR.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/TDR.pm diff --git a/source4/pidl/Parse/Pidl/Samba/Template.pm b/source4/pidl/lib/Parse/Pidl/Samba/Template.pm index eb71b6d707..eb71b6d707 100644 --- a/source4/pidl/Parse/Pidl/Samba/Template.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/Template.pm diff --git a/source4/pidl/Parse/Pidl/Test.pm b/source4/pidl/lib/Parse/Pidl/Test.pm index 34ea80c95c..34ea80c95c 100644 --- a/source4/pidl/Parse/Pidl/Test.pm +++ b/source4/pidl/lib/Parse/Pidl/Test.pm diff --git a/source4/pidl/Parse/Pidl/Typelist.pm b/source4/pidl/lib/Parse/Pidl/Typelist.pm index 10a4baf7e7..10a4baf7e7 100644 --- a/source4/pidl/Parse/Pidl/Typelist.pm +++ b/source4/pidl/lib/Parse/Pidl/Typelist.pm diff --git a/source4/pidl/Parse/Pidl/Util.pm b/source4/pidl/lib/Parse/Pidl/Util.pm index 8854be9d74..8854be9d74 100644 --- a/source4/pidl/Parse/Pidl/Util.pm +++ b/source4/pidl/lib/Parse/Pidl/Util.pm diff --git a/source4/pidl/pidl b/source4/pidl/pidl index ead70b1fad..9daf60eff4 100755 --- a/source4/pidl/pidl +++ b/source4/pidl/pidl @@ -9,6 +9,7 @@ use strict; +use lib "lib"; use Getopt::Long; use File::Basename; use Parse::Pidl; diff --git a/source4/script/build_idl.sh b/source4/script/build_idl.sh index 13d1178c4a..a9bc752857 100755 --- a/source4/script/build_idl.sh +++ b/source4/script/build_idl.sh @@ -6,7 +6,7 @@ PIDL_EXTRA_ARGS="$*" [ -d librpc/gen_ndr ] || mkdir -p librpc/gen_ndr || exit 1 -PIDL="$PERL -Ipidl ./pidl/pidl --outputdir librpc/gen_ndr --parse --ndr-header --header --ndr-parser --server --client --dcom-proxy --com-header --swig --odl --ejs $PIDL_EXTRA_ARGS" +PIDL="$PERL ./pidl/pidl --outputdir librpc/gen_ndr --parse --ndr-header --header --ndr-parser --server --client --dcom-proxy --com-header --swig --odl --ejs $PIDL_EXTRA_ARGS" if [ x$FULLBUILD = xFULL ]; then echo Rebuilding all idl files in librpc/idl |