7092d12cbf
* add Windows CE support with Visual Studio 2005 (WM5.0,PocketPC 2003/2005, Smartphone) * Fix memory leaks (not likely to happen). * Fix buffer overrun in url. * Modification of the Application Binary Interface (ABI) to decrease number of allocations. Changes: osip_message_t/osip_dialog_t/sdp_message_t/osip_fifo_t * save route headers in the same order (CALLER or CALLER) in dialogs. PR: 105164 Submitted by: Yi-Huan Chan <yhchan@csie.nctu.edu.tw> Approved by: maintainer (me), tmclaugh (mentor,implicit)
34 lines
782 B
Makefile
34 lines
782 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: libosip
|
|
# Date created: Jun 14, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libosip
|
|
PORTVERSION= 3.0.1
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_GNU} \
|
|
http://www.antisip.com/download/
|
|
MASTER_SITE_SUBDIR= osip
|
|
DISTNAME= ${PORTNAME}2-${PORTVERSION}
|
|
|
|
MAINTAINER= xride@FreeBSD.org
|
|
COMMENT= A low layer of SIP implementation
|
|
|
|
CONFLICTS= libosip2-2*
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}2-${PORTVERSION}
|
|
|
|
USE_GNOME= gnomehack gnometarget pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-debug --disable-trace
|
|
USE_AUTOTOOLS= libtool:15
|
|
USE_LDCONFIG= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|-pthread|${PTHREAD_LIBS}|g" ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e "/^SUBDIRS/s| help | |g" ${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|