Skip to content

Commit

Permalink
various minor fixes
Browse files Browse the repository at this point in the history
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37277 65c4cc65-6c06-0410-ace0-fbb531ad65f3
  • Loading branch information
Kevin P. Fleming committed Jul 7, 2006
1 parent 0b91c08 commit bc9ed9f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 > $@

Expand Down
1 change: 1 addition & 0 deletions apps/app_voicemail.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
4 changes: 3 additions & 1 deletion pbx/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions pbx/pbx_kdeconsole.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

/*** MODULEINFO
<depend>qt</depend>
<defaultenabled>no</defaultenabled>
***/

#include "pbx_kdeconsole.moc"
Expand Down

0 comments on commit bc9ed9f

Please sign in to comment.