From owner-svn-ports-head@freebsd.org Fri Nov 2 01:34:16 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 95AF110E0478; Fri, 2 Nov 2018 01:34:16 +0000 (UTC) (envelope-from linimon@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 4745D701F3; Fri, 2 Nov 2018 01:34:16 +0000 (UTC) (envelope-from linimon@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 26F0923DF5; Fri, 2 Nov 2018 01:34:16 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wA21YFL6037072; Fri, 2 Nov 2018 01:34:15 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wA21YF5U037071; Fri, 2 Nov 2018 01:34:15 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201811020134.wA21YF5U037071@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 2 Nov 2018 01:34:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483757 - head/deskutils/xneur X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/deskutils/xneur X-SVN-Commit-Revision: 483757 X-SVN-Commit-Repository: ports 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.29 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: Fri, 02 Nov 2018 01:34:16 -0000 Author: linimon Date: Fri Nov 2 01:34:15 2018 New Revision: 483757 URL: https://svnweb.freebsd.org/changeset/ports/483757 Log: Fix build with GCC-based architectures. PR: 232848 Submitted by: Piotr Kubaj Modified: head/deskutils/xneur/Makefile Modified: head/deskutils/xneur/Makefile ============================================================================== --- head/deskutils/xneur/Makefile Fri Nov 2 01:33:37 2018 (r483756) +++ head/deskutils/xneur/Makefile Fri Nov 2 01:34:15 2018 (r483757) @@ -14,15 +14,20 @@ COMMENT= Auto keyboard switcher LICENSE= GPLv2 -BROKEN_powerpc64= fails to compile: text.c:272: nested functions are disabled, use -fnested-functions to re-enable - LIB_DEPENDS= libnotify.so:devel/libnotify \ libpcre.so:devel/pcre -USES= compiler:nestedfct iconv libtool localbase pathfix pkgconfig +USES= compiler:nestedfct gnome iconv libtool localbase pathfix \ + pkgconfig WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-static --libdir=${PREFIX}/lib/xneur +CFLAGS_mips= -fnested-functions +CFLAGS_mips64= -fnested-functions +CFLAGS_powerpc= -fnested-functions +CFLAGS_powerpcspe= -fnested-functions +CFLAGS_powerpc64= -fnested-functions +CFLAGS_sparc64= -fnested-functions USE_LDCONFIG= ${PREFIX}/lib/xneur ${PREFIX}/lib/xneur/xneur INSTALLS_ICONS= yes