diff src/feature.h @ 17059:70f424551938 v8.1.1529

patch 8.1.1529: libcanberra is linked with even when not used commit https://github.com/vim/vim/commit/21606676d9ebc6f159c56ee90733e5d5720ab3d7 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 14 20:40:58 2019 +0200 patch 8.1.1529: libcanberra is linked with even when not used Problem: Libcanberra is linked with even when not used. Solution: Have configure check for libcanberra only when wanted. (suggestions by Libor Bukata)
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Jun 2019 20:45:05 +0200
parents 353ed7ef78df
children dcc4120f8412
line wrap: on
line diff
--- a/src/feature.h
+++ b/src/feature.h
@@ -663,7 +663,7 @@
 /*
  * sound - currently only with libcanberra
  */
-#if !defined(FEAT_SOUND) && defined(FEAT_BIG) && defined(HAVE_CANBERRA)
+#if !defined(FEAT_SOUND) && defined(HAVE_CANBERRA)
 # define FEAT_SOUND
 #endif