Add a few comments for clarity.

Originally committed to SVN as r2728.
This commit is contained in:
Amar Takhar 2009-02-10 21:25:32 +00:00
parent 90c6172db9
commit a7da892c62
1 changed files with 4 additions and 0 deletions

View File

@ -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]),