From fa1445f4bc962efb3e639d3a4e345b1db14155b7 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 9 Jul 2005 15:32:08 +0000 Subject: r8264: - Use standard perl package structure for pidl. - Only "use" pidl modules in the main executable when necessary Try 'make install' in build/pidl to install the package (should work stand-alone). (This used to be commit c620095692122a65ae1c5d85ca20468d4de93c54) --- source4/build/pidl/Parse/Pidl.pm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 source4/build/pidl/Parse/Pidl.pm (limited to 'source4/build/pidl/Parse/Pidl.pm') diff --git a/source4/build/pidl/Parse/Pidl.pm b/source4/build/pidl/Parse/Pidl.pm new file mode 100644 index 0000000000..465f3409ad --- /dev/null +++ b/source4/build/pidl/Parse/Pidl.pm @@ -0,0 +1,16 @@ +################################################### +# package to parse IDL files and generate code for +# rpc functions in Samba +# Copyright tridge@samba.org 2000-2003 +# Copyright jelmer@samba.org 2005 +# released under the GNU GPL + +package Parse::Pidl; + +use strict; + +use vars qw ( $VERSION ); + +$VERSION = '0.01'; + +1; -- cgit