diff options
author | Kevin E Martin <kem@kem.org> | 2005-11-15 08:29:19 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-11-15 08:29:19 +0000 |
commit | 57df2be1134a6618dab6dbc9e38d5e2e2a729ca6 (patch) | |
tree | 511381773d72f9f31bc706dad705127e02fd4350 /configure.ac | |
parent | e52b924c8a865a946c8e2c559a19b94056b5e2ff (diff) |
Add configure option to change the installed font dir.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 3fa81fa..11392fc 100644 --- a/configure.ac +++ b/configure.ac @@ -32,6 +32,13 @@ AC_PATH_PROG(BDFTOPCF, bdftopcf) AC_PATH_PROG(MKFONTSCALE, mkfontscale) AC_PATH_PROG(MKFONTDIR, mkfontdir) +DEFAULT_FONTDIR=${libdir}/X11/fonts/misc +AC_ARG_WITH(fontdir, + AS_HELP_STRING([--with-fontdir=FONTDIR], [Path to install fonts]), + [FONTDIR="$withval"], + [FONTDIR="$DEFAULT_FONTDIR"]) +AC_SUBST(FONTDIR) + XORG_RELEASE_VERSION AC_OUTPUT([Makefile]) |