diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-14 20:40:58 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-14 20:40:58 +0200 |
commit | 21606676d9ebc6f159c56ee90733e5d5720ab3d7 (patch) | |
tree | 9835823990627cdee4d4966eac28f359ff1f217a /src/feature.h | |
parent | b4086ffa32d97831f2d25a37f8c1340223dee5eb (diff) | |
download | vim-git-21606676d9ebc6f159c56ee90733e5d5720ab3d7.tar.gz |
patch 8.1.1529: libcanberra is linked with even when not usedv8.1.1529
Problem: Libcanberra is linked with even when not used.
Solution: Have configure check for libcanberra only when wanted.
(suggestions by Libor Bukata)
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature.h b/src/feature.h index c5d7d777e..eb474ab07 100644 --- 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 |