Skip to content

Commit 02416dc

Browse files
committed
camellia: Include limits.h, needed for HAVE_NATIVE_64_BIT.
1 parent 770746a commit 02416dc

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

ChangeLog

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2014-06-30 Niels Möller <[email protected]>
2+
3+
* camellia-absorb.c: Include <limits.h>, needed for correct use of
4+
HAVE_NATIVE_64_BIT. Reported and debugged by Magnus Holmgren.
5+
Fixes debian build failure on s390x.
6+
17
2014-06-26 Niels Möller <[email protected]>
28

39
From Martin Storsjö:
@@ -15,7 +21,8 @@
1521

1622
2014-06-25 Niels Möller <[email protected]>
1723

18-
Support for building with mini-gmp instead of the real GMP.
24+
Support for building with mini-gmp instead of the real GMP. Loosely
25+
based on work by Nikos Mavrogiannopoulos.
1926
* configure.ac: New command line option --enable-mini-gmp. Also
2027
disable all libgmp-related checks when enabled.
2128
(NETTLE_USE_MINI_GMP): New substituted variable.

camellia-absorb.c

+3
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@
4747
# include "config.h"
4848
#endif
4949

50+
/* For CHAR_BIT, needed by HAVE_NATIVE_64_BIT */
51+
#include <limits.h>
52+
5053
#include "camellia-internal.h"
5154

5255
#include "macros.h"

0 commit comments

Comments
 (0)