mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 14:51:11 +01:00
Merge remote-tracking branch 'origin/maint-0.2.4'
This commit is contained in:
commit
66d52b876a
2 changed files with 9 additions and 0 deletions
5
changes/warn-unsigned-time_t
Normal file
5
changes/warn-unsigned-time_t
Normal file
|
@ -0,0 +1,5 @@
|
|||
o Build improvements:
|
||||
- Warn if building on a platform with an unsigned time_t: there
|
||||
are too many places where Tor currently assumes that time_t can
|
||||
hold negative values. We'd like to fix them all, but probably
|
||||
some will remain.
|
|
@ -985,6 +985,10 @@ AX_CHECK_SIGN([time_t],
|
|||
#endif
|
||||
])
|
||||
|
||||
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.])
|
||||
fi
|
||||
|
||||
AX_CHECK_SIGN([size_t],
|
||||
[ tor_cv_size_t_signed=yes ],
|
||||
[ tor_cv_size_t_signed=no ], [
|
||||
|
|
Loading…
Add table
Reference in a new issue