forked from Mirrors/freeswitch
d93a42df14
Thu Dec 13 09:15:04 EST 2007 Pekka.Pessi@nokia.com * libsofia-sip-ua/docs/hide_emails.sh: moved to scripts/ subdir Thu Dec 13 09:15:34 EST 2007 Pekka.Pessi@nokia.com * check_sofia.c: pass xml result file as optional parameter to check_sofia Thu Dec 20 08:13:37 EST 2007 Pekka.Pessi@nokia.com * stun.c: try to avoid using stun handle after returning from discovery callback Crash reported and partial patch by Daniele Rondina. Thu Jan 3 07:11:27 EST 2008 Pekka.Pessi@nokia.com * tport_type_udp.c: using SO_RCVBUFFORCE and SO_SNDBUFFORCE to set rmem/wmem on udp sockets Referring reader to Linux sysctls to TPTAG_UDP_RMEM and TPTAG_UDP_WMEM documentation. Thu Jan 3 07:11:47 EST 2008 Pekka.Pessi@nokia.com * m4/sac-su2.m4: checks for SO_RCVBUFFORCE and SO_SNDBUFFORCE Thu Jan 3 08:19:04 EST 2008 Pekka.Pessi@nokia.com * nta.c: calculate next timeout only after completing current timeout Thanks to Mike Jerris for reporting this problem. Thu Jan 3 11:02:11 EST 2008 Pekka.Pessi@nokia.com * sac-su2.m4: checking for IP_ADD_MEMBERSHIP and IP_MULTICAST_LOOP Thu Jan 3 12:08:39 EST 2008 Pekka.Pessi@nokia.com * tport_type_udp.c: when binding to multicast address, join to the group, too. Use "canonic" IP address (from host-part of the SIP URI) to specify interface. Mon Nov 19 15:01:09 EST 2007 Pekka Pessi <first.lastname@nokia.com> * tport_type_udp.c: made IP_ADD_MEMBERSHIP as portable Fri Jan 4 13:19:01 EST 2008 Pekka.Pessi@nokia.com * test_nta.c: added check for request merging (with both 3261 and 2543 proxies) Fri Jan 4 13:20:35 EST 2008 Pekka.Pessi@nokia.com * nta.c: fixed request merging with RFC 2543 proxies Updated matching of PRACKs with outstanding 100rel, too. Fri Jan 4 15:27:01 EST 2008 Pekka.Pessi@nokia.com * nta.c: follow more closely RFC 3261 request matching rules Fri Jan 4 15:31:22 EST 2008 Pekka.Pessi@nokia.com * nua_session.c: do not clear soa when an overlapping INVITE is received Fri Jan 4 15:32:58 EST 2008 Pekka.Pessi@nokia.com * nua/outbound.c: reduce logging Fri Jan 4 16:51:00 EST 2008 Pekka.Pessi@nokia.com * nua_subnotref.c: accept NOTIFY without Event header Fri Jan 4 16:53:20 EST 2008 Pekka.Pessi@nokia.com * nua_notifier.c: fix problem handing expiration time if NOTIFY is sent before SUBSCRIBE has been responded Fri Jan 4 16:54:08 EST 2008 Pekka.Pessi@nokia.com * nua_notifier.c: allow notifier handle to be shut down if SUBSCRIBE has been accpeted but no NOTIFY has been sent git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7109 d0543943-73ff-0310-b7d9-9358b9ac24b2
59 lines
1.3 KiB
Makefile
59 lines
1.3 KiB
Makefile
#
|
|
# Makefile.am for sofia-sip/libsofia-sip-ua-glib
|
|
#
|
|
# Copyright (C) 2006 Nokia Corporation
|
|
# Contact: Pekka Pessi <pekka.pessi@nokia.com>
|
|
# Licensed under LGPL. See file COPYING.
|
|
#
|
|
|
|
AUTOMAKE_OPTIONS = foreign 1.7
|
|
|
|
SUBDIRS=su-glib
|
|
|
|
GLIB_TARGETS=su-glib/libsu-glib.la
|
|
|
|
lib_LTLIBRARIES =
|
|
if HAVE_GLIB
|
|
lib_LTLIBRARIES += libsofia-sip-ua-glib.la
|
|
endif
|
|
|
|
libsofia_sip_ua_glib_la_SOURCES =
|
|
libsofia_sip_ua_glib_la_LIBADD = $(GLIB_TARGETS) $(GLIB_LIBS)
|
|
|
|
# set the libtool version info version:revision:age for libsofia-sip-ua-glib
|
|
# - soname to 'libsofia-sip-ua-glib.so.(CUR-AGE)'
|
|
libsofia_sip_ua_glib_la_LDFLAGS = \
|
|
-version-info $(LIBVER_SOFIA_SIP_UA_GLIB_CUR):$(LIBVER_SOFIA_SIP_UA_GLIB_REV):$(LIBVER_SOFIA_SIP_UA_GLIB_AGE)
|
|
|
|
DOXYGEN = doxygen
|
|
|
|
EXTRA_DIST = docs/Doxyfile.aliases \
|
|
docs/Doxyfile.conf \
|
|
docs/Doxyfile.version
|
|
|
|
doxygen: built-sources
|
|
@mkdir -p docs docs/html &&\
|
|
for d in $(DIST_SUBDIRS) $(DIST_SUBDIRS); do \
|
|
test -r $$d/Doxyfile \
|
|
&& pushd $$d > /dev/null \
|
|
&& echo running ${DOXYGEN} in $$d \
|
|
&& ${DOXYGEN} \
|
|
&& popd > /dev/null ; \
|
|
done
|
|
${top_srcdir}/scripts/hide_emails.sh docs/html
|
|
|
|
PHONY = doxygen
|
|
|
|
include $(top_srcdir)/rules/recursive.am
|
|
|
|
if HAVE_LCOV
|
|
include $(top_srcdir)/rules/lcov.am
|
|
endif
|
|
|
|
.PHONY = $(PHONY)
|
|
|
|
CLEANFILES = docs/*.doxytags
|
|
|
|
distclean-local:
|
|
-rm -rf docs/html
|