diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-11-13 17:01:44 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-11-21 13:43:05 +0530 |
commit | 1968deb87ed023c466055d67989bb2c561d6df8f (patch) | |
tree | c01085ca8cfab4020b679fb40cd3538e9ec09666 /recipes | |
parent | 14a607c247f503c518282c730d16e85308586454 (diff) |
soundtouch.recipe: Disable building with MSVC
Linking fails because the symbols are not correctly exported with
__declspec(dllexport), and so the DLL has no symbols.
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/soundtouch.recipe | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes/soundtouch.recipe b/recipes/soundtouch.recipe index ee188414..2f2215f8 100644 --- a/recipes/soundtouch.recipe +++ b/recipes/soundtouch.recipe @@ -20,6 +20,9 @@ class Recipe(recipe.Recipe): files_libs = ['libSoundTouch'] files_devel = ['include/soundtouch', 'lib/pkgconfig/soundtouch.pc'] + # FIXME: Meson port does not export symbols correctly for use with MSVC + can_msvc = False + def prepare (self): if self.config.target_platform == Platform.ANDROID: self.append_env('CXXFLAGS', '-fexceptions -DST_NO_EXCEPTION_HANDLING') |