X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=configure.in;h=6b0b96fa2ea8434c8007635c1c9e0c2181954898;hb=0dffe625d43c1165f8b84f97e8ba098793e2cf7b;hp=ff4057b2e6a12f685776848eb539e14a0f1aafd4;hpb=e66c65fd41928babb3ba2ae2dc58f13d25e57661;p=fontconfig.git diff --git a/configure.in b/configure.in index ff4057b..6b0b96f 100644 --- a/configure.in +++ b/configure.in @@ -33,7 +33,7 @@ dnl This is the package version number, not the shared library dnl version. This same version number must appear in fontconfig/fontconfig.h dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's dnl not possible to extract the version number here from fontconfig.h -AM_INIT_AUTOMAKE(fontconfig, 2.4.91) +AM_INIT_AUTOMAKE(fontconfig, 2.5.91) AM_MAINTAINER_MODE dnl libtool versioning @@ -41,11 +41,11 @@ dnl libtool versioning dnl bump revision when fixing bugs dnl bump current and age, reset revision to zero when adding APIs dnl bump current, leave age, reset revision to zero when changing/removing APIS -LT_CURRENT=3 +LT_CURRENT=4 LT_REVISION=0 AC_SUBST(LT_CURRENT) AC_SUBST(LT_REVISION) -LT_AGE=2 +LT_AGE=3 LT_VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE" AC_SUBST(LT_VERSION_INFO) @@ -459,7 +459,11 @@ AC_ARG_WITH(cache-dir, [ --with-cache-dir=DIR Use DIR to store case $fc_cachedir in no|yes) - fc_cachedir=`eval echo "${localstatedir}/cache/"${PACKAGE}` + if test "$os_win32" = "yes"; then + fc_cachedir="WINDOWSTEMPDIR_FONTCONFIG_CACHE" + else + fc_cachedir=`eval echo "${localstatedir}/cache/"${PACKAGE}` + fi ;; *) ;;