summaryrefslogtreecommitdiff
path: root/source4/script/mkproto.pl
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-12-16 03:34:23 +0000
committerAndrew Tridgell <tridge@samba.org>2003-12-16 03:34:23 +0000
commit2c6b585f2de11d4facfe06b8e8db789d22955716 (patch)
tree2a89f80d3ddff3e3861dcfa8e100c4f6587a3b18 /source4/script/mkproto.pl
parentff6478bb4a894228a8959ede750da9d079c13c7b (diff)
downloadsamba-2c6b585f2de11d4facfe06b8e8db789d22955716.tar.gz
samba-2c6b585f2de11d4facfe06b8e8db789d22955716.tar.bz2
samba-2c6b585f2de11d4facfe06b8e8db789d22955716.zip
more portability fixes. We now almost compile on solaris
(This used to be commit f4abd20b8437703211676fb12ea23af8f0e4642a)
Diffstat (limited to 'source4/script/mkproto.pl')
-rw-r--r--source4/script/mkproto.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/script/mkproto.pl b/source4/script/mkproto.pl
index 66f2799147..dac64045ce 100644
--- a/source4/script/mkproto.pl
+++ b/source4/script/mkproto.pl
@@ -1,7 +1,9 @@
#!/usr/bin/perl
use strict;
-use warnings;
+
+# don't use warnings module as it is not portable enough
+# use warnings;
my $header_name = '_PROTO_H_';