pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/shells/bash bash: Add --enable-function-import.
details: https://anonhg.NetBSD.org/pkgsrc/rev/0b091df6138e
branches: trunk
changeset: 454733:0b091df6138e
user: jperkin <jperkin%pkgsrc.org@localhost>
date: Wed Jun 16 12:30:04 2021 +0000
description:
bash: Add --enable-function-import.
This is required to make 'export -f' work, which is enabled by default on
other OS I checked. While here sort the list of enabled options so that
it's easier to compare against the list of available options, as there are
still a number that we do not enable, and remove the bogus comment.
Bump PKGREVISION.
diffstat:
shells/bash/Makefile | 30 +++++++++++++++---------------
1 files changed, 15 insertions(+), 15 deletions(-)
diffs (49 lines):
diff -r 973fc71bc25e -r 0b091df6138e shells/bash/Makefile
--- a/shells/bash/Makefile Wed Jun 16 10:38:05 2021 +0000
+++ b/shells/bash/Makefile Wed Jun 16 12:30:04 2021 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.99 2021/05/17 22:10:43 kre Exp $
+# $NetBSD: Makefile,v 1.100 2021/06/16 12:30:04 jperkin Exp $
BASH_VERSION= 5.1
BASH_PATCHLEVEL= 8
-PKGREVISION= 1
+PKGREVISION= 2
DISTNAME= bash-${BASH_VERSION}
PKGNAME= bash-${BASH_VERSION}.${BASH_PATCHLEVEL}
@@ -33,20 +33,20 @@
PKG_SHELL= bin/bash
INSTALLATION_DIRS= ${PKGMANDIR}/man1
-# All features enabled by default.
-CONFIGURE_ARGS+= --enable-readline
-CONFIGURE_ARGS+= --enable-progcomp
-CONFIGURE_ARGS+= --enable-process-substitution
-CONFIGURE_ARGS+= --enable-history
-CONFIGURE_ARGS+= --enable-help-builtin
+CONFIGURE_ARGS+= --enable-alias
+CONFIGURE_ARGS+= --enable-array-variables
+CONFIGURE_ARGS+= --enable-brace-expansion
+CONFIGURE_ARGS+= --enable-cond-regexp
+CONFIGURE_ARGS+= --enable-debugger
+CONFIGURE_ARGS+= --enable-directory-stack
+CONFIGURE_ARGS+= --enable-dparen-arithmetic
CONFIGURE_ARGS+= --enable-extended-glob
-CONFIGURE_ARGS+= --enable-dparen-arithmetic
-CONFIGURE_ARGS+= --enable-directory-stack
-CONFIGURE_ARGS+= --enable-debugger
-CONFIGURE_ARGS+= --enable-cond-regexp
-CONFIGURE_ARGS+= --enable-alias
-CONFIGURE_ARGS+= --enable-brace-expansion
-CONFIGURE_ARGS+= --enable-array-variables
+CONFIGURE_ARGS+= --enable-function-import
+CONFIGURE_ARGS+= --enable-help-builtin
+CONFIGURE_ARGS+= --enable-history
+CONFIGURE_ARGS+= --enable-process-substitution
+CONFIGURE_ARGS+= --enable-progcomp
+CONFIGURE_ARGS+= --enable-readline
.include "../../mk/bsd.prefs.mk"
.include "options.mk"
Home |
Main Index |
Thread Index |
Old Index