Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Marcus Hoffmann
nettle
Commits
788ba4ab
Commit
788ba4ab
authored
Nov 24, 2011
by
Niels Möller
Browse files
* configure.ac (HAVE_NATIVE_64_BIT): Workaround to get it set to 1
on w64. Rev: nettle/ChangeLog:1.237 Rev: nettle/configure.ac:1.51
parent
40d9583f
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
788ba4ab
2011-11-24 Niels Mller <nisse@lysator.liu.se>
* configure.ac (HAVE_NATIVE_64_BIT): Workaround to get it set to 1
on w64.
* serpent-internal.h (ROL64): Use (uint64_t) 1 rather than 1L, for
systems. Needed for M$ w64.
(RSHIFT64): Likewise. Also added a missing parenthesis.
...
...
configure.ac
View file @
788ba4ab
...
...
@@ -579,7 +579,7 @@ if test x$enable_openssl = xyes ; then
fi
AH_TEMPLATE([WITH_OPENSSL],
[Define if you have openssl's libcrypto (used for benchmarking)])
[Define if you have openssl's libcrypto (used for benchmarking)])
dnl'
if test x$enable_openssl = xyes ; then
AC_DEFINE(WITH_OPENSSL)
...
...
@@ -587,10 +587,13 @@ fi
AC_SUBST(OPENSSL_LIBFLAGS)
# Choose strategy for Camellia round
AH_BOTTOM(
[/* Needs include of <limits.h> before use. */
#define HAVE_NATIVE_64_BIT (SIZEOF_LONG * CHAR_BIT >= 64)
[#if defined(__x86_64__) || defined(__arch64__)
# define HAVE_NATIVE_64_BIT 1
#else
/* Needs include of <limits.h> before use. */
# define HAVE_NATIVE_64_BIT (SIZEOF_LONG * CHAR_BIT >= 64)
#endif
])
# clock_gettime is in librt on *-*-osf5.1 and on glibc, so add -lrt to
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment