Date: Sun, 11 Feb 2018 23:11:02 +0000 (UTC) From: Danilo Egea Gondolfo <danilo@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461537 - head/net/delegate Message-ID: <201802112311.w1BNB2C0013278@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danilo Date: Sun Feb 11 23:11:02 2018 New Revision: 461537 URL: https://svnweb.freebsd.org/changeset/ports/461537 Log: - Fix build on CURRENT by setting -x c++ -std=gnu++98 to CFLAGS for now. Delegate already use cc to build cxx code everywhere. Modified: head/net/delegate/Makefile Modified: head/net/delegate/Makefile ============================================================================== --- head/net/delegate/Makefile Sun Feb 11 23:04:38 2018 (r461536) +++ head/net/delegate/Makefile Sun Feb 11 23:11:02 2018 (r461537) @@ -15,6 +15,8 @@ SUB_FILES= pkg-message ADMIN?= admin@example.com +CFLAGS+= -x c++ -std=gnu++98 + PLIST_FILES= sbin/delegated etc/rc.d/delegated.sh-dist PORTDOCS= CHANGES COPYRIGHT DG9note.html HowToDG.html IPv6NOTE.txt \ Manual.htm jpconv.htm tutor-en.htm tutor-jp.htm
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802112311.w1BNB2C0013278>