From owner-svn-ports-all@freebsd.org Sun Jan 14 06:57:12 2018 Return-Path: Delivered-To: svn-ports-all@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 3CD91E7FB03; Sun, 14 Jan 2018 06:57:12 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 180136F0DF; Sun, 14 Jan 2018 06:57:12 +0000 (UTC) (envelope-from ler@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5EFBA1E534; Sun, 14 Jan 2018 06:57:11 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0E6vBYm092799; Sun, 14 Jan 2018 06:57:11 GMT (envelope-from ler@FreeBSD.org) Received: (from ler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0E6vBRR092798; Sun, 14 Jan 2018 06:57:11 GMT (envelope-from ler@FreeBSD.org) Message-Id: <201801140657.w0E6vBRR092798@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ler set sender to ler@FreeBSD.org using -f From: Larry Rosenman Date: Sun, 14 Jan 2018 06:57:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458953 - head/astro/boinc-setiathome-v7 X-SVN-Group: ports-head X-SVN-Commit-Author: ler X-SVN-Commit-Paths: head/astro/boinc-setiathome-v7 X-SVN-Commit-Revision: 458953 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jan 2018 06:57:12 -0000 Author: ler Date: Sun Jan 14 06:57:10 2018 New Revision: 458953 URL: https://svnweb.freebsd.org/changeset/ports/458953 Log: clang 6 generates some new warnings, suppress them for now. Modified: head/astro/boinc-setiathome-v7/Makefile Modified: head/astro/boinc-setiathome-v7/Makefile ============================================================================== --- head/astro/boinc-setiathome-v7/Makefile Sun Jan 14 02:19:47 2018 (r458952) +++ head/astro/boinc-setiathome-v7/Makefile Sun Jan 14 06:57:10 2018 (r458953) @@ -3,7 +3,7 @@ PORTNAME= boinc-setiathome-v7 PORTVERSION= 7.00 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= astro MASTER_SITES= LOCAL/rene DISTNAME= setiathome-svn-1924 # modified archive, see leftout in top directory @@ -19,7 +19,7 @@ RUN_DEPENDS= boinc_client:net/boinc-client LIB_DEPENDS= libfftw3f.so:math/fftw3-float GNU_CONFIGURE= yes -USES= autoreconf gmake libtool pkgconfig tar:xz +USES= autoreconf compiler gmake libtool pkgconfig ssl tar:xz CFLAGS+= -O2 -I${LOCALBASE}/include/boinc -I${LOCALBASE}/include \ -L${LOCALBASE}/lib @@ -53,6 +53,12 @@ CFLAGS_amd64= -mtune=native CONFIGURE_ARGS+= --enable-altivec .endif +.include + +.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} == 60 +CFLAGS+= -Wno-reserved-user-defined-literal -Wno-unused-command-line-argument +.endif + CONFIGURE_ENV+= BOINCDIR="${NONEXISTENT}" CONFIGURE_ARGS+= --disable-static-client --disable-server \ @@ -97,4 +103,4 @@ do-install-X11-on: ${INSTALL_PROGRAM} ${WRKSRC}/client/seti_graphics \ ${STAGEDIR}${BOINC_CLIENT_HOME}/projects/${SETI_SITE}/ -.include +.include