summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2003-03-26 16:04:40 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2003-03-26 16:04:40 +0000
commit8875da355058f4db4dc53293c9ccce06eb561e86 (patch)
tree95c612b8d1d4e96ac135c65cc59d330de1c9b098
parent9f9f6f5fe899ff005fd171049adb9d33d8e0c1ef (diff)
downloadATCD-8875da355058f4db4dc53293c9ccce06eb561e86.tar.gz
ChangeLogTag:Wed Mar 26 08:00:11 2003 Ossama Othman <ossama@uci.edu>
-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])