diff options
author | rillig <rillig@pkgsrc.org> | 2005-08-04 10:17:13 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-08-04 10:17:13 +0000 |
commit | 32bd168e2eb9f54d1445e3c59454f4115697521a (patch) | |
tree | 8d03a82cce689db2dcccd8282c16b685ee7271d3 /sysutils | |
parent | 353ea993ebd8443a66800747e8fa6049de858bd3 (diff) | |
download | pkgsrc-32bd168e2eb9f54d1445e3c59454f4115697521a.tar.gz |
Removed the "largefile" PKG_OPTION. It is enabled by default, so why should
anyone want to disable it?
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/mc/Makefile | 7 | ||||
-rw-r--r-- | sysutils/mc/options.mk | 12 |
2 files changed, 4 insertions, 15 deletions
diff --git a/sysutils/mc/Makefile b/sysutils/mc/Makefile index 3473eb6ffdd..04486a65c4a 100644 --- a/sysutils/mc/Makefile +++ b/sysutils/mc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.59 2005/08/04 10:12:06 rillig Exp $ +# $NetBSD: Makefile,v 1.60 2005/08/04 10:17:13 rillig Exp $ DISTNAME= mc-4.6.1 CATEGORIES= sysutils @@ -14,9 +14,8 @@ USE_PKGLOCALEDIR= YES # see options.mk for an explanation of these options PKG_OPTIONS_VAR= PKG_OPTIONS.mc -PKG_SUPPORTED_OPTIONS= charset edit largefile ncurses samba slang \ - subshell vfs x11 -PKG_SUGGESTED_OPTIONS= charset edit largefile slang subshell vfs +PKG_SUPPORTED_OPTIONS= charset edit ncurses samba slang subshell vfs x11 +PKG_SUGGESTED_OPTIONS= charset edit slang subshell vfs .include "../../mk/bsd.prefs.mk" .include "../../mk/bsd.options.mk" diff --git a/sysutils/mc/options.mk b/sysutils/mc/options.mk index aded318b212..b7caeb9c704 100644 --- a/sysutils/mc/options.mk +++ b/sysutils/mc/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.3 2005/06/01 18:03:22 jlam Exp $ +# $NetBSD: options.mk,v 1.4 2005/08/04 10:17:13 rillig Exp $ # ### The charset option enables input/display support for various 8-bit @@ -19,15 +19,6 @@ PLIST_SRC+= ${PKGDIR}/PLIST.mcedit CONFIGURE_ARGS+= --without-edit .endif -### Enable file sizes >= 2 GB. Note that this option is considered -### experimental, as some filesize calculations are still done with -### 32 bits of precision. -.if !empty(PKG_OPTIONS:Mlargefile) -CONFIGURE_ARGS+= --enable-largefile -.else -CONFIGURE_ARGS+= --disable-largefile -.endif - ### Enable the Samba virtual file system. You can connect to Windows ### file servers or Samba servers in your network. .if !empty(PKG_OPTIONS:Msamba) @@ -37,7 +28,6 @@ CONFIGURE_ARGS+= --without-samba .endif ### The subshell is a shell command line inside the Midnight Commander. -### It does not work well on NetBSD (does not save the screen contents). .if !empty(PKG_OPTIONS:Msubshell) CONFIGURE_ARGS+= --with-subshell .else |