Skip to content

Commit

Permalink
freeswitch: Integrate FreeSWITCH ESL code
Browse files Browse the repository at this point in the history
  • Loading branch information
liviuchircu committed Feb 7, 2017
1 parent 524db38 commit 8fe24ec
Show file tree
Hide file tree
Showing 15 changed files with 5,534 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.sources
Expand Up @@ -9,7 +9,7 @@
# defines: sources, objs, depends
#

sources=$(filter-out $(auto_gen) $(exclude_files), $(wildcard *.c) \
sources=$(filter-out $(auto_gen) $(exclude_files), $(wildcard *.c) $(extra_sources) \
$(wildcard mem/*.c) $(wildcard aaa/*.c) \
$(wildcard parser/*.c) $(wildcard lib/*.c) \
$(wildcard lib/reg/*.c) \
Expand Down
7 changes: 6 additions & 1 deletion modules/freeswitch/Makefile
Expand Up @@ -5,6 +5,11 @@
include ../../Makefile.defs
auto_gen=
NAME=freeswitch.so
LIBS=
LIBS+=-lpthread -lm

# Temporary import of the FreeSWITCH ESL library code until packages are out
ESLDIR = esl/src
_SRC=esl.c esl_buffer.c esl_config.c esl_event.c esl_json.c esl_threadmutex.c
extra_sources=$(patsubst %,$(ESLDIR)/%,$(_SRC))

include ../../Makefile.modules

0 comments on commit 8fe24ec

Please sign in to comment.