Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Jun 2015 19:09:02 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
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
Message-ID:  <201506221909.t5MJ92CK044714@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 @@



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506221909.t5MJ92CK044714>