svn commit: r536651 - in head/lang/ghc: . files

Gleb Popov arrowd at FreeBSD.org
Tue May 26 20:18:42 UTC 2020


Author: arrowd
Date: Tue May 26 20:18:41 2020
New Revision: 536651
URL: https://svnweb.freebsd.org/changeset/ports/536651

Log:
  lang/ghc: Add patch for timer machinery.
  
  PR:		241849
  Submitted by:	Kevin Zheng <kevinz5000 at gmail.com>

Added:
  head/lang/ghc/files/patch-rts_posix_Itimer.c   (contents, props changed)
Modified:
  head/lang/ghc/Makefile

Modified: head/lang/ghc/Makefile
==============================================================================
--- head/lang/ghc/Makefile	Tue May 26 20:01:42 2020	(r536650)
+++ head/lang/ghc/Makefile	Tue May 26 20:18:41 2020	(r536651)
@@ -3,6 +3,7 @@
 
 PORTNAME=	ghc
 PORTVERSION=	${GHC_VERSION}
+PORTREVISION=	1
 CATEGORIES=	lang haskell
 MASTER_SITES=	https://www.haskell.org/ghc/dist/${PORTVERSION}/:source \
 		LOCAL/arrowd/:boot \

Added: head/lang/ghc/files/patch-rts_posix_Itimer.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/ghc/files/patch-rts_posix_Itimer.c	Tue May 26 20:18:41 2020	(r536651)
@@ -0,0 +1,11 @@
+--- rts/posix/Itimer.c.orig	2020-02-24 23:55:56 UTC
++++ rts/posix/Itimer.c
+@@ -48,7 +48,7 @@
+ #define USE_PTHREAD_FOR_ITIMER
+ #endif
+ 
+-#if defined(freebsd_HOST_OS) && defined(THREADED_RTS)
++#if defined(freebsd_HOST_OS)
+ #define USE_PTHREAD_FOR_ITIMER
+ #endif
+ 


More information about the svn-ports-head mailing list