comparison src/version.c @ 5316:54e66395831c v7.4.011

updated for version 7.4.011 Problem: Cannot find out if "acl" and "xpm" features are supported. Solution: Add "acl" and "xpm" to the list of features. (Ken Takata)
author Bram Moolenaar <bram@vim.org>
date Fri, 30 Aug 2013 16:35:44 +0200
parents bb358cc41d92
children 8e28c23e482c
comparison
equal deleted inserted replaced
5315:fe180a01a2c2 5316:54e66395831c
58 static void list_features __ARGS((void)); 58 static void list_features __ARGS((void));
59 static void version_msg __ARGS((char *s)); 59 static void version_msg __ARGS((char *s));
60 60
61 static char *(features[]) = 61 static char *(features[]) =
62 { 62 {
63 #ifdef HAVE_ACL
64 "+acl",
65 #else
66 "-acl",
67 #endif
63 #ifdef AMIGA /* only for Amiga systems */ 68 #ifdef AMIGA /* only for Amiga systems */
64 # ifdef FEAT_ARP 69 # ifdef FEAT_ARP
65 "+ARP", 70 "+ARP",
66 # else 71 # else
67 "-ARP", 72 "-ARP",
719 # ifdef FEAT_XPM_W32 724 # ifdef FEAT_XPM_W32
720 "+xpm_w32", 725 "+xpm_w32",
721 # else 726 # else
722 "-xpm_w32", 727 "-xpm_w32",
723 # endif 728 # endif
729 #else
730 # ifdef HAVE_XPM
731 "+xpm",
732 # else
733 "-xpm",
734 # endif
724 #endif 735 #endif
725 NULL 736 NULL
726 }; 737 };
727 738
728 static int included_patches[] = 739 static int included_patches[] =
729 { /* Add new patch number below this line */ 740 { /* Add new patch number below this line */
741 /**/
742 11,
730 /**/ 743 /**/
731 10, 744 10,
732 /**/ 745 /**/
733 9, 746 9,
734 /**/ 747 /**/