summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
authortcort <tcort@pkgsrc.org>2013-02-12 23:27:24 +0000
committertcort <tcort@pkgsrc.org>2013-02-12 23:27:24 +0000
commit58f9320065c2c7ee88f1139c4342b2be5f53282f (patch)
tree875e5c111f69fd8fd5cda572c543076714ae57f6 /shells
parent4218e7a21262fc92977429263e5d6fb917a5e653 (diff)
downloadpkgsrc-58f9320065c2c7ee88f1139c4342b2be5f53282f.tar.gz
shells/bash2: disable job control on Minix
OK by wiz
Diffstat (limited to 'shells')
-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"