summaryrefslogtreecommitdiff
path: root/games/vectoroids/files/patch-Makefile
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2003-08-27 19:10:39 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2003-08-27 19:10:39 +0000
commit329a9a2ff806288e71e7b18f814d41dede5ffe2a (patch)
treef018747fc2609974be6159848b1d20a7ffbfd93f /games/vectoroids/files/patch-Makefile
parentUpdate to DAT 4289 (diff)
- Fix MASTER_SITES
- Support CFLAGS properly - Utilize USE_SDL PR: 56038 Submitted by: Ports Fury
Notes
Notes: svn path=/head/; revision=87811
Diffstat (limited to 'games/vectoroids/files/patch-Makefile')
-rw-r--r--games/vectoroids/files/patch-Makefile11
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)