From e959933d8c934caf85c873d282627125037b24d2 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 6f5287fe89..9fa832b117 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