Imported Upstream version 5.4.0.167

Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2017-08-21 15:34:15 +00:00
parent e49d6f06c0
commit 536cd135cc
12856 changed files with 563812 additions and 223249 deletions

View File

@ -10,17 +10,4 @@ class LibTiffPackage (Package):
self.needs_lipo = True
if Package.profile.name == 'darwin':
self.sources.extend([
# Fix Snow Leopard build
# http://jira.freeswitch.org/secure/attachment/17487/tiff-4.0.2-macosx-2.patch
'patches/tiff-4.0.2-macosx-2.patch'
])
def prep(self):
Package.prep(self)
if Package.profile.name == 'darwin':
for p in range(1, len(self.local_sources)):
self.sh('patch -p1 < "%{local_sources[' + str(p) + ']}"')
LibTiffPackage()