From 7812be9b67e0c2d9064c0c51bcb86323c082f60c Mon Sep 17 00:00:00 2001 From: plagman Date: Sun, 16 Jan 2011 07:19:29 +0000 Subject: [PATCH] Define OV_EXCLUDE_STATIC_CALLBACKS before including vorbisfile.h to avoid having some unused global structures (and warnings) around. git-svn-id: https://svn.eduke32.com/eduke32@1770 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/Makefile.common | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/polymer/eduke32/Makefile.common b/polymer/eduke32/Makefile.common index 860a153bc..6653dcdaf 100644 --- a/polymer/eduke32/Makefile.common +++ b/polymer/eduke32/Makefile.common @@ -73,7 +73,9 @@ ifneq (0,$(RELEASE)) else # Debugging enabled debug=-ggdb -O0 -DDEBUGGINGAIDS - LIBS+=-rdynamic + ifeq ($(PLATFORM),LINUX) + LIBS+=-rdynamic + endif ifneq (0,$(PROFILER)) LIBS+= -lprofiler debug+= -pg