BUILD: Remove USE_TERMCONV related bits in port.mk.

We don't have any TERMCONV feature anymore, thus no need to keep this around.
This commit is contained in:
Johannes Schickel 2014-06-09 23:37:53 +02:00
parent ff4c060be1
commit 638814d3c4

View File

@ -156,10 +156,6 @@ ifdef USE_SPARKLE
OSX_STATIC_LIBS += -framework Sparkle -F$(STATICLIBPATH)
endif
ifdef USE_TERMCONV
OSX_ICONV ?= -liconv
endif
# Special target to create a static linked binary for Mac OS X.
# We use -force_cpusubtype_ALL to ensure the binary runs on every
# PowerPC machine.
@ -167,8 +163,7 @@ scummvm-static: $(OBJS)
$(CXX) $(LDFLAGS) -force_cpusubtype_ALL -o scummvm-static $(OBJS) \
-framework CoreMIDI \
$(OSX_STATIC_LIBS) \
$(OSX_ZLIB) \
$(OSX_ICONV)
$(OSX_ZLIB)
# Special target to create a static linked binary for the iPhone
iphone: $(OBJS)