diff options
| author | Christian Marangi | 2025-11-22 18:44:29 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-11-22 18:45:51 +0000 |
| commit | 6e2a8b34c5c3c69a17442898eb7cbd4d4d090769 (patch) | |
| tree | faf8e2538b45f8124a4a7430f1c677dd8396e380 | |
| parent | efee987fb75fedd5db90d45c781e7132753c034c (diff) | |
| download | telephony-6e2a8b34c5c3c69a17442898eb7cbd4d4d090769.tar.gz | |
freeswitch: add missing depoendency for conference module
If openal-soft is selected, the conference module check for it and links
for it. Instead of force disabling support for it, simply add it as a
dependency of the related conference module.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | net/freeswitch/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/freeswitch/Makefile b/net/freeswitch/Makefile index 21ceac4..ec69e38 100644 --- a/net/freeswitch/Makefile +++ b/net/freeswitch/Makefile @@ -884,7 +884,7 @@ $(eval $(call Package/freeswitch/Module,cidlookup,Caller ID lookup,This module p $(eval $(call Package/freeswitch/Module,clearmode,Clearmode,Clearmode codec passthrough support.,)) $(eval $(call Package/freeswitch/Module,cluechoo,Clue Choo,This demo module renders a Clue Choo train on the FreeSWITCH console.,+libncurses)) $(eval $(call Package/freeswitch/Module,commands,Commands,This module provides miscellaneous API commands.,)) -$(eval $(call Package/freeswitch/Module,conference,Conference,This module provides multi-party conferencing.,)) +$(eval $(call Package/freeswitch/Module,conference,Conference,This module provides multi-party conferencing.,+openal-soft)) $(eval $(call Package/freeswitch/Module,console,Console logger,Allows control over what messages get logged to the console.,)) $(eval $(call Package/freeswitch/Module,curl,cURL,This module provides an API for making HTTP requests with cURL.,)) $(eval $(call Package/freeswitch/Module,dahdi_codec,DAHDI codec,DAHDI codec module.,)) |