Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Wim Lewis
nettle
Commits
b7dd9283
Commit
b7dd9283
authored
May 19, 2015
by
Klaus Ziegler
Committed by
Niels Möller
May 19, 2015
Browse files
ABI and libdir detection for Irix.
parent
f1a54f2a
Changes
2
Show whitespace changes
Inline
Side-by-side
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
Supports
Markdown
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