From 35716e66f09346f5aa0c21ee74e58b7f3c6baa4c Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Thu, 5 Oct 2017 09:00:30 -0600 Subject: [PATCH] configure.ac: Added AC_C_BIGENDIAN to autoconf This is needed so that WORDS_BIGENDIAN is defined on big-endian systems, which is needed by version.c . --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 759cd0e..80536f8 100644 --- a/configure.ac +++ b/configure.ac @@ -123,6 +123,8 @@ SR_SEARCH_LIBS([SRD_EXTRA_LIBS], [pow], [m]) AC_SYS_LARGEFILE +AC_C_BIGENDIAN + ############################## ## Finalize configuration ## ############################## -- 2.30.2