Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Nettle
nettle
Commits
b7dd9283
Commit
b7dd9283
authored
May 19, 2015
by
Klaus Ziegler
Committed by
Niels Möller
May 19, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ABI and libdir detection for Irix.
parent
f1a54f2a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
ChangeLog
ChangeLog
+5
-0
configure.ac
configure.ac
+17
-0
No files found.
ChangeLog
View file @
b7dd9283
2015-05-19 Niels Möller <nisse@lysator.liu.se>
* configure.ac: ABI detection (n32 or n64) on Irix, and
appropriate default for libdir. Patch from Klaus Ziegler.
2015-05-12 Niels Möller <nisse@lysator.liu.se>
* version.c (nettle_version_major, nettle_version_minor): New
...
...
configure.ac
View file @
b7dd9283
...
...
@@ -285,6 +285,17 @@ case "$host_cpu" in
AC_TRY_COMPILE([
#if defined(__sparcv9) || defined(__arch64__)
#error 64-bit sparc
#endif
], [], [
ABI=32
], [
ABI=64
])
;;
*mips*)
AC_TRY_COMPILE([
#if defined(__sgi) && defined(__LP64__)
#error 32-bit mips
#endif
], [], [
ABI=32
...
...
@@ -335,6 +346,12 @@ if test "x$ABI" != xstandard ; then
*:freebsd*:64)
libdir='${exec_prefix}/lib'
;;
*:irix*:32)
libdir='${exec_prefix}/lib32'
;;
*:irix*:64)
libdir='${exec_prefix}/lib64'
;;
*)
AC_MSG_WARN([Don't know where to install $ABI-bit libraries on this system.]); dnl '
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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