* configure.ac: Add Ubuntu path to unifont and report unifont path used.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-05-30 21:51:34 +02:00
parent 57e0c20cb5
commit 4b80e43c8c
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-05-30 Vladimir Serbinenko <phcoder@gmail.com>
* configure.ac: Add Ubuntu path to unifont and report unifont path used.
2013-05-30 Vladimir Serbinenko <phcoder@gmail.com>
* Makefile.am, conf/Makefile.common: Fix compilation problem with some

View File

@ -277,7 +277,7 @@ fi
FONT_SOURCE=
for ext in pcf pcf.gz bdf bdf.gz ttf ttf.gz; do
for dir in . /usr/src /usr/share/fonts/X11/misc /usr/share/fonts/unifont /usr/share/fonts/uni; do
for dir in . /usr/src /usr/share/fonts/X11/misc /usr/share/fonts/unifont /usr/share/fonts/uni /usr/share/fonts/truetype/unifont; do
if test -f "$dir/unifont.$ext"; then
FONT_SOURCE="$dir/unifont.$ext"
break 2
@ -1288,5 +1288,10 @@ echo With libzfs support: Yes
else
echo With libzfs support: No "($libzfs_excuse)"
fi
if test "x$FONT_SOURCE" = x ; then
echo "Without unifont"
else
echo "With unifont from $FONT_SOURCE"
fi
echo "*******************************************************"
]