diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-12-03 19:43:03 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-12-03 21:33:07 +0100 |
commit | ee5ed29991bf9de1111a8313d7c22560b26a56af (patch) | |
tree | 9c2510bcf432e45f48562d8672d7c62c29cdabcf /solenv | |
parent | f9f5c9f0d6af2cb2f39d5bc1513216b8d892977c (diff) |
ofz#41602 fix more build failure
[LNK] Executable/fodsfuzzer
workdir/LinkTarget/StaticLibrary/libfuzzer_calc.a(native-calc.o):native-calc.cxx:lo_get_constructor_map::map: error: undefined reference to 'com_sun_star_comp_framework_SoundHandler_get_implementation'
clang-14: error: linker command failed with exit code 1 (use -v to see invocation)
Change-Id: Id22e52491bf95eff7b72ac1fc9e2c63f3dfb30b3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126332
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'solenv')
-rwxr-xr-x | solenv/bin/native-code.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py index 63d8d33a2066..d1d36140f0ab 100755 --- a/solenv/bin/native-code.py +++ b/solenv/bin/native-code.py @@ -613,7 +613,7 @@ calc_factory_list = [ calc_constructor_list = [ # avmedia/util/avmedia.component - "com_sun_star_comp_framework_SoundHandler_get_implementation", + ("com_sun_star_comp_framework_SoundHandler_get_implementation", "#if HAVE_FEATURE_AVMEDIA"), # sc/util/sc.component "ScPanelFactory_get_implementation", "Calc_SpreadsheetDocument_get_implementation", |