From owner-svn-ports-head@freebsd.org Wed Jan 10 12:07:05 2018 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 5FD91E7C802; Wed, 10 Jan 2018 12:07:05 +0000 (UTC) (envelope-from danfe@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 39A4F70E7E; Wed, 10 Jan 2018 12:07:05 +0000 (UTC) (envelope-from danfe@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 6DF6225597; Wed, 10 Jan 2018 12:07:04 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0AC748n081791; Wed, 10 Jan 2018 12:07:04 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0AC74wA081790; Wed, 10 Jan 2018 12:07:04 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201801101207.w0AC74wA081790@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 10 Jan 2018 12:07:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458624 - head/lang/gauche X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/lang/gauche X-SVN-Commit-Revision: 458624 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.25 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: Wed, 10 Jan 2018 12:07:05 -0000 Author: danfe Date: Wed Jan 10 12:07:03 2018 New Revision: 458624 URL: https://svnweb.freebsd.org/changeset/ports/458624 Log: Unbreak the build on sparc64: configure script was correctly detecting that extra MD file is required, but since it is under `src' subdirectory, make(1) was not able to find and make it. While here, remove s|-lpthread|-pthread| gimmick which is no-op these days. Modified: head/lang/gauche/Makefile Modified: head/lang/gauche/Makefile ============================================================================== --- head/lang/gauche/Makefile Wed Jan 10 12:04:31 2018 (r458623) +++ head/lang/gauche/Makefile Wed Jan 10 12:07:03 2018 (r458624) @@ -19,7 +19,6 @@ BROKEN_armv6= Fails to build: unknown attribute __allo BROKEN_armv7= Fails to build: unknown attribute __alloc_size__; also fails in assembler BROKEN_mips= Fails to build: redefinition of GC_register_dynamic_libraries BROKEN_mips64= Fails to build: redefinition of GC_register_dynamic_libraries -BROKEN_sparc64= Fails to build: do not know how to make sparc_mach_dep.lo USES= iconv makeinfo tar:tgz GNU_CONFIGURE= yes @@ -63,8 +62,9 @@ CONFIGURE_ARGS+= --enable-multibyte=none .endif post-patch: +# required for sparc64, no-op elsewhere @${REINPLACE_CMD} -e \ - 's|-lpthread|-pthread|' ${WRKSRC}/configure + '/^VPATH = /s,$$,/src,' ${WRKSRC}/gc/Makefile.in post-install: @${TOUCH} ${STAGEDIR}${PREFIX}/lib/gauche-0.9/site/${CONFIGURE_TARGET}/.keepme