Commit 669e445f authored by Łukasz Nowak's avatar Łukasz Nowak

- add freetype, compiled against locally available zlib


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40712 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 46ca4d28
[buildout]
extends =
../software-profiles/zlib.cfg
parts =
freetype
[freetype]
recipe = hexagonit.recipe.cmmi
url = http://download.savannah.gnu.org/releases/freetype/freetype-2.4.3.tar.gz
md5sum = 649dd3c558278ae1d79a4e8e502c13e4
environment =
CFLAGS=-I${zlib:location}/include
LDFLAGS=-L${zlib:location}/lib -Wl,-rpath -Wl,${zlib:location}/lib
......@@ -1766,6 +1766,15 @@ class AssertJasper(AssertSoftwareMixin):
'libjpeg',
])
class AssertFreetype(AssertSoftwareMixin):
def test_ld_libfreetype(self):
self.assertLibraryList('parts/freetype/lib/libfreetype.so',[
'libc',
'libz',
], [
'zlib',
])
class AssertElfLinkedInternally(AssertSoftwareMixin):
def test(self):
result_dict = {}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment