From 58a399d76699792f48fa6d121895a688d5987c80 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 21 Sep 2005 12:57:18 +0000 Subject: r10388: Add version numbers (required for CPAN) (This used to be commit 786329576bf14ae774f9d5a24268e46b7dcb634a) --- source4/pidl/lib/Parse/Pidl/Samba/NDR/Client.pm | 3 +++ source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm | 3 +++ source4/pidl/lib/Parse/Pidl/Samba/NDR/Parser.pm | 3 +++ source4/pidl/lib/Parse/Pidl/Samba/NDR/Server.pm | 3 +++ 4 files changed, 12 insertions(+) (limited to 'source4/pidl/lib/Parse/Pidl/Samba/NDR') diff --git a/source4/pidl/lib/Parse/Pidl/Samba/NDR/Client.pm b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Client.pm index 126dbc3ba9..10b8dc71d8 100644 --- a/source4/pidl/lib/Parse/Pidl/Samba/NDR/Client.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Client.pm @@ -5,6 +5,9 @@ package Parse::Pidl::Samba::NDR::Client; +use vars qw($VERSION); +$VERSION = '0.01'; + use strict; my($res); diff --git a/source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm index 9aa0ed8daf..daf7ba0238 100644 --- a/source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm @@ -12,6 +12,9 @@ use Parse::Pidl::Util qw(has_property is_constant); use Parse::Pidl::NDR qw(GetNextLevel GetPrevLevel); use Parse::Pidl::Samba::NDR::Parser; +use vars qw($VERSION); +$VERSION = '0.01'; + my($res); my($tab_depth); diff --git a/source4/pidl/lib/Parse/Pidl/Samba/NDR/Parser.pm b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Parser.pm index 513fa0826d..3f08cbb527 100644 --- a/source4/pidl/lib/Parse/Pidl/Samba/NDR/Parser.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Parser.pm @@ -12,6 +12,9 @@ use Parse::Pidl::Typelist qw(hasType getType mapType); use Parse::Pidl::Util qw(has_property ParseExpr); use Parse::Pidl::NDR qw(GetPrevLevel GetNextLevel ContainsDeferred); +use vars qw($VERSION); +$VERSION = '0.01'; + # list of known types my %typefamily; diff --git a/source4/pidl/lib/Parse/Pidl/Samba/NDR/Server.pm b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Server.pm index a8c159572b..99982e4ad1 100644 --- a/source4/pidl/lib/Parse/Pidl/Samba/NDR/Server.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Server.pm @@ -8,6 +8,9 @@ package Parse::Pidl::Samba::NDR::Server; use strict; +use vars qw($VERSION); +$VERSION = '0.01'; + my($res); sub pidl($) -- cgit