diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 1997-06-30 11:57:52 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 1997-06-30 11:57:52 +0000 |
commit | c8504ede5f44e09739030be6846e7fddc6fd852a (patch) | |
tree | df04b64e00c6b162479252b4b8da49c5a2615923 /games/galaxis/files | |
parent | Activate oonsoo. (diff) |
Import of galaxis port. Save lifeboats from a crippled
interstellar liner.
PR: 3989
Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
Notes
Notes:
svn path=/head/; revision=7146
Diffstat (limited to 'games/galaxis/files')
-rw-r--r-- | games/galaxis/files/patch-aa | 21 | ||||
-rw-r--r-- | games/galaxis/files/patch-ab | 36 |
2 files changed, 57 insertions, 0 deletions
diff --git a/games/galaxis/files/patch-aa b/games/galaxis/files/patch-aa new file mode 100644 index 000000000000..feeb48673418 --- /dev/null +++ b/games/galaxis/files/patch-aa @@ -0,0 +1,21 @@ +*** Makefile Wed Dec 6 13:56:38 1995 +--- /home/andy/tmp/wrk/Makefile Mon Jun 30 08:44:56 1997 +*************** +*** 6,13 **** + V=1.1 + + # Flags for use with the Linux ncurses package (recommended) +! CFLAGS = -g -DNDEBUG # -I/usr/local/include -L/usr/local/lib +! TERMLIB = -lncurses + CC = gcc + + # Flags for use with stock curses +--- 6,13 ---- + V=1.1 + + # Flags for use with the Linux ncurses package (recommended) +! #CFLAGS = -g -DNDEBUG # -I/usr/local/include -L/usr/local/lib +! TERMLIB = -lncurses -lmytinfo + CC = gcc + + # Flags for use with stock curses diff --git a/games/galaxis/files/patch-ab b/games/galaxis/files/patch-ab new file mode 100644 index 000000000000..47ede080296c --- /dev/null +++ b/games/galaxis/files/patch-ab @@ -0,0 +1,36 @@ +*** galaxis.c Wed Sep 20 17:16:33 1995 +--- /home/andy/tmp/wrk/galaxis.c Mon Jun 30 08:45:01 1997 +*************** +*** 8,14 **** + + #include <stdio.h> + #include <termios.h> +! #include <curses.h> + #include <signal.h> + #include <ctype.h> + #include <assert.h> +--- 8,14 ---- + + #include <stdio.h> + #include <termios.h> +! #include <ncurses.h> + #include <signal.h> + #include <ctype.h> + #include <assert.h> +*************** +*** 131,137 **** + + (void) signal(SIGINT,outro); + (void) signal(SIGINT,outro); +! (void) signal(SIGIOT,outro); /* for assert(3) */ + if(signal(SIGQUIT,SIG_IGN) != SIG_IGN) + (void)signal(SIGQUIT,outro); + +--- 131,137 ---- + + (void) signal(SIGINT,outro); + (void) signal(SIGINT,outro); +! (void) signal(SIGABRT,outro); /* for assert(3) */ + if(signal(SIGQUIT,SIG_IGN) != SIG_IGN) + (void)signal(SIGQUIT,outro); + |