]> granicus.if.org Git - vim/commitdiff
patch 7.4.1145 v7.4.1145
authorBram Moolenaar <Bram@vim.org>
Wed, 20 Jan 2016 21:11:59 +0000 (22:11 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 20 Jan 2016 21:11:59 +0000 (22:11 +0100)
Problem:    Default features are conservative.
Solution:   Make the default feature set for most of todays systems "huge".

src/auto/configure
src/configure.in
src/feature.h
src/version.c

index ed8ca6aa959796512c923bd7227fe3b8b989880f..96e50935ee0917422290c1c483f125af61d7b5cb 100755 (executable)
@@ -4763,8 +4763,8 @@ if test "${with_features+set}" = set; then :
   withval=$with_features; features="$withval"; { $as_echo "$as_me:${as_lineno-$LINENO}: result: $features" >&5
 $as_echo "$features" >&6; }
 else
-  features="normal"; { $as_echo "$as_me:${as_lineno-$LINENO}: result: Defaulting to normal" >&5
-$as_echo "Defaulting to normal" >&6; }
+  features="huge"; { $as_echo "$as_me:${as_lineno-$LINENO}: result: Defaulting to huge" >&5
+$as_echo "Defaulting to huge" >&6; }
 fi
 
 
index adb30c42997e14e715190ce7fd38b094cf1a7a9c..4bb49a70af258996543322656802356a5b6fc743 100644 (file)
@@ -436,7 +436,7 @@ dnl Check user requested features.
 AC_MSG_CHECKING(--with-features argument)
 AC_ARG_WITH(features, [  --with-features=TYPE    tiny, small, normal, big or huge (default: normal)],
        features="$withval"; AC_MSG_RESULT($features),
-       features="normal"; AC_MSG_RESULT(Defaulting to normal))
+       features="huge"; AC_MSG_RESULT(Defaulting to huge))
 
 dovimdiff=""
 dogvimdiff=""
index c2bf2605d8ccbecf8e51f6c3dfbe799efe2a5627..5de0fcec38cb332a6d220559b426d78264f4322e 100644 (file)
 #endif
 
 /*
- * These executables are made available with the +big feature, because they
- * are supposed to have enough RAM: Win32 (console & GUI), dos32, OS/2 and VMS.
+ * For Unix, Mac and Win32 use +huge by default.  These days CPUs are fast and
+ * Memory is cheap.
+ * Use +big for older systems: Other MS-Windows, dos32, OS/2 and VMS.
  * The dos16 version has very little RAM available, use +small.
+ * Otherwise use +normal
  */
 #if !defined(FEAT_TINY) && !defined(FEAT_SMALL) && !defined(FEAT_NORMAL) \
        && !defined(FEAT_BIG) && !defined(FEAT_HUGE)
-# if defined(MSWIN) || defined(DJGPP) || defined(VMS) || defined(MACOS) || defined(AMIGA)
-#  define FEAT_BIG
+# if defined(UNIX) || defined(WIN3264) || defined(MACOS)
+#  define FEAT_HUGE
 # else
-#  ifdef MSDOS
-#   define FEAT_SMALL
+#  if defined(MSWIN) || defined(DJGPP) || defined(VMS) || defined(MACOS) || defined(AMIGA)
+#   define FEAT_BIG
 #  else
-#   define FEAT_NORMAL
+#   ifdef MSDOS
+#    define FEAT_SMALL
+#   else
+#    define FEAT_NORMAL
+#   endif
 #  endif
 # endif
 #endif
index fcd86f17d1bafbbf5d0a3bf720a09486e0aae4d4..0d6dbaadc4ef41dd2d28e876ff7b507077cd151a 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1145,
 /**/
     1144,
 /**/