Blame


1 9c611279 2012-10-21 rsc #!/bin/sh
2 9c611279 2012-10-21 rsc
3 9c611279 2012-10-21 rsc if [ "x$1" = "xx11" ]; then
4 1a512ec0 2012-12-11 rsc if [ "x$2" = "x" ]; then
5 cac1425c 2013-01-31 rsc i="-I/usr/include"
6 1a512ec0 2012-12-11 rsc else
7 1a512ec0 2012-12-11 rsc i=$2
8 1a512ec0 2012-12-11 rsc fi
9 1a512ec0 2012-12-11 rsc echo 'CFLAGS=$CFLAGS '$i'/freetype2'
10 9c611279 2012-10-21 rsc echo 'LDFLAGS=$LDFLAGS -lfontconfig -lfreetype -lz'
11 9c611279 2012-10-21 rsc fi
12 9c611279 2012-10-21 rsc