Date: Sun, 16 Jun 2019 14:57:51 +0000 (UTC) From: Rene Ladan <rene@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504349 - in head/games/aquaria: . files Message-ID: <201906161457.x5GEvpWu023211@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rene Date: Sun Jun 16 14:57:51 2019 New Revision: 504349 URL: https://svnweb.freebsd.org/changeset/ports/504349 Log: games/aquaria: include dirent.h instead of sys/dir.h which is scheduled for removal. While here modernize USES PR: 238616 Approved by: maintainer (jbeich) Event: Berlin Hackathon 2019 Added: head/games/aquaria/files/patch-ExternalLibs_ttvfs_VFSTools.cpp (contents, props changed) Modified: head/games/aquaria/Makefile Modified: head/games/aquaria/Makefile ============================================================================== --- head/games/aquaria/Makefile Sun Jun 16 14:51:33 2019 (r504348) +++ head/games/aquaria/Makefile Sun Jun 16 14:57:51 2019 (r504349) @@ -22,7 +22,7 @@ USE_GITHUB= yes GH_ACCOUNT= AquariaOSE GH_PROJECT= Aquaria -USES= cmake:insource compiler:c++11-lang lua:51 openal pkgconfig +USES= cmake:insource compiler:c++11-lang lua:51 openal pkgconfig sdl EXCLUDE= AL FTGL GL SDL* freetype2 glm glpng/png glpng/zlib \ libogg-* libvorbis-* lua-* tinyxml2* EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude ExternalLibs/,} Added: head/games/aquaria/files/patch-ExternalLibs_ttvfs_VFSTools.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/aquaria/files/patch-ExternalLibs_ttvfs_VFSTools.cpp Sun Jun 16 14:57:51 2019 (r504349) @@ -0,0 +1,15 @@ +--- ExternalLibs/ttvfs/VFSTools.cpp.orig 2016-06-19 23:56:27 UTC ++++ ExternalLibs/ttvfs/VFSTools.cpp +@@ -12,11 +12,7 @@ + # include <windows.h> + # include <io.h> + #else +-# ifdef __HAIKU__ +-# include <dirent.h> +-# else +-# include <sys/dir.h> +-# endif ++# include <dirent.h> + # include <unistd.h> + #endif +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906161457.x5GEvpWu023211>