diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-02-10 15:36:48 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-02-10 15:36:48 -0500 |
commit | 4dc8dc4b89259e1418cd984abe1cd8d8fc6a7496 (patch) | |
tree | c7f7ed82a87c1bc8c396689e5954fab6207da451 /configure.ac | |
parent | 2123f0a2f932f991a5209358a3aae183700c71ab (diff) | |
parent | 5f7df92571ec5a2d1eddb257e22f5489acc4fc83 (diff) | |
download | tor-4dc8dc4b89259e1418cd984abe1cd8d8fc6a7496.tar.gz tor-4dc8dc4b89259e1418cd984abe1cd8d8fc6a7496.zip |
Merge remote-tracking branch 'public/bug18184'
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 8892486eea..85fc500964 100644 --- a/configure.ac +++ b/configure.ac @@ -1176,7 +1176,7 @@ AC_CHECK_TYPES([rlim_t], , , ]) AX_CHECK_SIGN([time_t], - [ AC_DEFINE(TIME_T_IS_SIGNED, 1, [Define if time_t is signed]) ], + [ : ], [ : ], [ #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> @@ -1190,7 +1190,7 @@ AX_CHECK_SIGN([time_t], ]) if test "$ax_cv_decl_time_t_signed" = no; then - AC_MSG_WARN([You have an unsigned time_t; some things will probably break. Please tell the Tor developers about your interesting platform.]) + AC_MSG_ERROR([You have an unsigned time_t; Tor does not support that. Please tell the Tor developers about your interesting platform.]) fi AX_CHECK_SIGN([size_t], |