diff options
| author | Thierry Crozat | 2010-06-15 21:31:46 +0000 | 
|---|---|---|
| committer | Thierry Crozat | 2010-06-15 21:31:46 +0000 | 
| commit | 3f4ec4a8a4bd70bb340a5ba358e8aa4b622ee844 (patch) | |
| tree | 6a2e28885c1d22492b05f556dfe4a2d9c621b7d9 | |
| parent | 2e9a7155e6ba4398a1594df4c21de97f29a99193 (diff) | |
| download | scummvm-rg350-3f4ec4a8a4bd70bb340a5ba358e8aa4b622ee844.tar.gz scummvm-rg350-3f4ec4a8a4bd70bb340a5ba358e8aa4b622ee844.tar.bz2 scummvm-rg350-3f4ec4a8a4bd70bb340a5ba358e8aa4b622ee844.zip  | |
Fix link of scummvm-static (for MacOS X bundle) when translation is enabled.
svn-id: r49894
| -rw-r--r-- | ports.mk | 5 | 
1 files changed, 5 insertions, 0 deletions
@@ -101,6 +101,10 @@ ifdef USE_ZLIB  OSX_ZLIB ?= -lz  endif +ifdef USE_TRANSLATION +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. @@ -109,6 +113,7 @@ scummvm-static: $(OBJS)  		-framework CoreMIDI \  		$(OSX_STATIC_LIBS) \  		$(OSX_ZLIB) \ +		$(OSX_ICONV) \  		-lSystemStubs  # Special target to create a static linked binary for the iPhone  | 
