Author: Stefano Rivera <stefanor@debian.org>
Description: let pacakage build on armhf
--- a/src/Makefile.PL
+++ b/src/Makefile.PL
@@ -2,10 +2,10 @@
 use Config;
 use POSIX;

-# Check if this is a 64 bit machine
+# Check if this is an arch where we need position independent code
 my $CCFLAGS = '';
 my $machine = (POSIX::uname())[4];
-if ($machine =~ /64/) {
+if ($machine =~ /64|arm/) {
         $CCFLAGS = '-fPIC';
 }


