From owner-svn-ports-head@freebsd.org Tue Feb 23 18:39:59 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A28F9AB2CB8; Tue, 23 Feb 2016 18:39:59 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7DBD1867; Tue, 23 Feb 2016 18:39:59 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1NIdwl6091045; Tue, 23 Feb 2016 18:39:58 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1NIdwSn091040; Tue, 23 Feb 2016 18:39:58 GMT (envelope-from db@FreeBSD.org) Message-Id: <201602231839.u1NIdwSn091040@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Tue, 23 Feb 2016 18:39:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409438 - head/comms/soundmodem/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Feb 2016 18:39:59 -0000 Author: db Date: Tue Feb 23 18:39:57 2016 New Revision: 409438 URL: https://svnweb.freebsd.org/changeset/ports/409438 Log: oops I didn't. I did. I forgot to add some patches. I'll just go sit in the corner with the pointy hat then. Added: head/comms/soundmodem/files/patch-newqpsk_complex.h (contents, props changed) head/comms/soundmodem/files/patch-newqpsk_fec.h (contents, props changed) head/comms/soundmodem/files/patch-newqpsk_misc.h (contents, props changed) head/comms/soundmodem/files/patch-soundcard_modem.h (contents, props changed) head/comms/soundmodem/files/patch-soundcard_simd.h (contents, props changed) Added: head/comms/soundmodem/files/patch-newqpsk_complex.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/soundmodem/files/patch-newqpsk_complex.h Tue Feb 23 18:39:57 2016 (r409438) @@ -0,0 +1,18 @@ +--- newqpsk/complex.h.orig 2015-05-04 17:51:16 UTC ++++ newqpsk/complex.h +@@ -10,11 +10,15 @@ typedef struct { + #endif + } complex; + ++#if __clang__ > 0 ++#define only_inline inline ++#else + #if __GNUC__ < 5 + #define only_inline extern inline + #else + #define only_inline inline + #endif ++#endif + + /* + * Complex multiplication. Added: head/comms/soundmodem/files/patch-newqpsk_fec.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/soundmodem/files/patch-newqpsk_fec.h Tue Feb 23 18:39:57 2016 (r409438) @@ -0,0 +1,18 @@ +--- newqpsk/fec.h.orig 2015-05-04 17:49:44 UTC ++++ newqpsk/fec.h +@@ -3,11 +3,15 @@ + + /* --------------------------------------------------------------------- */ + ++#if __clang__ > 0 ++#define only_inline inline ++#else + #if __GNUC__ < 5 + #define only_inline extern inline + #else + #define only_inline inline + #endif ++#endif + + struct fecstate { + int feclevel; Added: head/comms/soundmodem/files/patch-newqpsk_misc.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/soundmodem/files/patch-newqpsk_misc.h Tue Feb 23 18:39:57 2016 (r409438) @@ -0,0 +1,18 @@ +--- newqpsk/misc.h.orig 2015-05-04 17:50:51 UTC ++++ newqpsk/misc.h +@@ -5,11 +5,15 @@ + #define M_PI 3.14159265358979323846 + #endif + ++#if __clang__ > 0 ++#define only_inline inline ++#else + #if __GNUC__ < 5 + #define only_inline extern inline + #else + #define only_inline inline + #endif ++#endif + + /* ---------------------------------------------------------------------- */ + Added: head/comms/soundmodem/files/patch-soundcard_modem.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/soundmodem/files/patch-soundcard_modem.h Tue Feb 23 18:39:57 2016 (r409438) @@ -0,0 +1,18 @@ +--- soundcard/modem.h.orig 2015-05-04 17:48:03 UTC ++++ soundcard/modem.h +@@ -79,11 +79,15 @@ typedef unsigned long long /* deduced */ + + /* ---------------------------------------------------------------------- */ + ++#if __clang__ > 0 ++#define only_inline inline ++#else + #if __GNUC__ < 5 + #define only_inline extern inline + #else + #define only_inline inline + #endif ++#endif + + struct modemchannel; + Added: head/comms/soundmodem/files/patch-soundcard_simd.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/soundmodem/files/patch-soundcard_simd.h Tue Feb 23 18:39:57 2016 (r409438) @@ -0,0 +1,13 @@ +--- soundcard/simd.h.orig 2015-05-04 17:48:55 UTC ++++ soundcard/simd.h +@@ -54,6 +54,10 @@ + + #if !defined(USEMMX) && !defined(USEVIS) + ++#if __clang__ > 0 ++#define only_inline inline ++#endif ++ + only_inline void initsimd(int enable) + { + }