diff options
author | mat <mat@FreeBSD.org> | 2015-02-18 00:41:30 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2015-02-18 00:41:30 +0800 |
commit | 67afa5aa2b0d1c72b9e4176edccd1e83c5e59fb4 (patch) | |
tree | 1d3c388e0635284503863115f6c42db9a9f01b6b /security | |
parent | ff179a35e1fdc4b185f6f9da378bb537936564d7 (diff) | |
download | freebsd-ports-gnome-67afa5aa2b0d1c72b9e4176edccd1e83c5e59fb4.tar.gz freebsd-ports-gnome-67afa5aa2b0d1c72b9e4176edccd1e83c5e59fb4.tar.zst freebsd-ports-gnome-67afa5aa2b0d1c72b9e4176edccd1e83c5e59fb4.zip |
Fix build with Perl 5.20.
PR: 194865
Submitted by: Mike Kuznetsov
Sponsored by: Absolight
Diffstat (limited to 'security')
-rw-r--r-- | security/p5-Net-SAML/files/patch-SAML__wrap.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/security/p5-Net-SAML/files/patch-SAML__wrap.c b/security/p5-Net-SAML/files/patch-SAML__wrap.c new file mode 100644 index 000000000000..7a00ec5f181b --- /dev/null +++ b/security/p5-Net-SAML/files/patch-SAML__wrap.c @@ -0,0 +1,13 @@ +--- SAML_wrap.c.orig 2014-11-06 12:22:29 UTC ++++ SAML_wrap.c +@@ -1442,7 +1442,9 @@ SWIG_Perl_SetModule(swig_module_info *mo + #undef eof + #endif + #ifdef bool +- #undef bool ++ #ifndef __bool_true_false_are_defined ++ #undef bool ++ #endif + #endif + #ifdef close + #undef close |