From 1be0fed037916efa475c97c6cb4da8f168a56d0b Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 29 Sep 2009 21:47:09 -0700 Subject: [PATCH] perl-module: Fix build on FreeBSD 7.2 config.h must be included first, otherwise the build fails on FreeBSD 7.2 in gl/string.h at the first instance of "restrict", which #defines as empty. --- perl-module/PSPP.xs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl-module/PSPP.xs b/perl-module/PSPP.xs index 8572c6fe..77a720ca 100644 --- a/perl-module/PSPP.xs +++ b/perl-module/PSPP.xs @@ -17,12 +17,12 @@ 02110-1301, USA. */ +#include + #include "EXTERN.h" #include "perl.h" #include "XSUB.h" -#include - #include "ppport.h" #include "minmax.h" -- 2.30.2