kamailio-5.x: add PKG_CONFIG_DEPENDS
The module list is necessary, unfortunately. But having working PKG_CONFIG_DEPENDS is nice and the list rarely needs updating. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
This commit is contained in:
parent
f0bc3c6776
commit
c218f8d79c
1 changed files with 195 additions and 0 deletions
|
@ -21,6 +21,201 @@ PKG_LICENSE:=GPL-2.0+
|
|||
PKG_LICENSE_FILES:=COPYING
|
||||
PKG_MAINTAINER:=Jiri Slachta <jiri@slachta.eu>
|
||||
|
||||
MODULES_AVAILABLE:= \
|
||||
acc \
|
||||
acc_diameter \
|
||||
alias_db \
|
||||
app_jsdt \
|
||||
app_lua \
|
||||
app_python \
|
||||
app_sqlang \
|
||||
async \
|
||||
auth \
|
||||
auth_db \
|
||||
auth_diameter \
|
||||
auth_ephemeral \
|
||||
auth_identity \
|
||||
auth_xkeys \
|
||||
avp \
|
||||
avpops \
|
||||
benchmark \
|
||||
blst \
|
||||
call_control \
|
||||
call_obj \
|
||||
carrierroute \
|
||||
cdp \
|
||||
cdp_avp \
|
||||
cfgutils \
|
||||
cfg_db \
|
||||
cfg_rpc \
|
||||
cfgt \
|
||||
cnxcc \
|
||||
corex \
|
||||
counters \
|
||||
cplc \
|
||||
crypto \
|
||||
ctl \
|
||||
db2_ldap \
|
||||
db2_ops \
|
||||
db_berkeley \
|
||||
db_cluster \
|
||||
db_flatstore \
|
||||
db_mysql \
|
||||
db_postgres \
|
||||
db_sqlite \
|
||||
db_text \
|
||||
db_unixodbc \
|
||||
debugger \
|
||||
dialog \
|
||||
dialplan \
|
||||
dispatcher \
|
||||
diversion \
|
||||
dmq \
|
||||
dmq_usrloc \
|
||||
domain \
|
||||
domainpolicy \
|
||||
drouting \
|
||||
enum \
|
||||
erlang \
|
||||
evapi \
|
||||
evrexec \
|
||||
exec \
|
||||
group \
|
||||
gzcompress \
|
||||
h350 \
|
||||
htable \
|
||||
http_client \
|
||||
imc \
|
||||
ims_auth \
|
||||
ims_charging \
|
||||
ims_dialog \
|
||||
ims_diameter_server \
|
||||
ims_icscf \
|
||||
ims_isc \
|
||||
ims_ocs \
|
||||
ims_qos \
|
||||
ims_registrar_pcscf \
|
||||
ims_registrar_scscf \
|
||||
ims_usrloc_pcscf \
|
||||
ims_usrloc_scscf \
|
||||
ipops \
|
||||
jansson \
|
||||
janssonrpcc \
|
||||
json \
|
||||
jsonrpcs \
|
||||
keepalive \
|
||||
kex \
|
||||
lcr \
|
||||
ldap \
|
||||
log_custom \
|
||||
mangler \
|
||||
matrix \
|
||||
maxfwd \
|
||||
mediaproxy \
|
||||
mohqueue \
|
||||
mqueue \
|
||||
msilo \
|
||||
msrp \
|
||||
mtree \
|
||||
nathelper \
|
||||
nat_traversal \
|
||||
ndb_redis \
|
||||
nosip \
|
||||
outbound \
|
||||
p_usrloc \
|
||||
path \
|
||||
pdb \
|
||||
pdt \
|
||||
permissions \
|
||||
pike \
|
||||
pipelimit \
|
||||
prefix_route \
|
||||
presence \
|
||||
presence_conference \
|
||||
presence_dialoginfo \
|
||||
presence_mwi \
|
||||
presence_profile \
|
||||
presence_reginfo \
|
||||
presence_xml \
|
||||
pua \
|
||||
pua_bla \
|
||||
pua_dialoginfo \
|
||||
pua_reginfo \
|
||||
pua_rpc \
|
||||
pua_usrloc \
|
||||
pua_xmpp \
|
||||
pv \
|
||||
qos \
|
||||
ratelimit \
|
||||
regex \
|
||||
registrar \
|
||||
rls \
|
||||
rr \
|
||||
rtimer \
|
||||
rtjson \
|
||||
rtpengine \
|
||||
rtpproxy \
|
||||
sanity \
|
||||
sca \
|
||||
sctp \
|
||||
sdpops \
|
||||
seas \
|
||||
sipcapture \
|
||||
sipdump \
|
||||
sipt \
|
||||
siptrace \
|
||||
siputils \
|
||||
sl \
|
||||
sms \
|
||||
smsops \
|
||||
snmpstats \
|
||||
speeddial \
|
||||
sqlops \
|
||||
ss7ops \
|
||||
statistics \
|
||||
statsc \
|
||||
statsd \
|
||||
stun \
|
||||
sst \
|
||||
tcpops \
|
||||
textops \
|
||||
textopsx \
|
||||
timer \
|
||||
tls \
|
||||
tmrec \
|
||||
topoh \
|
||||
topos \
|
||||
topos_redis \
|
||||
tm \
|
||||
tmx \
|
||||
tsilo \
|
||||
uac \
|
||||
uac_redirect \
|
||||
uid_auth_db \
|
||||
uid_avp_db \
|
||||
uid_domain \
|
||||
uid_gflags \
|
||||
uid_uri_db \
|
||||
uri_db \
|
||||
userblacklist \
|
||||
usrloc \
|
||||
utils \
|
||||
uuid \
|
||||
websocket \
|
||||
xcap_client \
|
||||
xcap_server \
|
||||
xhttp \
|
||||
xhttp_pi \
|
||||
xhttp_rpc \
|
||||
xlog \
|
||||
xmlops \
|
||||
xmlrpc \
|
||||
xmpp \
|
||||
xprint
|
||||
|
||||
PKG_CONFIG_DEPENDS:= \
|
||||
$(patsubst %,CONFIG_PACKAGE_$(PKG_NAME)-mod-%,$(subst _,-,$(MODULES_AVAILABLE)))
|
||||
|
||||
include $(INCLUDE_DIR)/nls.mk
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
include $(TOPDIR)/feeds/packages/lang/python/python-host.mk
|
||||
|
|
Loading…
Reference in a new issue