summaryrefslogtreecommitdiff
path: root/shells/bash2
diff options
context:
space:
mode:
authortcort <tcort>2013-02-12 23:27:24 +0000
committertcort <tcort>2013-02-12 23:27:24 +0000
commit7ac5619344437d03788ab7302cbb2bf2426ec6f5 (patch)
tree875e5c111f69fd8fd5cda572c543076714ae57f6 /shells/bash2
parent40b71c1cc6752c25150c8a588b4e24efc1293944 (diff)
downloadpkgsrc-7ac5619344437d03788ab7302cbb2bf2426ec6f5.tar.gz
shells/bash2: disable job control on Minix
OK by wiz
Diffstat (limited to 'shells/bash2')
-rw-r--r--shells/bash2/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/shells/bash2/Makefile b/shells/bash2/Makefile
index c7dbb341cef..1a8cfd942b6 100644
--- a/shells/bash2/Makefile
+++ b/shells/bash2/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.82 2012/09/11 23:25:07 asau Exp $
+# $NetBSD: Makefile,v 1.83 2013/02/12 23:27:24 tcort Exp $
#
DISTNAME= bash-2.05b
@@ -57,6 +57,11 @@ BUILDLINK_DEPMETHOD.readline= build
CONFIGURE_ENV+= ac_cv_type_wctype_t=no
.endif
+# Minix lacks setpgid() which is needed for job control.
+.if ${OPSYS} == "Minix"
+CONFIGURE_ARGS+= --disable-job-control
+.endif
+
BUILDLINK_API_DEPENDS.readline+= readline>=4.3
.include "../../devel/gettext-lib/buildlink3.mk"