svn commit: r489447 - head/games/blackshadeselite/files
Dmitry Marakasov
amdmi3 at FreeBSD.org
Sun Jan 6 09:12:22 UTC 2019
Author: amdmi3
Date: Sun Jan 6 09:12:21 2019
New Revision: 489447
URL: https://svnweb.freebsd.org/changeset/ports/489447
Log:
- Fix build in 12 by respecting LDFLAGS
Modified:
head/games/blackshadeselite/files/patch-Makefile
Modified: head/games/blackshadeselite/files/patch-Makefile
==============================================================================
--- head/games/blackshadeselite/files/patch-Makefile Sun Jan 6 09:00:26 2019 (r489446)
+++ head/games/blackshadeselite/files/patch-Makefile Sun Jan 6 09:12:21 2019 (r489447)
@@ -17,7 +17,7 @@
-LDFLAGS := $(shell sdl-config --libs) -lGL -lGLU -lopenal -lalut # -framework QuickTime
+CFLAGS += -Wall `${SDL_CONFIG} --cflags` -I$(SRCDIR) -I$(NET_SRCDIR) -include Source/Support.h
+CXXFLAGS += -Wall `${SDL_CONFIG} --cflags` -I$(SRCDIR) -I$(NET_SRCDIR) -include Source/Support.h
-+LDFLAGS := `${SDL_CONFIG} --libs` -lGL -lGLU -lopenal -lalut # -framework QuickTime
++LDFLAGS += `${SDL_CONFIG} --libs` -lGL -lGLU -lopenal -lalut # -framework QuickTime
# Don't want ogg?
#CFLAGS += -DNOOGG
More information about the svn-ports-head
mailing list