diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 1997-11-18 09:27:01 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 1997-11-18 09:27:01 +0000 |
commit | 945b9eba8d3eb0ad00082958728f34ddc70bf935 (patch) | |
tree | 4ad46382e5d937e8fb6a5f15b5b3f2d6898c3288 /games/xjig/files/patch-aa | |
parent | Update the maintainer's e-mail address. (diff) |
Import xjig port. xjig is a puzzle game.
PR: 4557
Submitted by: Vanill I. Shu <vanilla@minje.com.tw>
Notes
Notes:
svn path=/head/; revision=8694
Diffstat (limited to 'games/xjig/files/patch-aa')
-rw-r--r-- | games/xjig/files/patch-aa | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/games/xjig/files/patch-aa b/games/xjig/files/patch-aa new file mode 100644 index 000000000000..94ce11ef4926 --- /dev/null +++ b/games/xjig/files/patch-aa @@ -0,0 +1,36 @@ +*** Makefile.Linux.orig Thu Jul 18 04:10:55 1996 +--- Makefile.Linux Wed Sep 17 03:51:48 1997 +*************** +*** 1,7 **** + + ### compiler section + CXX = gcc -Wall -fstrength-reduce -fpcc-struct-return +! CXXFLAGS = -g -DUSE_MIT_SHM + + ### default file to be used, when no options are set + +--- 1,7 ---- + + ### compiler section + CXX = gcc -Wall -fstrength-reduce -fpcc-struct-return +! CXXFLAGS += -DUSE_MIT_SHM -I${X_INCLUDE} + + ### default file to be used, when no options are set + +*************** LDFLAGS = -L$(XLIB_DIR) +*** 20,26 **** + .SUFFIXES: .C .o + + .C.o: +! $(CXX) -I$(X_INCLUDE) $(CXXFLAGS) -c $< + + LD = $(CXX) + +--- 20,26 ---- + .SUFFIXES: .C .o + + .C.o: +! $(CXX) $(CXXFLAGS) -c $< + + LD = $(CXX) + |