diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2003-08-27 19:10:39 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2003-08-27 19:10:39 +0000 |
commit | 329a9a2ff806288e71e7b18f814d41dede5ffe2a (patch) | |
tree | f018747fc2609974be6159848b1d20a7ffbfd93f /games/vectoroids/files | |
parent | 6a2386d9582d613a32968b47812880f93588d29d (diff) |
Notes
Diffstat (limited to 'games/vectoroids/files')
-rw-r--r-- | games/vectoroids/files/patch-Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/games/vectoroids/files/patch-Makefile b/games/vectoroids/files/patch-Makefile index c7b53bcade84..bf03fa628b3d 100644 --- a/games/vectoroids/files/patch-Makefile +++ b/games/vectoroids/files/patch-Makefile @@ -1,5 +1,5 @@ ---- Makefile.orig Sat Apr 13 17:51:14 2002 -+++ Makefile Fri Jun 27 02:02:00 2003 +--- Makefile.orig Sun Apr 14 09:51:14 2002 ++++ Makefile Wed Aug 27 22:16:03 2003 @@ -9,19 +9,18 @@ # November 30, 2001 - April 13, 2002 @@ -11,14 +11,15 @@ JOY=YES TARGET_DEF=LINUX -SDL_LIB=$(shell sdl-config --libs) $(MIXER) -lSDL_image -+SDL_LIB=$(shell sdl11-config --libs) $(MIXER) -lSDL_image ++SDL_LIB=$(shell $(SDL_CONFIG) --libs) $(MIXER) -lSDL_image NOSOUNDFLAG=__SOUND MIXER=-lSDL_mixer - CFLAGS=-Wall -Wno-long-long -pedantic -ansi -O2 \ +-CFLAGS=-Wall -Wno-long-long -pedantic -ansi -O2 \ - $(shell sdl-config --cflags) -D$(NOSOUNDFLAG) \ -+ $(shell sdl11-config --cflags) -D$(NOSOUNDFLAG) \ ++CFLAGS+= \ ++ $(shell $(SDL_CONFIG) --cflags) -D$(NOSOUNDFLAG) \ -DDATA_PREFIX=\"$(DATA_PREFIX)\" -DJOY_$(JOY) -D$(TARGET_DEF) |