summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Harper <jsh@eazel.com>2001-03-09 00:22:33 +0000
committerJohn Harper <jsh@src.gnome.org>2001-03-09 00:22:33 +0000
commitf2571b88b61c69b9c140dd4873f824f3ac9ec2bd (patch)
tree3fbc81340def70ff6f0950c42def3a98ce64ff8c
parente1de1facbd1da3a4d5b5d3a44750ad0761a2c406 (diff)
downloadnautilus-f2571b88b61c69b9c140dd4873f824f3ac9ec2bd.tar.gz
reviewed by: Robin * Slomkowski <rslomkow@eazel.com>
2001-03-08 John Harper <jsh@eazel.com> reviewed by: Robin * Slomkowski <rslomkow@eazel.com> Fixed bug 7550 (SOLARIS: text drawn incorrectly in anti-aliased mode): * configure.in: added `AC_C_BIGENDIAN' check - this means that the WORDS_BIGENDIAN macro gets defined on big-endian systems. This is required by at least the librsvg/arg_rgba.c file
-rw-r--r--ChangeLog11
-rw-r--r--configure.in1
2 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 52d38d5e4..d297b398a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2001-03-08 John Harper <jsh@eazel.com>
+
+ reviewed by: Robin * Slomkowski <rslomkow@eazel.com>
+
+ Fixed bug 7550 (SOLARIS: text drawn incorrectly in anti-aliased
+ mode):
+
+ * configure.in: added `AC_C_BIGENDIAN' check - this means that
+ the WORDS_BIGENDIAN macro gets defined on big-endian systems.
+ This is required by at least the librsvg/arg_rgba.c file
+
2001-03-08 Eric Fischer <eric@eazel.com>
reviewed by: Don Melton <don@eazel.com>
diff --git a/configure.in b/configure.in
index c94b80b3d..4ba5be586 100644
--- a/configure.in
+++ b/configure.in
@@ -915,6 +915,7 @@ AC_SUBST(gnomelocaledir)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
+AC_C_BIGENDIAN
dnl Turn on the additional warnings last, so -Werror doesn't affect other tests.