aboutsummaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorGleydson Soares <gsoares@gmail.com>2015-06-10 13:02:40 -0300
committerRuss Cox <rsc@google.com>2015-11-10 03:30:25 +0000
commit8ee5da7cf764bf5685c137264cd4d6a03f12ba89 (patch)
treeeefbfd299b47ea349ee46b53ad7a4f3b8d421098 /INSTALL
parent44eb2088299f10d45a1b3950285c3314217e0f44 (diff)
downloadplan9port-8ee5da7cf764bf5685c137264cd4d6a03f12ba89.tar.gz
plan9port-8ee5da7cf764bf5685c137264cd4d6a03f12ba89.tar.bz2
plan9port-8ee5da7cf764bf5685c137264cd4d6a03f12ba89.zip
INSTALL: append /usr/X11R6/include and /usr/X11R6/include/freetype2 to
X11 headers detection, so that enable fontsrv build on OpenBSD. Change-Id: I2f3f766339a9f8beed647dfbb19a588d1825732a Reviewed-on: https://plan9port-review.googlesource.com/1290 Reviewed-by: Russ Cox <rsc@google.com>
Diffstat (limited to 'INSTALL')
-rwxr-xr-xINSTALL3
1 files changed, 2 insertions, 1 deletions
diff --git a/INSTALL b/INSTALL
index 31c069d7..8f123b85 100755
--- a/INSTALL
+++ b/INSTALL
@@ -128,7 +128,8 @@ fi
if [ `uname` != Darwin ]; then
# Determine whether fontsrv X11 files are available.
rm -f a.out
- gcc -o a.out -c -Iinclude -I/usr/include -I/usr/local/include -I/usr/include/freetype2 -I/usr/local/include/freetype2 src/cmd/fontsrv/x11.c >/dev/null 2>&1
+ gcc -o a.out -c -Iinclude -I/usr/include -I/usr/local/include -I/usr/include/freetype2 -I/usr/local/include/freetype2 \
+ -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 src/cmd/fontsrv/x11.c >/dev/null 2>&1
if [ -f a.out ]; then
echo " fontsrv dependencies found."
echo "FONTSRV=fontsrv" >>$PLAN9/config