pkgsrc/lang/ghc/patches/patch-ao
kristerw 2e9dd53236 Use the correct renamed symbols for opendir, unsetenv, and times.
Solves PR pkg/38263.

Bump PKGREVISION.
2008-03-24 22:40:23 +00:00

13 lines
468 B
Text

$NetBSD: patch-ao,v 1.3 2008/03/24 22:40:23 kristerw Exp $
--- libraries/unix/System/Posix/Process.hsc.orig 2008-03-24 17:10:54.000000000 +0100
+++ libraries/unix/System/Posix/Process.hsc 2008-03-24 17:11:30.000000000 +0100
@@ -177,7 +177,7 @@
type CTms = ()
-foreign import ccall unsafe "times"
+foreign import ccall unsafe "__hsunix_times"
c_times :: Ptr CTms -> IO CClock
-- -----------------------------------------------------------------------------