Fix mod_cluechoo error on load
mod_cluechoo needs to be linked against ncurses or we receive an error about undefined symbols when loading the module. How did this ever work? Thanks-to: Dušan Dragić <dragic.dusan@gmail.com> FS-5965
This commit is contained in:
parent
7564021000
commit
e959933d8c
|
@ -29,6 +29,7 @@ Description: Caller ID name lookup
|
||||||
Module: applications/mod_cluechoo
|
Module: applications/mod_cluechoo
|
||||||
Description: Clue Choo
|
Description: Clue Choo
|
||||||
This demo module renders a Clue Choo train on the FreeSWITCH console.
|
This demo module renders a Clue Choo train on the FreeSWITCH console.
|
||||||
|
Build-Depends: libncurses5-dev
|
||||||
|
|
||||||
Module: applications/mod_commands
|
Module: applications/mod_commands
|
||||||
Description: Command module
|
Description: Command module
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
|
LOCAL_LDFLAGS=-lncurses
|
||||||
BASE=../../../..
|
BASE=../../../..
|
||||||
include $(BASE)/build/modmake.rules
|
include $(BASE)/build/modmake.rules
|
||||||
|
|
Loading…
Reference in New Issue