openbsd-ports/archivers/p5-Compress-LZO/patches/patch-Makefile_PL
alek 35f7c3fc7d - Fix liblzo detection
- Bump PKGNAME

ok sturm@
2005-07-16 16:27:25 +00:00

21 lines
697 B
Plaintext

$OpenBSD: patch-Makefile_PL,v 1.3 2005/07/16 16:27:25 alek Exp $
--- Makefile.PL.orig Sun Aug 23 12:14:41 1998
+++ Makefile.PL Sun Aug 29 09:52:03 2004
@@ -6,14 +6,14 @@ use Config;
# <lzoconf.h> and <lzo1x.h> can be found.
#$LZO_INCLUDE = '-I/usr/include/lzo';
-#$LZO_INCLUDE = '-I/usr/local/include';
+$LZO_INCLUDE = '-I!!LOCALBASE!!/include';
#$LZO_INCLUDE = '-I/usr/local/include/lzo';
# If liblzo is not installed in some place obvious, uncomment the next
# line and change the path to point to the directory where liblzo is
# installed.
-#$LZO_LIB = '-L/usr/local/lib';
+$LZO_LIB = '-L!!LOCALBASE!!/lib';
# It shouldn't be necessary to change anything from here on.