]> git.rm.cloudns.org Git - xonotic/darkplaces.git/commitdiff
It seems that 2.4 BSDmakefile is missing some SDL defines, and thus is
authordivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 18 Mar 2008 13:06:34 +0000 (13:06 +0000)
committerdivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 18 Mar 2008 13:06:34 +0000 (13:06 +0000)
broken (tested under FreeBSD). Also, last lines about dependencies are
probably gmake-leftovers and are not needed on BSD (in fact, they've been
causing errors since some older version). Please consider attached patch.
Thanks. -- danfe (FreeBSD port maintainer)

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8213 d7cf8633-e32d-0410-b094-e92efae38249

BSDmakefile

index 6514487ef9a43741712a230e9c88ddee520bf731..23563cd3d29f08a2ac15cd0515a5156183ce6b3d 100644 (file)
@@ -31,6 +31,10 @@ LDFLAGS_CL=$(LDFLAGS_BSDCL)
 LDFLAGS_SV=$(LDFLAGS_BSDSV)
 LDFLAGS_SDL=$(LDFLAGS_BSDSDL)
 
+SDLCONFIG_CFLAGS=$(SDLCONFIG_UNIXCFLAGS)
+SDLCONFIG_LIBS=$(SDLCONFIG_UNIXLIBS)
+SDLCONFIG_STATICLIBS=$(SDLCONFIG_UNIXSTATICLIBS)
+
 EXE_CL=$(EXE_UNIXCL)
 EXE_SV=$(EXE_UNIXSV)
 EXE_SDL=$(EXE_UNIXSDL)
@@ -93,11 +97,3 @@ DO_LD=$(CC) -o $@ $> $(LDFLAGS)
 
 ##### Definitions shared by all makefiles #####
 .include "makefile.inc"
-
-
-##### Dependency files #####
-
-DEPEND_FILES != ls *.d
-.for i in $(DEPEND_FILES)
-.      include "$i"
-.endfor