aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-07 00:48:40 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-07 00:48:40 +0000
commit98ae1f309283e68be238ef56981306c9226e5559 (patch)
treee7b1e160cd7bf8362bbca71df4f446655e3d79ed
parent22667a6ca68b9a1c55cc0c4dc0c5492617c4a337 (diff)
various minor fixes
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37277 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--Makefile2
-rw-r--r--apps/app_voicemail.c1
-rw-r--r--pbx/Makefile4
-rw-r--r--pbx/pbx_kdeconsole.cc1
4 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0305d249b..6b1522d61 100644
--- a/Makefile
+++ b/Makefile
@@ -898,7 +898,7 @@ mxml/libmxml.a:
@cd mxml && unset CFLAGS LIBS && test -f config.h || ./configure
$(MAKE) -C mxml libmxml.a
-makeopts.xml: $(foreach dir,$(MOD_SUBDIRS),$(dir)/*.c) build_tools/cflags.xml sounds/sounds.xml
+makeopts.xml: $(foreach dir,$(MOD_SUBDIRS),$(wildcard $(dir)/*.c) $(wildcard $(dir)/*.cc)) build_tools/cflags.xml sounds/sounds.xml
@echo "Generating list of available modules ..."
@build_tools/prep_moduledeps 2>/dev/null > $@
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index ebb26ffd2..657945b23 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -54,6 +54,7 @@
</member>
<member name="IMAP_STORAGE" displayname="Storage of Voicemail using IMAP4">
<depend>imap_tk</depend>
+ <use>ssl</use>
<defaultenabled>no</defaultenabled>
</member>
</category>
diff --git a/pbx/Makefile b/pbx/Makefile
index 19fb905c4..747843ff4 100644
--- a/pbx/Makefile
+++ b/pbx/Makefile
@@ -14,10 +14,12 @@ ifneq ($(wildcard ../menuselect.makeopts),)
include ../menuselect.makedeps
endif
-SELECTED_MODS:=$(filter-out $(MENUSELECT_PBX),$(patsubst %.c,%,$(wildcard pbx_*.c)))
+SELECTED_MODS:=$(filter-out $(MENUSELECT_PBX),$(patsubst %.c,%,$(wildcard pbx_*.c)) $(patsubst %.cc,%,$(wildcard pbx_*.cc)))
MODS:=$(patsubst %,%.so,$(SELECTED_MODS))
+CC_MODS:=pbx_kdeconsole
+
all: _all
include $(ASTTOPDIR)/Makefile.moddir_rules
diff --git a/pbx/pbx_kdeconsole.cc b/pbx/pbx_kdeconsole.cc
index 10a3f289f..4a9af64d3 100644
--- a/pbx/pbx_kdeconsole.cc
+++ b/pbx/pbx_kdeconsole.cc
@@ -13,6 +13,7 @@
/*** MODULEINFO
<depend>qt</depend>
+ <defaultenabled>no</defaultenabled>
***/
#include "pbx_kdeconsole.moc"