summaryrefslogtreecommitdiff
path: root/sysutils/mc
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2005-08-04 10:17:13 +0000
committerrillig <rillig@pkgsrc.org>2005-08-04 10:17:13 +0000
commitb5c343c48fe2e75a2f372f021b2271e7e22a2c8c (patch)
tree8d03a82cce689db2dcccd8282c16b685ee7271d3 /sysutils/mc
parent00f3d8ddeb2b03e29649b43af9a890331a76a698 (diff)
downloadpkgsrc-b5c343c48fe2e75a2f372f021b2271e7e22a2c8c.tar.gz
Removed the "largefile" PKG_OPTION. It is enabled by default, so why should
anyone want to disable it?
Diffstat (limited to 'sysutils/mc')
-rw-r--r--sysutils/mc/Makefile7
-rw-r--r--sysutils/mc/options.mk12
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