pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net/ortp



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Thu Sep 13 12:10:04 UTC 2018

Modified Files:
        pkgsrc/net/ortp: Makefile

Log Message:
ortp: Use C99 and additional defines to fix SunOS.

Also add dependency on OpenSSL.  The package checks for it and will use it
if found, but has build issues if not available via bl3.  Bump PKGREVISION.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/net/ortp/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/net/ortp/Makefile
diff -u pkgsrc/net/ortp/Makefile:1.9 pkgsrc/net/ortp/Makefile:1.10
--- pkgsrc/net/ortp/Makefile:1.9        Mon Jun  8 13:43:45 2015
+++ pkgsrc/net/ortp/Makefile    Thu Sep 13 12:10:03 2018
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.9 2015/06/08 13:43:45 joerg Exp $
+# $NetBSD: Makefile,v 1.10 2018/09/13 12:10:03 jperkin Exp $
 #
 
 DISTNAME=      ortp-0.16.1
-PKGREVISION=   6
+PKGREVISION=   7
 CATEGORIES=    net
 MASTER_SITES=  http://download.savannah.nongnu.org/releases/linphone/ortp/sources/
 
@@ -12,13 +12,18 @@ COMMENT=    Real-time Transport Protocol st
 LICENSE=       gnu-lgpl-v2.1
 
 GNU_CONFIGURE= yes
+USE_LANGUAGES= c99
 USE_LIBTOOL=   yes
 
 CONFIGURE_ENV+=        ac_cv_path_DOXYGEN=false
 PKGCONFIG_OVERRIDE+=   ortp.pc.in
 
+CFLAGS.SunOS+= -D_XOPEN_SOURCE=600 -D__EXTENSIONS__ -DBSD_COMP
+LDFLAGS.SunOS+=        -lsocket -lnsl
+
 .include "options.mk"
 
 .include "../../devel/glib2/buildlink3.mk"
 .include "../../mk/pthread.buildlink3.mk"
+.include "../../security/openssl/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index