diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-16 03:34:23 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-16 03:34:23 +0000 |
commit | 2c6b585f2de11d4facfe06b8e8db789d22955716 (patch) | |
tree | 2a89f80d3ddff3e3861dcfa8e100c4f6587a3b18 /source4/script | |
parent | ff6478bb4a894228a8959ede750da9d079c13c7b (diff) | |
download | samba-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')
-rw-r--r-- | source4/script/mkproto.pl | 4 |
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_'; |