diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2005-12-08 Adam Jackson <ajax@freedesktop.org> + + * configure.ac: + Bug #5267: Fix AC_ARG_WITH to not lie. (Donnie Berkholz) + 2005-12-03 Kevin E. Martin <kem-at-freedesktop-dot-org> * configure.ac: diff --git a/configure.ac b/configure.ac index bd8e463..6fe114a 100644 --- a/configure.ac +++ b/configure.ac @@ -35,14 +35,14 @@ AC_PATH_PROG(FCCACHE, fc-cache) m4_ifdef([AS_HELP_STRING], , [m4_define([AS_HELP_STRING], m4_defn([AC_HELP_STRING]))]) DEFAULT_TTFFONTDIR=${libdir}/X11/fonts/TTF -AC_ARG_WITH(fontdir, +AC_ARG_WITH(ttf-fontdir, AS_HELP_STRING([--with-ttf-fontdir=FONTDIR], [Path to install TTF fonts]), [TTFFONTDIR="$withval"], [TTFFONTDIR="$DEFAULT_TTFFONTDIR"]) AC_SUBST(TTFFONTDIR) DEFAULT_OTFFONTDIR=${libdir}/X11/fonts/OTF -AC_ARG_WITH(fontdir, +AC_ARG_WITH(otf-fontdir, AS_HELP_STRING([--with-otf-fontdir=FONTDIR], [Path to install OTF fonts]), [OTFFONTDIR="$withval"], [OTFFONTDIR="$DEFAULT_OTFFONTDIR"]) |