From e30b6ff4c740ed1f13669856a610f67dcda01674 Mon Sep 17 00:00:00 2001 From: Travis Cross Date: Sun, 26 Jan 2014 18:02:22 +0000 Subject: [PATCH] Fix mod_cluechoo error on load MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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ć FS-5965 --- debian/control-modules | 1 + src/mod/applications/mod_cluechoo/Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/debian/control-modules b/debian/control-modules index fb044948ac..da1f372cd0 100644 --- a/debian/control-modules +++ b/debian/control-modules @@ -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 diff --git a/src/mod/applications/mod_cluechoo/Makefile b/src/mod/applications/mod_cluechoo/Makefile index 2c35e6e98f..d96278fdcd 100644 --- a/src/mod/applications/mod_cluechoo/Makefile +++ b/src/mod/applications/mod_cluechoo/Makefile @@ -1,2 +1,3 @@ +LOCAL_LDFLAGS=-lncurses BASE=../../../.. include $(BASE)/build/modmake.rules