mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-04 18:27:36 +00:00
c13fd78987
Mon Oct 8 15:00:04 EDT 2007 Pekka Pessi <first.lastname@nokia.com> * tport: fixed problem with tls send blocking Wed Oct 10 13:55:25 EDT 2007 Pekka Pessi <Pekka.Pessi@nokia.com> * Fixed the internal type of statistics Thu Oct 11 11:25:59 EDT 2007 Pekka Pessi <Pekka.Pessi@nokia.com> * nta: fix sf.net bug #1810115, crash after nta_destroy() su_msg_t delivery, again. Thanks to Mikhail Zabaluev for reporting this. Thu Oct 11 11:45:20 EDT 2007 Pekka Pessi <Pekka.Pessi@nokia.com> * nta: fixed type checking on NTATAG_UDP_MTU()/NTATAG_UDP_MTU_REF() Thu Oct 11 13:25:12 EDT 2007 Pekka Pessi <Pekka.Pessi@nokia.com> * nua: fixed the from header handling The agent-level From header no longer overrides the From header set by nua_invite() and friends. Thanks to Fabio Margarido for keeping reporting about the problem. Thu Oct 11 13:28:58 EDT 2007 Pekka Pessi <Pekka.Pessi@nokia.com> * RELEASE: updated Thu Oct 11 11:30:13 EDT 2007 Pekka Pessi <Pekka.Pessi@nokia.com> * torture_sresolv.c: fixed printf() formatting types Passed a size_t to %u. Thu Oct 11 11:44:54 EDT 2007 Pekka Pessi <Pekka.Pessi@nokia.com> * rules/sofia.am: not using make -C dir Thu Oct 11 14:16:51 EDT 2007 Pekka Pessi <Pekka.Pessi@nokia.com> tagged release candidate 1 for 1.12.7 Thu Oct 11 12:25:28 EDT 2007 Pekka.Pessi@nokia.com * su_clone_start(): fixed spurious release of a pthreaded port git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5842 d0543943-73ff-0310-b7d9-9358b9ac24b2
67 lines
1.8 KiB
Plaintext
67 lines
1.8 KiB
Plaintext
# common Makefile targets for libsofia-sip-ua(-glib) modules
|
|
# ----------------------------------------------------------
|
|
|
|
AM_CFLAGS = $(CWFLAG) $(SOFIA_COVERAGE) $(SOFIA_CFLAGS) $(openssl_CFLAGS)
|
|
|
|
SOFIA_COVERAGE = $(COVERAGE_FLAGS)
|
|
|
|
# Use with --enable-ndebug
|
|
if NDEBUG
|
|
AM_CFLAGS += -DNDEBUG
|
|
endif
|
|
|
|
built-sources: $(BUILT_SOURCES)
|
|
|
|
DISTCLEANFILES = $(BUILT_SOURCES)
|
|
|
|
clean-built-sources:
|
|
-rm -rf $(BUILT_SOURCES) $(BUILT_SOURCES:%=$(srcdir)/%)
|
|
|
|
# rules for building tag files
|
|
|
|
TAG_AWK=$(top_srcdir)/libsofia-sip-ua/su/tag_dll.awk
|
|
|
|
*_tag_ref.c: $(TAG_AWK)
|
|
|
|
SUFFIXES = _tag_ref.c _tag.c
|
|
|
|
_tag.c_tag_ref.c:
|
|
$(AWK) -f $(TAG_AWK) NODLL=1 $(TAG_DLL_FLAGS) REF=$@ $<
|
|
|
|
../bnf/libbnf.la ../http/libhttp.la ../ipt/libipt.la ../iptsec/libiptsec.la \
|
|
../msg/libmsg.la ../nea/libnea.la ../nta/libnta.la ../nth/libnth.la \
|
|
../nua/libnua.la ../sdp/libsdp.la ../sip/libsip.la ../soa/libsoa.la \
|
|
../sresolv/libsresolv.la ../stun/libstun.la ../su/libsu.la \
|
|
../tport/libtport.la ../url/liburl.la:
|
|
cd $(@D) && $(MAKE) $(@F)
|
|
|
|
INTERNAL_INCLUDES = \
|
|
-I$(srcdir)/../features -I../features \
|
|
-I$(srcdir)/../ipt -I../ipt \
|
|
-I$(srcdir)/../iptsec -I../iptsec \
|
|
-I$(srcdir)/../bnf -I../bnf \
|
|
-I$(srcdir)/../http -I../http \
|
|
-I$(srcdir)/../msg -I../msg \
|
|
-I$(srcdir)/../nth -I../nth \
|
|
-I$(srcdir)/../nta -I../nta \
|
|
-I$(srcdir)/../nea -I../nea \
|
|
-I$(srcdir)/../nua -I../nua \
|
|
-I$(srcdir)/../soa -I../soa \
|
|
-I$(srcdir)/../sdp -I../sdp \
|
|
-I$(srcdir)/../sip -I../sip \
|
|
-I$(srcdir)/../soa -I../soa \
|
|
-I$(srcdir)/../sresolv -I../sresolv \
|
|
-I$(srcdir)/../tport -I../tport \
|
|
-I$(srcdir)/../stun -I../stun \
|
|
-I$(srcdir)/../url -I../url \
|
|
-I$(srcdir)/../su -I../su
|
|
|
|
PHONY = built-sources clean-built-sources
|
|
|
|
include $(top_srcdir)/rules/valcheck.am
|
|
|
|
if HAVE_LCOV
|
|
include $(top_srcdir)/rules/lcov.am
|
|
endif
|
|
|