diff options
author | Memphiz <memphis@machzwo.de> | 2014-01-15 20:40:23 +0100 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2014-01-15 20:49:16 +0100 |
commit | a3bb33ddb34f2ac4101d272997fcf7f626cc17f3 (patch) | |
tree | ad2a47a1ee758e618a5361d65f46223793617de5 /XBMC.xcodeproj | |
parent | ef79c1da5796e39a9ef9527657d17d6900bb004f (diff) |
[atv2] - added -lxslt to the linker flags in xcode project for atv2 target. Seems atv2 target is the only one who doesn't pick up the xcconfig (maybe because of the include indirection or what - i think its a bug in xcode3). This would have resulted in crash&burn on atv2 at runtime when accessing a function from libxslt (we don't see the issue during compile time because of lazy linking which is needed because of atv2 backrow stuff)
Diffstat (limited to 'XBMC.xcodeproj')
-rw-r--r-- | XBMC.xcodeproj/project.pbxproj | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/XBMC.xcodeproj/project.pbxproj b/XBMC.xcodeproj/project.pbxproj index a0362d2457..e0a5c27880 100644 --- a/XBMC.xcodeproj/project.pbxproj +++ b/XBMC.xcodeproj/project.pbxproj @@ -13293,6 +13293,7 @@ "-ltag", "-L$XBMC_DEPENDS/lib/mysql", "-lmysqlclient", + "-lxslt", ); PLIST_FILE_OUTPUT_FORMAT = xml; PREBINDING = NO; @@ -13407,6 +13408,7 @@ "-ltag", "-L$XBMC_DEPENDS/lib/mysql", "-lmysqlclient", + "-lxslt", ); PLIST_FILE_OUTPUT_FORMAT = xml; PREBINDING = NO; |