From 79190992b3820cd028c961c48bdea9b35baf13c9 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 17 Sep 2008 17:12:27 +0200 Subject: Move pidl to top-level directory. --- source4/pidl/lib/Parse/Pidl.pm | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 source4/pidl/lib/Parse/Pidl.pm (limited to 'source4/pidl/lib/Parse/Pidl.pm') diff --git a/source4/pidl/lib/Parse/Pidl.pm b/source4/pidl/lib/Parse/Pidl.pm deleted file mode 100644 index c2c9463d03..0000000000 --- a/source4/pidl/lib/Parse/Pidl.pm +++ /dev/null @@ -1,38 +0,0 @@ -################################################### -# 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; - -require Exporter; -@ISA = qw(Exporter); -@EXPORT_OK = qw(warning error fatal $VERSION); - -use strict; - -use vars qw ( $VERSION ); - -$VERSION = '0.02'; - -sub warning -{ - my ($l,$m) = @_; - print STDERR "$l->{FILE}:$l->{LINE}: warning: $m\n"; -} - -sub error -{ - my ($l,$m) = @_; - print STDERR "$l->{FILE}:$l->{LINE}: error: $m\n"; -} - -sub fatal($$) -{ - my ($e,$s) = @_; - die("$e->{FILE}:$e->{LINE}: $s\n"); -} - -1; -- cgit