From a7da892c62c7127e3278c318a4a10e9cdd0b7200 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Tue, 10 Feb 2009 21:25:32 +0000 Subject: [PATCH] Add a few comments for clarity. Originally committed to SVN as r2728. --- configure.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.in b/configure.in index 32dc8b654..1657b1a65 100644 --- a/configure.in +++ b/configure.in @@ -69,14 +69,18 @@ case "$target_or_host" in ;; esac +# Used for universalchardet. AC_AGI_MDCPUCFG($target_or_host) +# For conditional file building and options in Makefile(s). AM_CONDITIONAL([BUILD_DARWIN], [test "$build_darwin" = "yes"]) AM_CONDITIONAL([BUILD_DEFAULT], [test "$build_default" = "yes"]) +# FontConfig is used on Darwin for the fontlister, freetype for !Windows case. AM_CONDITIONAL([FONTLISTER_FONTCONFIG], [test "$build_darwin" != "yes"]) AM_CONDITIONAL([FONTLISTER_FREETYPE], [test "$build_darwin" = "yes"]) +# Handle endianess. AC_C_BIGENDIAN( AC_DEFINE([HAVE_BIG_ENDIAN], [1], [Big Endian]), AC_DEFINE([HAVE_LITTLE_ENDIAN], [1], [Little Endian]),