From 3a6bdf0715b994d6ecaa5b6e448695a8a8ec7d72 Mon Sep 17 00:00:00 2001 From: Kevin E Martin Date: Thu, 8 Dec 2005 19:21:12 +0000 Subject: [PATCH] Add configure option to set the top level font dir. --- ChangeLog | 5 +++++ configure.ac | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d5dd08d6b..b850cc854 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-12-08 Kevin E. Martin + + * configure.ac: + Add configure option to set the top level font dir. + 2005-12-08 Kevin E. Martin * configure.ac: diff --git a/configure.ac b/configure.ac index 073bf8082..c35281787 100644 --- a/configure.ac +++ b/configure.ac @@ -339,7 +339,9 @@ AC_ARG_WITH(os-vendor, AS_HELP_STRING([--with-os-vendor=OSVENDOR], [Name o AC_ARG_WITH(mesa-source, AS_HELP_STRING([--with-mesa-source=MESA_SOURCE], [Path to Mesa source tree]), [ MESA_SOURCE="$withval" ], [ MESA_SOURCE="" ]) -FONTDIR="${libdir}/X11/fonts" +AC_ARG_WITH(fontdir, AS_HELP_STRING([--with-fontdir=FONTDIR], [Path to top level dir where fonts are installed (default: ${libdir}/X11/fonts)]), + [ FONTDIR="$withval" ], + [ FONTDIR="${libdir}/X11/fonts" ]) DEFAULT_FONT_PATH="${FONTDIR}/misc/,${FONTDIR}/TTF/,${FONTDIR}/OTF,${FONTDIR}/Type1/,${FONTDIR}/CID/,${FONTDIR}/100dpi/,${FONTDIR}/75dpi/" AC_ARG_WITH(default-font-path, AS_HELP_STRING([--with-default-font-path=PATH], [Comma separated list of font dirs]), [ FONTPATH="$withval" ],