summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2005-12-08 19:39:15 +0000
committerAdam Jackson <ajax@nwnk.net>2005-12-08 19:39:15 +0000
commit409bf4e90e1092101906645b7683368e4496bc0c (patch)
tree3eaa638367e8f3178d5ce8b2719147b1a8ceb542
parentc4629658e950c9ac010fa7f9fcb62d5bf28c4d18 (diff)
Bug #5267: Fix AC_ARG_WITH to not lie. (Donnie Berkholz)MODULAR_COPY
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 86d13d1..56327a0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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"])