diff options
author | lloyd <[email protected]> | 2009-10-09 18:29:36 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-10-09 18:29:36 +0000 |
commit | 7f7b68d60b1286be70c07b315ed64cd9dfa48943 (patch) | |
tree | d5e50ebf6b18c68409d2b3dc4d14223f8bab7dc1 /src/wrap | |
parent | 45df55aa433f3d81a481565c5494804671a70f91 (diff) |
Use -Wno-write-strings in XS wrapper to avoid many warnings
Diffstat (limited to 'src/wrap')
-rw-r--r-- | src/wrap/perl-xs/Makefile.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wrap/perl-xs/Makefile.PL b/src/wrap/perl-xs/Makefile.PL index d35c99168..46317e72b 100644 --- a/src/wrap/perl-xs/Makefile.PL +++ b/src/wrap/perl-xs/Makefile.PL @@ -9,7 +9,7 @@ if ( $^O eq 'MSWin32' ) else { $cc = 'g++'; - $cflags = '-fexceptions ' . qx( botan-config --cflags ); + $cflags = '-Wno-write-strings -fexceptions ' . qx( botan-config --cflags ); $libs = qx( botan-config --libs ); } |