svn commit: r529773 - head/cad/graywolf/files

Yuri Victorovich yuri at FreeBSD.org
Sun Mar 29 06:15:50 UTC 2020


Author: yuri
Date: Sun Mar 29 06:15:40 2020
New Revision: 529773
URL: https://svnweb.freebsd.org/changeset/ports/529773

Log:
  cad/graywolf: Fix build on 13
  
  sys/dir.h is replaced with dirent.h
  
  fatal error: sys/dir.h: No such file or directory
    136 | #include <sys/dir.h>
        |          ^~~~~~~~~~~

Added:
  head/cad/graywolf/files/patch-src_Ylib_file.c   (contents, props changed)

Added: head/cad/graywolf/files/patch-src_Ylib_file.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/graywolf/files/patch-src_Ylib_file.c	Sun Mar 29 06:15:40 2020	(r529773)
@@ -0,0 +1,14 @@
+--- src/Ylib/file.c.orig	2020-03-29 06:09:00 UTC
++++ src/Ylib/file.c
+@@ -133,7 +133,11 @@ char *pathname ;
+ 
+ } /* end Yfile_slink */
+ 
++#if defined(__FreeBSD__) || defined(__DragonFly__)
++#include <dirent.h>
++#else
+ #include <sys/dir.h>
++#endif
+ 
+ /* check if a directory exists */
+ BOOL YdirectoryExists(pathname)


More information about the svn-ports-head mailing list