# HG changeset patch # User Glenn Morris # Date 1204689221 0 # Node ID 9c883b96e06a555efb444a918e81edb2dae4a032 # Parent 95fab641656788cc74a16f08ac5d14feba1c260e Enable font-backend by default. diff -r 95fab6416567 -r 9c883b96e06a configure.in --- a/configure.in Wed Mar 05 02:08:30 2008 +0000 +++ b/configure.in Wed Mar 05 03:53:41 2008 +0000 @@ -167,10 +167,11 @@ [DIR=/Application]])], [ carbon_appdir_x=${enableval}]) +## Enabled by default. AC_ARG_ENABLE(font-backend, -[ --enable-font-backend compile code of font-backend support], +[AS_HELP_STRING([--disable-font-backend],[don't compile font-backend support])], USE_FONT_BACKEND=$enableval, - USE_FONT_BACKEND=no) + USE_FONT_BACKEND=yes) AC_ARG_ENABLE(asserts, [AS_HELP_STRING([--enable-asserts], [compile code with asserts enabled])], @@ -1949,7 +1950,7 @@ fi #### For font-backend -if test "${USE_FONT_BACKEND}" = "yes"; then +if test "${USE_FONT_BACKEND}" != "no"; then AC_DEFINE(USE_FONT_BACKEND, 1, [Define to 1 if we should use font-backend.])