diff options
author | lioux <lioux@FreeBSD.org> | 2002-08-30 12:55:45 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2002-08-30 12:55:45 +0800 |
commit | 049c411c025c866f2229e49d4bba48e9613116f9 (patch) | |
tree | 6aed0862d98ce836ab584b1c671bd467d8b48b88 /games/heretic/files | |
parent | f760bd557425f7bd6bd9fa868e899a7e4d6f9932 (diff) | |
download | freebsd-ports-gnome-049c411c025c866f2229e49d4bba48e9613116f9.tar.gz freebsd-ports-gnome-049c411c025c866f2229e49d4bba48e9613116f9.tar.zst freebsd-ports-gnome-049c411c025c866f2229e49d4bba48e9613116f9.zip |
o Depend on sdl12 port instead of sdl10 one
o This fixes an outstanding full screen mode bug
o PORTREVISION bump since port builded but did not work
PR: 41604
Submitted by: Edwin Groothuis <edwin@mavetju.org>
Approved by: maintainer
Diffstat (limited to 'games/heretic/files')
-rw-r--r-- | games/heretic/files/patch-aa | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/games/heretic/files/patch-aa b/games/heretic/files/patch-aa index b4c475f130d0..a15e20fb9935 100644 --- a/games/heretic/files/patch-aa +++ b/games/heretic/files/patch-aa @@ -1,5 +1,5 @@ ---- Makefile.orig Tue May 2 03:57:07 2000 -+++ Makefile Thu Jan 10 19:33:45 2002 +--- Makefile.orig Mon May 1 22:56:45 2000 ++++ Makefile Fri Aug 30 01:43:32 2002 @@ -1,19 +1,19 @@ # Makefile for Linux Heretic/GLHeretic @@ -71,11 +71,12 @@ +X_LDFLAGS = -L${X11BASE}/lib X11LIBS = -lXext -lX11 - GLLIBS = -lSDL -lpthread +-GLLIBS = -lSDL -lpthread ++GLLIBS = `${SDL_CONFIG} --libs` ${PTHREAD_LIBS} GGILIBS = -lggi -lm VGALIBS = -lvga -SDLLIBS = -lSDL -lpthread -+SDLLIBS = -L${LOCALBASE}/lib -lSDL ${PTHREAD_LIBS} ++SDLLIBS = `${SDL_CONFIG} --libs` ${PTHREAD_LIBS} OBJS = am_map.o ct_chat.o d_main.o d_net.o f_finale.o g_game.o \ p_ceilng.o p_doors.o p_enemy.o p_floor.o p_inter.o p_lights.o \ |