tINSTALL: append /usr/X11R6/include and /usr/X11R6/include/freetype2 to X11 headers detection, so that enable fontsrv build on OpenBSD. - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 8ee5da7cf764bf5685c137264cd4d6a03f12ba89
 (DIR) parent 44eb2088299f10d45a1b3950285c3314217e0f44
 (HTM) Author: Gleydson Soares <gsoares@gmail.com>
       Date:   Wed, 10 Jun 2015 13:02:40 -0300
       
       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:
         M INSTALL                             |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/INSTALL b/INSTALL
       t@@ -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