* configure.ac: Add Ubuntu path to unifont and report unifont path used.
This commit is contained in:
parent
57e0c20cb5
commit
4b80e43c8c
2 changed files with 10 additions and 1 deletions
|
@ -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>
|
2013-05-30 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* Makefile.am, conf/Makefile.common: Fix compilation problem with some
|
* Makefile.am, conf/Makefile.common: Fix compilation problem with some
|
||||||
|
|
|
@ -277,7 +277,7 @@ fi
|
||||||
FONT_SOURCE=
|
FONT_SOURCE=
|
||||||
|
|
||||||
for ext in pcf pcf.gz bdf bdf.gz ttf ttf.gz; do
|
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
|
if test -f "$dir/unifont.$ext"; then
|
||||||
FONT_SOURCE="$dir/unifont.$ext"
|
FONT_SOURCE="$dir/unifont.$ext"
|
||||||
break 2
|
break 2
|
||||||
|
@ -1288,5 +1288,10 @@ echo With libzfs support: Yes
|
||||||
else
|
else
|
||||||
echo With libzfs support: No "($libzfs_excuse)"
|
echo With libzfs support: No "($libzfs_excuse)"
|
||||||
fi
|
fi
|
||||||
|
if test "x$FONT_SOURCE" = x ; then
|
||||||
|
echo "Without unifont"
|
||||||
|
else
|
||||||
|
echo "With unifont from $FONT_SOURCE"
|
||||||
|
fi
|
||||||
echo "*******************************************************"
|
echo "*******************************************************"
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue