]> 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:02:22 +0000 (18:02 +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 6f5287fe89ed38c202017d9d309ad19e5de4f609..9fa832b1172c2bb8777b9bfad47c8dba5b4936ab 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