From owner-svn-ports-head@freebsd.org Sun Apr 17 10:03:14 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 95E6FB112C3; Sun, 17 Apr 2016 10:03:14 +0000 (UTC) (envelope-from gerald@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 66AEE17EB; Sun, 17 Apr 2016 10:03:14 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3HA3DK9066732; Sun, 17 Apr 2016 10:03:13 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3HA3DTI066731; Sun, 17 Apr 2016 10:03:13 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201604171003.u3HA3DTI066731@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sun, 17 Apr 2016 10:03:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413496 - head/emulators/wine 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.21 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: Sun, 17 Apr 2016 10:03:14 -0000 Author: gerald Date: Sun Apr 17 10:03:13 2016 New Revision: 413496 URL: https://svnweb.freebsd.org/changeset/ports/413496 Log: Fix for old make on FreeBSD 9.x. USE_GCC=yes instead of USE_GCC=any there. PR: 206527 Modified: head/emulators/wine/Makefile Modified: head/emulators/wine/Makefile ============================================================================== --- head/emulators/wine/Makefile Sun Apr 17 09:52:56 2016 (r413495) +++ head/emulators/wine/Makefile Sun Apr 17 10:03:13 2016 (r413496) @@ -122,12 +122,14 @@ PLIST_SUB+= WINE32="@comment " WINE64=" # COMPILER_VERSION will be 42 (the GCC version) even if clang # is CHOSEN_COMPILER_TYPE in that case. .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000054 -USE_GCC= any -.elseif ${CHOSEN_COMPILER_TYPE} == clang && ${COMPILER_VERSION} < 38 +USE_GCC= yes +.else +. if ${CHOSEN_COMPILER_TYPE} == clang && ${COMPILER_VERSION} < 38 CPPFLAGS+= -D__builtin_ms_va_list=__builtin_va_list \ -D__builtin_ms_va_start=__builtin_va_start \ -D__builtin_ms_va_end=__builtin_va_end \ -D__builtin_ms_va_copy=__builtin_va_copy +. endif .endif # Wine assumes a WoW64 package is available however WoW64 is not yet available on FreeBSD.