From b7dd9283f0fe3b2b6e8b562dc8803f2b84354f61 Mon Sep 17 00:00:00 2001 From: Klaus Ziegler Date: Tue, 19 May 2015 22:41:01 +0200 Subject: ABI and libdir detection for Irix. --- ChangeLog | 5 +++++ configure.ac | 17 +++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/ChangeLog b/ChangeLog index 9aff6e1a..f4ae7933 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-05-19 Niels Möller + + * configure.ac: ABI detection (n32 or n64) on Irix, and + appropriate default for libdir. Patch from Klaus Ziegler. + 2015-05-12 Niels Möller * version.c (nettle_version_major, nettle_version_minor): New diff --git a/configure.ac b/configure.ac index 4ead52c6..c7ed7841 100644 --- a/configure.ac +++ b/configure.ac @@ -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 ' -- cgit v1.2.1