From 4b80e43c8c796cb35fbd12c24f9bb8adbe18e702 Mon Sep 17 00:00:00 2001 From: Vladimir 'phcoder' Serbinenko Date: Thu, 30 May 2013 21:51:34 +0200 Subject: [PATCH] * configure.ac: Add Ubuntu path to unifont and report unifont path used. --- ChangeLog | 4 ++++ configure.ac | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 682936b3d..b468a0ae4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-05-30 Vladimir Serbinenko + + * configure.ac: Add Ubuntu path to unifont and report unifont path used. + 2013-05-30 Vladimir Serbinenko * Makefile.am, conf/Makefile.common: Fix compilation problem with some diff --git a/configure.ac b/configure.ac index bb4071a90..c151550e4 100644 --- a/configure.ac +++ b/configure.ac @@ -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 "*******************************************************" ]