From owner-svn-ports-all@FreeBSD.ORG Mon Jun 22 19:09:03 2015 Return-Path: Delivered-To: svn-ports-all@nevdull.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 2F6F0159; Mon, 22 Jun 2015 19:09:03 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 19FEEF0F; Mon, 22 Jun 2015 19:09:03 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5MJ92tF044717; Mon, 22 Jun 2015 19:09:02 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5MJ92CK044714; Mon, 22 Jun 2015 19:09:02 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201506221909.t5MJ92CK044714@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 22 Jun 2015 19:09:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390312 - in head/lang/gcc5-aux: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 19:09:03 -0000 Author: marino Date: Mon Jun 22 19:09:02 2015 New Revision: 390312 URL: https://svnweb.freebsd.org/changeset/ports/390312 Log: lang/gcc5-aux: Fix build of next version of gnatcoll on DF The issue only affects DragonFly -- the proper configuration for openpty support is already defined for FreeBSD using a macro, but the macro for DragonFly was missing. Modified: head/lang/gcc5-aux/Makefile.version head/lang/gcc5-aux/files/diff-ada Modified: head/lang/gcc5-aux/Makefile.version ============================================================================== --- head/lang/gcc5-aux/Makefile.version Mon Jun 22 18:58:01 2015 (r390311) +++ head/lang/gcc5-aux/Makefile.version Mon Jun 22 19:09:02 2015 (r390312) @@ -5,7 +5,7 @@ GCC_POINT= 1.1 GCC_VERSION= ${GCC_BRANCH}.${GCC_POINT} SNAPSHOT= 20150609 BUILD_RELEASE= no -MAIN_PR= 0 +MAIN_PR= 1 UTIL_PR= 0 ARMV7_PR= 0 Modified: head/lang/gcc5-aux/files/diff-ada ============================================================================== --- head/lang/gcc5-aux/files/diff-ada Mon Jun 22 18:58:01 2015 (r390311) +++ head/lang/gcc5-aux/files/diff-ada Mon Jun 22 19:09:02 2015 (r390312) @@ -903,6 +903,17 @@ Gcc_Path : String_Access := null; Non_Empty_Node : constant Project_Node_Id := 1; +--- gcc/ada/s-oscons-tmplt.c.orig ++++ gcc/ada/s-oscons-tmplt.c +@@ -1014,7 +1014,7 @@ + + */ + +-#if defined (__FreeBSD__) || defined (linux) ++#if defined (__FreeBSD__) || defined (linux) || defined (__DragonFly__) + # define PTY_Library "-lutil" + #else + # define PTY_Library "" --- gcc/ada/s-osinte-android.ads.orig +++ gcc/ada/s-osinte-android.ads @@ -597,11 +597,11 @@