mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 18:41:57 +00:00
FS-7338: remove libsilk from tree, use system lib instead FS-7338: change to always use system liblua FS-7338: remove libbroadvoice from tree, use system lib instead FS-7338: remove libilbc from tree, use system lib instead FS-7338: remove libs using system libs from bootstrap FS-7338: remove libg722_1 from tree, use system lib instead FS-7338: remove mod_celt, it has be superseded by mod_opus FS-7338: remove libcodec2 from tree, use system lib instead FS-7338: remove libopus from tree, use system lib instead FS-7338: remove libsoundtouch build from tree, use system lib instead FS-7338: remove flite build from tree, use system lib instead FS-7338: remove openldap build from tree, use system lib instead FS-7338: remove libmongoc build from tree, use system lib instead FS-7338: remove mod_mongo deps that are no longer actually required FS-7338: remove some dup demo modules and don't include demo code in packages
22 lines
520 B
Makefile
22 lines
520 B
Makefile
include $(top_srcdir)/build/modmake.rulesam
|
|
|
|
AUTOMAKE_OPTIONS += foreign
|
|
MODNAME=mod_mongo
|
|
|
|
if HAVE_MONGOC
|
|
|
|
mod_LTLIBRARIES = mod_mongo.la
|
|
mod_mongo_la_SOURCES = mod_mongo.c
|
|
mod_mongo_la_CFLAGS = $(AM_CFLAGS) $(MONGOC_CFLAGS)
|
|
mod_mongo_la_CPPFLAGS = $(AM_CPPFLAGS)
|
|
mod_mongo_la_LIBADD = $(switch_builddir)/libfreeswitch.la $(MONGOC_LIBS)
|
|
mod_mongo_la_LDFLAGS = -avoid-version -module -no-undefined -shared
|
|
|
|
|
|
else
|
|
install: error
|
|
all: error
|
|
error:
|
|
$(error You must install libmongoc-dev to build mod_mongo)
|
|
endif
|