summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYee Cheng Chin <ychin.git@gmail.com>2022-11-05 14:23:14 +0000
committerBram Moolenaar <Bram@vim.org>2022-11-05 14:23:14 +0000
commit25b8420c2b4c65f8e0292fbc006db1ea12d4b1c6 (patch)
tree999d80fe78fe98c126b153f8d7ecfe9a7d4e56ae
parent5a5f17f9b3fa14c36a7d6c96ac55acaddb6247e1 (diff)
patch 9.0.0833: Mac: no +sound feature in huge buildv9.0.0833
Problem: Mac: no +sound feature in huge build. Solution: Enable +sound in Mac huge build. (closes #11497)
-rw-r--r--src/version.c2
-rw-r--r--src/vim.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/version.c b/src/version.c
index f7817f2b7b..e852ea1530 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 833,
+/**/
832,
/**/
831,
diff --git a/src/vim.h b/src/vim.h
index 3ef6469e58..be0a640cab 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -167,7 +167,7 @@
# if defined(FEAT_NORMAL) && !defined(FEAT_CLIPBOARD)
# define FEAT_CLIPBOARD
# endif
-# if defined(FEAT_BIG) && !defined(FEAT_SOUND)
+# if defined(FEAT_HUGE) && !defined(FEAT_SOUND)
# define FEAT_SOUND
# endif
# if defined(FEAT_SOUND)