Skip to content

Commit a90bd33

Browse files
committedJul 30, 2013
build fixes
1 parent f2cda1e commit a90bd33

File tree

3 files changed

+34
-10
lines changed

3 files changed

+34
-10
lines changed
 

‎.gitignore

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# git-ls-files --others --exclude-from=.git/info/exclude
2+
# Lines that start with '#' are comments.
3+
# For a project mostly in C, the following would be a good set of
4+
# exclude patterns (uncomment them if you want to use them):
5+
# *.[oa]
6+
*~
7+
Makefile.in
8+
aclocal.m4
9+
config.h.in
10+
autom4te.cache
11+
config/compile
12+
config/config.guess
13+
config/config.sub
14+
config/depcomp
15+
config/install-sh
16+
config/ltmain.sh
17+
config/missing
18+
configure
19+
bin.eclipse

‎config-plugin/test/org/sipfoundry/sipxconfig/callqueue/CallQueueContextImplTestIntegration.java

+2-7
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,15 @@
99

1010
package org.sipfoundry.sipxconfig.callqueue;
1111

12-
import java.util.Arrays;
1312
import java.util.ArrayList;
14-
import java.util.HashSet;
13+
import java.util.Arrays;
1514
import java.util.Collection;
16-
import java.util.Collections;
15+
import java.util.HashSet;
1716
import java.util.List;
18-
import java.util.Map;
1917

2018
import org.sipfoundry.sipxconfig.common.CoreContext;
21-
import org.sipfoundry.sipxconfig.common.User;
22-
import org.sipfoundry.sipxconfig.common.UserException;
2319
import org.sipfoundry.sipxconfig.setting.Setting;
2420
import org.sipfoundry.sipxconfig.test.IntegrationTestCase;
25-
import org.sipfoundry.sipxconfig.test.TestHelper;
2621
import org.springframework.context.ConfigurableApplicationContext;
2722
import org.springframework.context.support.ClassPathXmlApplicationContext;
2823

‎etc/Makefile.am

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,24 @@
11
include $(top_srcdir)/config/utility.am
22

33
confdir = $(SIPX_CONFDIR)/sipxcallqueue
4+
5+
xml = \
6+
sipxcallqueue/CallQueueAgent.xml \
7+
sipxcallqueue/CallQueue.xml \
8+
sipxcallqueue/CallQueueSettings.xml
9+
410
dist_conf_DATA = \
5-
$(wilcard $(srcdir)/sipxcallqueue/*.*)
11+
$(xml) \
12+
sipxcallqueue/CallQueueAgent.properties \
13+
sipxcallqueue/CallQueue.properties \
14+
sipxcallqueue/CallQueueSettings.properties
15+
616

717
fsdir = $(SIPX_CONFDIR)/freeswitch
818
dist_fs_DATA = \
9-
$(wilcard $(srcdir)/freeswitch/*.*)
19+
freeswitch/callcenter.conf.xml.vm
1020

1121
precommit : validate-xml
1222

13-
validate-xml : $(wilcard $(srcdir)/sipxcallqueue/*.xml)
23+
validate-xml : $(xml)
1424
xmllint --noout $^

0 commit comments

Comments
 (0)
Please sign in to comment.