diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-10-07 15:10:23 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-10-07 15:10:23 -0700 |
commit | a6edf75a6b4a14802e3159c74c899b3dcc240002 (patch) | |
tree | 841aabdb05fd747a36f6494b27c4006cafccabdf | |
parent | 0baac9f6b4ef09df10e1899e2e85dcab092d8ef0 (diff) |
Migrate to xorg macros 1.3 & font-util 1.1 macros
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configure.ac | 32 |
2 files changed, 13 insertions, 21 deletions
diff --git a/Makefile.am b/Makefile.am index cb802e8..6264e9b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,7 +55,7 @@ install-data-hook: $(MKFONTSCALE) $(DESTDIR)$(fontdir) @rm -f $(DESTDIR)$(fontdir)/font.dir $(MKFONTDIR) $(DESTDIR)$(fontdir) - $(FCCACHE) $(DESTDIR)$(fontdir) + @RUN_FCCACHE@ distuninstallcheck: @: diff --git a/configure.ac b/configure.ac index f42c7fc..aacd798 100644 --- a/configure.ac +++ b/configure.ac @@ -26,28 +26,20 @@ AC_INIT(font-bh-type1, [1.0.0], [https://bugs.freedesktop.org/enter_bug.cgi?prod AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE -# Require xorg-macros: XORG_CHANGELOG -m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.2 or later before running autoconf/autogen])]) -XORG_MACROS_VERSION(1.2) -AC_PROG_INSTALL +# Require xorg-macros: XORG_DEFAULT_OPTIONS +m4_ifndef([XORG_MACROS_VERSION], + [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.3) +XORG_DEFAULT_OPTIONS -AC_PATH_PROG(MKFONTSCALE, mkfontscale) -if test x"$MKFONTSCALE" = x; then - AC_MSG_ERROR([mkfontscale is required to build bh-type1 fonts.]) -fi -AC_PATH_PROG(MKFONTDIR, mkfontdir) -if test x"$MKFONTDIR" = x; then - AC_MSG_ERROR([mkfontdir is required to build bh-type1 fonts.]) -fi -AC_PATH_PROG(FCCACHE, fc-cache) +AC_PROG_INSTALL -fontdir=${libdir}/X11/fonts/Type1 -AC_ARG_WITH(fontdir, AC_HELP_STRING([--with-fontdir=<pathname>], - [Path to install fonts]), [fontdir="$withval"]) -FONTDIR="$fontdir" -AC_SUBST(FONTDIR) +# Require X.Org's font util macros 1.1 or later +m4_ifndef([XORG_FONT_MACROS_VERSION], + [m4_fatal([must install X.Org font-util 1.1 or later before running autoconf/autogen])]) +XORG_FONT_MACROS_VERSION(1.1) -XORG_RELEASE_VERSION -XORG_CHANGELOG +XORG_FONTDIR([Type1]) +XORG_FONT_SCALED_UTILS AC_OUTPUT([Makefile]) |