package/apple: use a vlc_plugin macro to declare the detected modules

This commit is contained in:
Steve Lhomme 2023-03-03 10:43:24 +01:00 committed by Jean-Baptiste Kempf
parent 6f493a0a45
commit 1e244e3b56
1 changed files with 1 additions and 1 deletions

View File

@ -418,7 +418,7 @@ gen_vlc_static_module_list()
local declarations_list
for symbol in "${symbol_array[@]}"; do
declarations_list+="int ${symbol}(int (*)(void *, void *, int, ...), void *);\\n"
declarations_list+="VLC_ENTRY_FUNC(${symbol});\\n"
array_list+=" ${symbol},\\n"
done