Travis Cross a537d80372 Add new module: mod_prefix
mod_prefix is an in-memory data store optimized for fast lookups
according to the longest prefix match (LPM) rule.

Tables of key-value string pairs in JSON format can be loaded at
startup via configuration and at runtime via the API.

The implementation uses a bitwise trie (aka binary prefix tree), so
arbitrary string keys are supported.
2014-07-22 15:28:31 +00:00

10 lines
354 B
Makefile

include $(top_srcdir)/build/modmake.rulesam
MODNAME=mod_prefix
mod_LTLIBRARIES = mod_prefix.la
mod_prefix_la_SOURCES = mod_prefix.c trie.c
mod_prefix_la_CFLAGS = $(AM_CFLAGS)
mod_prefix_la_CPPFLAGS = -I. $(AM_CPPFLAGS)
mod_prefix_la_LIBADD = $(switch_builddir)/libfreeswitch.la
mod_prefix_la_LDFLAGS = -avoid-version -module -no-undefined -shared