summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--configure.ac4
-rw-r--r--m4/config_h.m43
3 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 535252d49d3..4950b3cbd53 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+Wed Mar 26 08:00:11 2003 Ossama Othman <ossama@uci.edu>
+
+ * configure.ac:
+
+ Added check for the fgetwc() function.
+
+ * m4/config_h.m4 (ACE_LACKS_FGETWC):
+
+ Added autoheader template for this macro.
+
Tue Mar 25 08:33:55 2003 Ossama Othman <ossama@uci.edu>
* configure.ac:
diff --git a/configure.ac b/configure.ac
index 099453b0f07..fd0d579def2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3333,6 +3333,10 @@ AC_CHECK_FUNCS([execv execvp execve],
,
[AC_DEFINE([ACE_LACKS_EXEC])])
+AC_CHECK_FUNC([fgetwc],
+ ,
+ [AC_DEFINE([ACE_LACKS_FGETWC])])
+
AC_CHECK_FUNC([fcntl],
,
[AC_DEFINE([ACE_LACKS_FCNTL])])
diff --git a/m4/config_h.m4 b/m4/config_h.m4
index ea2890ddae6..2227fc994fa 100644
--- a/m4/config_h.m4
+++ b/m4/config_h.m4
@@ -715,6 +715,9 @@ AH_TEMPLATE([ACE_LACKS_CMSG_DATA_MEMBER],
(This may be 'unsigned char __cmsg_data[0]' on some platforms, in
which case we need another macro.)])
+AH_TEMPLATE([ACE_LACKS_FGETWC],
+[Compiler/platform lacks the fgetwc() function])
+
AH_TEMPLATE([ACE_LACKS_QSORT],
[Compiler/platform lacks the standard C library qsort() function])