summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2005-04-14 21:23:38 +0000
committerSteve Huston <shuston@riverace.com>2005-04-14 21:23:38 +0000
commit1188b521d464268ba49cd7c4337fe20d360500ba (patch)
tree0a4c79dde29985c72f50f0bbc3505d9aa83e8fa3
parentfff2febf8c7e57492b267636e95b3895f0543aa3 (diff)
downloadATCD-1188b521d464268ba49cd7c4337fe20d360500ba.tar.gz
ChangeLogTag:Thu Apr 14 17:12:44 2005 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a396fd9be67..6565b4cf3d7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Apr 14 17:12:44 2005 Steve Huston <shuston@riverace.com>
+
+ * configure.ac: Corrected the variable used to tell whether or not
+ to check for ACE_HAS_XPG4_MULTIBYTE_CHAR. Fixes configure on Solaris.
+
Thu Apr 14 15:25:31 2005 Steve Huston <shuston@riverace.com>
* NEWS: Added a note that the reactor change:
diff --git a/configure.ac b/configure.ac
index 8af618b43b0..683a77ed608 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3729,7 +3729,7 @@ AC_CHECK_FUNC([strptime],
ACE_CHECK_HAS_FUNCS(memchr)
-if test "$ace_cv_type_wchar_t" = yes; then
+if test "$ac_cv_type_wchar_t" = yes; then
AC_CHECK_FUNC([wcslen],
[AC_DEFINE([ACE_HAS_XPG4_MULTIBYTE_CHAR])],)
fi