aboutsummaryrefslogtreecommitdiff
path: root/games/freebsd-games/files/patch-snake_snake_snake.h
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2009-11-21 22:04:32 +0000
committerMartin Wilke <miwi@FreeBSD.org>2009-11-21 22:04:32 +0000
commite0390f9ebef90d48c455bea954591e9057682512 (patch)
treeefa925f9c5e0af9a70076e4e2438a9f109d73d01 /games/freebsd-games/files/patch-snake_snake_snake.h
parentf1bcf11bdea1e6c61defd797d8ca6090f649cea2 (diff)
downloadports-e0390f9ebef90d48c455bea954591e9057682512.tar.gz
ports-e0390f9ebef90d48c455bea954591e9057682512.zip
- Remove freebsd-games
Notes
Notes: svn path=/head/; revision=244617
Diffstat (limited to 'games/freebsd-games/files/patch-snake_snake_snake.h')
-rw-r--r--games/freebsd-games/files/patch-snake_snake_snake.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/games/freebsd-games/files/patch-snake_snake_snake.h b/games/freebsd-games/files/patch-snake_snake_snake.h
deleted file mode 100644
index a89166ac21f3..000000000000
--- a/games/freebsd-games/files/patch-snake_snake_snake.h
+++ /dev/null
@@ -1,25 +0,0 @@
-Index: snake/snake/snake.h
-@@ -38,10 +38,13 @@
- # include <stdio.h>
- # include <assert.h>
- # include <sys/types.h>
--# include <sgtty.h>
-+# include <termios.h>
- # include <signal.h>
- # include <math.h>
-
-+#define gtty(_a,_b) tcgetattr(_a,_b)
-+#define stty(_a,_b) tcsetattr(_a,TCSANOW,_b)
-+
- #define ESC '\033'
-
- struct tbuffer {
-@@ -72,7 +75,7 @@
- int col, line;
- };
- struct point cursor;
--struct sgttyb orig, new;
-+struct termios orig, new;
- #ifdef TIOCLGET
- struct ltchars olttyc, nlttyc;
- #endif