summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2003-01-29 21:58:43 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2003-01-29 21:58:43 +0000
commite44d36f7f32b8756bc78a23b0abc25d78616a706 (patch)
tree6271bac590610b7af8519eba65695ca2a01e8f8a
parentafd0c72d206d2454c8e249ca4d43d675bfd52389 (diff)
downloadATCD-e44d36f7f32b8756bc78a23b0abc25d78616a706.tar.gz
ChangeLogTag:Wed Jan 29 13:54:21 2003 Ossama Othman <ossama@uci.edu>
-rw-r--r--ChangeLog9
-rw-r--r--ChangeLogs/ChangeLog-03a9
-rw-r--r--configure.ac13
3 files changed, 25 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 12ebb91d158..12a2eb02b95 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Wed Jan 29 13:54:21 2003 Ossama Othman <ossama@uci.edu>
+
+ * configure.ac:
+
+ Fixed autoconf warnings about AC_DEFINE being called in second
+ argument of AC_CACHE_VAL. The second argument should only set
+ the value of cache ID variable. No other side effects should
+ occur.
+
Tue Jan 28 14:57:50 2003 Ossama Othman <ossama@uci.edu>
* bin/bootstrap:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 12ebb91d158..12a2eb02b95 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,12 @@
+Wed Jan 29 13:54:21 2003 Ossama Othman <ossama@uci.edu>
+
+ * configure.ac:
+
+ Fixed autoconf warnings about AC_DEFINE being called in second
+ argument of AC_CACHE_VAL. The second argument should only set
+ the value of cache ID variable. No other side effects should
+ occur.
+
Tue Jan 28 14:57:50 2003 Ossama Othman <ossama@uci.edu>
* bin/bootstrap:
diff --git a/configure.ac b/configure.ac
index feea1b27b05..eae92ccee19 100644
--- a/configure.ac
+++ b/configure.ac
@@ -969,11 +969,11 @@ AC_CHECK_HEADER([iostream.h],
dnl Check if platform needs to #include <regexpr.h> for
dnl regular expression support
ACE_CACHE_CHECK([regexpr.h for regular expression support],
- [ace_cv_needs_regexpr_h],[
- AC_EGREP_HEADER([compile],[regexpr.h],
+ [ace_cv_needs_regexpr_h],
+ [
+ AC_EGREP_HEADER([compile],[regexpr.h],
[
ace_cv_needs_regexpr_h=yes
- AC_DEFINE([ACE_NEEDS_REGEXPR_H])
],
[
AC_EGREP_HEADER([step],[regexpr.h],
@@ -1363,8 +1363,9 @@ ACE_CACHE_CHECK([for condition variable support],[ace_cv_struct_cond_t],
dnl Check for struct timespec
ACE_CACHE_CHECK([for POSIX timer structure],
- [ace_cv_lib_posix_timer_struct],[
- AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+ [ace_cv_lib_posix_timer_struct],
+ [
+ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <time.h>
#if defined(ACE_LACKS_SYSTIME_H)
@@ -1406,7 +1407,7 @@ ACE_CACHE_CHECK([for POSIX timer structure],
[
ace_cv_lib_posix_struct_timespec_broken=no
])
- ],[AC_DEFINE([ACE_HAS_BROKEN_POSIX_TIME])],)
+ ],,)
],
[
ace_cv_lib_posix_timer_struct=no