1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-15 07:56:36 +00:00
freebsd-ports/games/brutalchess/files/patch-src_board.h
John Marino 7ab7a478aa games/brutalchess: add <unistd.h> for modern compilers
USE_DOS2UNIX was required in order to create and apply the patch.

Approved by:	portmgr (bapt, implicit)
2013-10-01 21:13:17 +00:00

11 lines
220 B
C++

--- src/board.h.orig 2013-10-01 21:08:24.000000000 +0000
+++ src/board.h
@@ -12,6 +12,7 @@
#include <cstdio>
#include <iostream>
#include <vector>
+#include <unistd.h>
#include "bitboard.h"
#include "boardmove.h"