From d63dd5cacaacf03cf76b2f22bf7a17f922b72166 Mon Sep 17 00:00:00 2001
From: Slaven Rezic <slaven@rezic.de>
Date: Sun, 24 Nov 2013 17:45:31 +0100
Subject: [PATCH] LZO_INCLUDE on typical linux systems

---
 Makefile.PL |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/Makefile.PL b/Makefile.PL
index e7c1561..a7461d5 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -18,6 +18,8 @@ use Config;
 if ($^O eq 'freebsd') {
     $LZO_INCLUDE = '-I/usr/local/include/lzo';
     $LZO_LIB = '-L/usr/local/lib';
+} elsif ($^O eq 'linux') {
+    $LZO_INCLUDE = '-I/usr/include/lzo';
 }
 
 # It shouldn't be necessary to change anything from here on.
-- 
1.7.10.4

