coan: fix compile error in configure.ac

fix the big-endian compile error (implicit return type) when built with
clang
This commit is contained in:
Reno Dakota
2024-05-29 09:27:11 +00:00
parent f478e1cb40
commit 522daeb8fa
2 changed files with 30 additions and 3 deletions
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, perl }:
{ lib, stdenv, fetchurl, autoreconfHook, perl }:
stdenv.mkDerivation rec {
version = "6.0.1";
@@ -9,9 +9,14 @@ stdenv.mkDerivation rec {
sha256 = "1d041j0nd1hc0562lbj269dydjm4rbzagdgzdnmwdxr98544yw44";
};
nativeBuildInputs = [ perl ];
patches = [
# fix compile error in configure.ac
./fix-big-endian-config-check.diff
];
CXXFLAGS = "-std=c++11";
nativeBuildInputs = [ autoreconfHook perl ];
configureFlags = [ "CXXFLAGS=-std=c++11" ];
enableParallelBuilding = true;
@@ -0,0 +1,22 @@
diff --git a/configure.ac b/configure.ac
index 23ba6f0..13e6647 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ AC_PREREQ(2.59)
AM_INIT_AUTOMAKE(1.13 no-define)
AC_CHECK_HEADERS(strings.h)
AC_MSG_CHECKING(for big-endian host)
-AC_TRY_RUN([main () {
+AC_TRY_RUN([int main () {
/* Are we little or big endian? From Harbison&Steele. */
union
{
@@ -12,7 +12,7 @@ AC_TRY_RUN([main () {
char c[sizeof (long)];
} u;
u.l = 1;
- exit (u.c[sizeof (long) - 1] == 1);
+ return u.c[sizeof (long) - 1] == 1;
}], BIG_ENDIAN=no, BIG_ENDIAN=yes)
AC_MSG_RESULT([$BIG_ENDIAN])
AM_CONDITIONAL([IS_BIG_ENDIAN],[test "$BIG_ENDIAN" = "yes"])