svn commit: r527948 - head/x11-fm/doublecmd/files

Tobias C. Berner tcberner at FreeBSD.org
Sat Mar 7 14:14:30 UTC 2020


Author: tcberner
Date: Sat Mar  7 14:14:29 2020
New Revision: 527948
URL: https://svnweb.freebsd.org/changeset/ports/527948

Log:
  x11-fm/doublecmd: fix build
  
  After recent changes to lang/fpc port, x11-fm/doublecmd is failing to build.
  FpPipe() function now requires 2 parameters instead of one.
  
  The attached patch fixes it.
  
  PR:		244655
  Submitted by:	Beñat Gonzalez Etxepare <bbtruk at users.sourceforge.net>  (maintainer)

Added:
  head/x11-fm/doublecmd/files/patch-src_platform_unix_upollthread.pas   (contents, props changed)

Added: head/x11-fm/doublecmd/files/patch-src_platform_unix_upollthread.pas
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-fm/doublecmd/files/patch-src_platform_unix_upollthread.pas	Sat Mar  7 14:14:29 2020	(r527948)
@@ -0,0 +1,11 @@
+--- src/platform/unix/upollthread.pas.orig	2019-12-08 11:40:55 UTC
++++ src/platform/unix/upollthread.pas
+@@ -161,7 +161,7 @@ begin
+   // Create pipe for user triggered fake event
+   FEventPipe[0] := -1;
+   FEventPipe[1] := -1;
+-  if fpPipe(FEventPipe) < 0 then
++  if fpPipe(FEventPipe, 0) < 0 then
+     Print(SysErrorMessage(fpGetErrNo))
+   else begin
+     // Set both ends of pipe non blocking


More information about the svn-ports-all mailing list