mirror of https://github.com/sipwise/kamailio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.3 KiB
59 lines
1.3 KiB
#
|
|
#
|
|
# WARNING: do not run this directly, it should be run by the master Makefile
|
|
|
|
include ../../Makefile.defs
|
|
auto_gen=
|
|
NAME=websocket.so
|
|
|
|
EMBEDDED_UTF8_DECODE ?= 0
|
|
|
|
ifeq ($(CROSS_COMPILE),)
|
|
SSL_BUILDER=$(shell \
|
|
if pkg-config --exists libssl; then \
|
|
echo 'pkg-config libssl'; \
|
|
fi)
|
|
|
|
ifneq ($(SSL_BUILDER),)
|
|
SSL_BUILDER+=$(shell \
|
|
if pkg-config --exists libcrypto; then \
|
|
echo 'libcrypto'; \
|
|
fi)
|
|
endif
|
|
|
|
endif
|
|
|
|
ifneq ($(SSL_BUILDER),)
|
|
DEFS += $(shell $(SSL_BUILDER) --cflags)
|
|
LIBS += $(shell $(SSL_BUILDER) --libs)
|
|
else
|
|
DEFS += -I$(LOCALBASE)/ssl/include
|
|
LIBS += -L$(LOCALBASE)/lib -L$(LOCALBASE)/ssl/lib \
|
|
-L$(LOCALBASE)/lib64 -L$(LOCALBASE)/ssl/lib64 \
|
|
-lssl -lcrypto
|
|
# NOTE: depending on the way in which libssl was compiled you might
|
|
# have to add -lz -lkrb5 (zlib and kerberos5).
|
|
# E.g.: make TLS_HOOKS=1 TLS_EXTRA_LIBS="-lz -lkrb5"
|
|
endif
|
|
|
|
LIBS+= $(TLS_EXTRA_LIBS)
|
|
|
|
ifeq ($(EMBEDDED_UTF8_DECODE),0)
|
|
LIBS+= -lunistring
|
|
else
|
|
DEFS += -DEMBEDDED_UTF8_DECODE
|
|
endif
|
|
|
|
# Static linking, if you'd like to use TLS and WEBSOCKET at the same time
|
|
#
|
|
#LIBS+= /usr/lib/libcurl.a /usr/lib/libssl.a /usr/lib/libcrypto.a -lkrb5 -lidn -lz -lgssapi_krb5 -lrt
|
|
|
|
DEFS+=-DKAMAILIO_MOD_INTERFACE
|
|
|
|
SERLIBPATH=../../lib
|
|
SER_LIBS+=$(SERLIBPATH)/kcore/kcore
|
|
SER_LIBS+=$(SERLIBPATH)/kmi/kmi
|
|
|
|
include ../../Makefile.modules
|
|
|