Makefile.shared: don't link with libsupc++ on linux.

It works perfectly fine without it for me, and including it for no reason
is just an annoyance to other people building from source.

git-svn-id: https://svn.eduke32.com/eduke32@2708 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2012-05-29 20:01:50 +00:00
parent 5b387f7a08
commit 7cd44d6cdb

View file

@ -13,9 +13,6 @@ endif
SDL_FRAMEWORK = 0
# Overridden for OSes that don't have the cutdown stdc++ that is supc++
STDCPPLIB=-lsupc++
# Detect machine architecture
SYSARCH?=$(strip $(shell uname -m))
@ -86,6 +83,13 @@ ifndef PLATFORM
endif
endif
ifeq ($(PLATFORM),LINUX)
STDCPPLIB=
else
# Overridden for OSes that don't have the cutdown stdc++ that is supc++
STDCPPLIB= -lsupc++
endif
ifeq ($(PLATFORM),LINUX)
RENDERTYPE=SDL
BUILDCFLAGS+= -DHAVE_INTTYPES