diff options
author | jmg <jmg@FreeBSD.org> | 1997-06-27 09:59:32 +0000 |
---|---|---|
committer | jmg <jmg@FreeBSD.org> | 1997-06-27 09:59:32 +0000 |
commit | 5790bc8af3c172c5ee2cd1f1ad117f046f6a0786 (patch) | |
tree | 546c7403de589497207eebe1baec3b4d0211452e /games/empire/files | |
parent | f6e76fb399b54d70519886260e1f95fdc6f44172 (diff) | |
download | FreeBSD-ports-5790bc8af3c172c5ee2cd1f1ad117f046f6a0786.zip FreeBSD-ports-5790bc8af3c172c5ee2cd1f1ad117f046f6a0786.tar.gz |
import of VMS Empire, a good old strategy game.
Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
Diffstat (limited to 'games/empire/files')
-rw-r--r-- | games/empire/files/patch-aa | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/games/empire/files/patch-aa b/games/empire/files/patch-aa new file mode 100644 index 0000000..8044867 --- /dev/null +++ b/games/empire/files/patch-aa @@ -0,0 +1,56 @@ +*** ../empire-1.1.orig/Makefile Fri Jun 28 06:27:39 1996 +--- Makefile Fri Jun 27 02:31:13 1997 +*************** +*** 14,25 **** + # Change the line below for your system. If you are on a Sun or Vax, + # you may want BSD. + +! #SYS = BSD +! SYS = SYSV + + # Use -g to compile the program for debugging. + +! DEBUG = -g -DDEBUG + #DEBUG = -O + + # Use -p to profile the program. +--- 14,25 ---- + # Change the line below for your system. If you are on a Sun or Vax, + # you may want BSD. + +! SYS = BSD +! #SYS = SYSV + + # Use -g to compile the program for debugging. + +! #DEBUG = -g -DDEBUG + #DEBUG = -O + + # Use -p to profile the program. +*************** +*** 28,39 **** + + # Define all necessary libraries. 'curses' is necessary. 'termcap' + # is needed on BSD systems. +! LIBS = -lncurses +! #LIBS = -lcurses -ltermcap + + # You shouldn't have to modify anything below this line. + +! CFLAGS = $(DEBUG) $(PROFILE) -D$(SYS) + + FILES = \ + attack.c \ +--- 28,39 ---- + + # Define all necessary libraries. 'curses' is necessary. 'termcap' + # is needed on BSD systems. +! #LIBS = -lncurses +! LIBS = -lcurses + + # You shouldn't have to modify anything below this line. + +! CFLAGS+= $(DEBUG) $(PROFILE) -D$(SYS) + + FILES = \ + attack.c \ |