From owner-svn-ports-head@FreeBSD.ORG Sun Feb 8 17:47:12 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CEF0978D; Sun, 8 Feb 2015 17:47:12 +0000 (UTC) Received: from mail-ig0-f177.google.com (mail-ig0-f177.google.com [209.85.213.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9542036C; Sun, 8 Feb 2015 17:47:12 +0000 (UTC) Received: by mail-ig0-f177.google.com with SMTP id z20so12082064igj.4; Sun, 08 Feb 2015 09:47:06 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=IbI8gp7D4dczZ9H2iYyyDzM3aba57x1xC8EK31Ey00s=; b=i4RNJngCh4yorhwi5lnTxUsV6jFNi1uJ7lmlm3N/tEb4LQ/+HviEjqES/cz0R5KJ8i QUKdyKB3lIZRscD4qC626OhEGPtR5bkL9q54zE38O7v35fRBbLCSuAcumGdg2Cx6Qs5b yzzWqxziT1MrnQqvSVbb9hNUGLVL5A937vwO/QOyTAT60gMoyTUbb89I1Supc7BqICND buxc8eaWEN9Zyb/sGoxblCuVTbPUBVFHBI1cHQYPl9xU1aqLqqC17Wzb4E0tlQbjdkCi nyuOYdE1OzJDUr0vbOlXYFncU7ed9YhrZBuCvofP6rJA5pixPA09oo84dT0l/zb9iZ4l wkfA== X-Received: by 10.42.12.20 with SMTP id w20mr22541016icw.10.1423417626709; Sun, 08 Feb 2015 09:47:06 -0800 (PST) Received: from mail-ie0-f172.google.com (mail-ie0-f172.google.com. [209.85.223.172]) by mx.google.com with ESMTPSA id w9sm408515igl.0.2015.02.08.09.47.06 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 08 Feb 2015 09:47:06 -0800 (PST) Received: by iecvy18 with SMTP id vy18so11760478iec.8; Sun, 08 Feb 2015 09:47:06 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.42.201.78 with SMTP id ez14mr21854586icb.22.1423417626137; Sun, 08 Feb 2015 09:47:06 -0800 (PST) Received: by 10.64.192.70 with HTTP; Sun, 8 Feb 2015 09:47:06 -0800 (PST) In-Reply-To: References: <201502081039.t18Ad8nD087078@svn.freebsd.org> Date: Sun, 8 Feb 2015 23:47:06 +0600 Message-ID: Subject: Re: svn commit: r378640 - in head/x11-fm/worker: . files From: Muhammad Moinur Rahman To: Gerald Pfeifer Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 17:47:12 -0000 Hi, The software doesn't compile with default versions of GCC in 8.4 and 9.3 as those are lower than 4.6. While the configure script is run it stops giving an error about requirement for GCC 4.6+. BR, Muhammad On Sun, Feb 8, 2015 at 11:26 PM, Gerald Pfeifer wrote: > On Sunday 2015-02-08 10:39, Muhammad Moinur Rahman wrote: > > - Add support for building with clang on 10+ > > > -USE_GCC= yes > > > +.if ${OSVERSION} < 1000024 > > +USE_GCC= 4.6+ > > +.else > > +CONFIGURE_ARGS+= --disable-cxx-check > > +CXXFLAGS+= -std=c++11 > > +.endif > > Mind using USE_GCC=yes instead of changing this to 4.6+ in this > specific case? There is little benefit being specific as opposed > to using the default version of GCC. > > Gerald >