summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2001-02-08 15:50:20 +0000
committerwiz <wiz@pkgsrc.org>2001-02-08 15:50:20 +0000
commit750ee125281a52b991c81d57af9c09aa33c4821b (patch)
treed4c0443a34f37b92f313d474070904257b38c460
parent700d314697d4dca841b137864ce8314a310627fd (diff)
downloadpkgsrc-750ee125281a52b991c81d57af9c09aa33c4821b.tar.gz
Try to be backwards compatible in readline emulation usage for older
versions of NetBSD.
-rw-r--r--math/capc-calc/Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/math/capc-calc/Makefile b/math/capc-calc/Makefile
index 25beb7fdc62..be1ec026103 100644
--- a/math/capc-calc/Makefile
+++ b/math/capc-calc/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2001/02/08 10:25:54 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2001/02/08 15:50:20 wiz Exp $
#
DISTNAME= calc-2.11.4t2
@@ -13,4 +13,12 @@ HOMEPAGE= http://www.isthe.com/chongo/tech/comp/calc/
NO_CONFIGURE= # defined
+.if exists(/usr/include/readline.h) && !exists(/usr/include/readline/readline.h)
+post-patch:
+ ${SED} -e "s|readline/readline.h|readline.h|" \
+ -e "s|readline/history.h|history.h|" ${WRKSRC}/hist.c > \
+ ${WRKSRC}/hist.c.new && \
+ ${MV} ${WRKSRC}/hist.c.new ${WRKSRC}/hist.c
+.endif
+
.include "../../mk/bsd.pkg.mk"