diff options
author | David Shaw <[email protected]> | 2002-10-31 15:31:04 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-10-31 15:31:04 +0000 |
commit | b9d721915061f20a71748ec301e379ff277116ab (patch) | |
tree | 3db856fc4e8fc8c43a2558ef327c5bbc036d6006 | |
parent | * trustdb.c (check_regexp): Modern regexps require REG_EXTENDED. (diff) | |
download | gnupg-b9d721915061f20a71748ec301e379ff277116ab.tar.gz gnupg-b9d721915061f20a71748ec301e379ff277116ab.zip |
* configure.ac: Add a check for volatile.
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2002-10-31 David Shaw <[email protected]> + + * configure.ac: Add a check for volatile. + 2002-10-29 David Shaw <[email protected]> * configure.ac: Add --disable-regex in case some platform just diff --git a/configure.ac b/configure.ac index 73deb5190..175282b99 100644 --- a/configure.ac +++ b/configure.ac @@ -547,6 +547,7 @@ AC_CHECK_HEADERS(unistd.h langinfo.h termio.h locale.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_C_INLINE +AC_C_VOLATILE AC_TYPE_SIZE_T AC_TYPE_MODE_T AC_TYPE_SIGNAL @@ -554,7 +555,6 @@ AC_DECL_SYS_SIGLIST GNUPG_CHECK_ENDIAN - GNUPG_CHECK_TYPEDEF(byte, HAVE_BYTE_TYPEDEF) GNUPG_CHECK_TYPEDEF(ushort, HAVE_USHORT_TYPEDEF) GNUPG_CHECK_TYPEDEF(ulong, HAVE_ULONG_TYPEDEF) |