]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Fix mod_cluechoo error on load
authorTravis Cross <tc@traviscross.com>
Sun, 26 Jan 2014 18:02:22 +0000 (18:02 +0000)
committerTravis Cross <tc@traviscross.com>
Sun, 26 Jan 2014 18:03:11 +0000 (18:03 +0000)
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

debian/control-modules
src/mod/applications/mod_cluechoo/Makefile

index fb044948ac7249505d98bd388ac9c7b16bb73a39..da1f372cd0e904b1a0d3f43ee9dbacde87ccfc5c 100644 (file)
@@ -29,6 +29,7 @@ Description: Caller ID name lookup
 Module: applications/mod_cluechoo
 Description: Clue Choo
  This demo module renders a Clue Choo train on the FreeSWITCH console.
+Build-Depends: libncurses5-dev
 
 Module: applications/mod_commands
 Description: Command module
index 2c35e6e98fbba4aa84155176ac092f0bd5c256e8..d96278fdcd58e1e6e27bb53bef552b055613aeab 100644 (file)
@@ -1,2 +1,3 @@
+LOCAL_LDFLAGS=-lncurses
 BASE=../../../..
 include $(BASE)/build/modmake.rules