Displaying 3 results from an estimated 3 matches for "xiph_c_find_endian".
2012 Dec 12
8
[PATCH 0/5] update build system
This patch series modernizes various aspects of the autotools
based build system. There is a lot more that could and should be
done, but I tried to stay conservative for now and just resolve
some of the most obvious issues.
Max Horn (5):
configure: replace XIPH_C_FIND_ENDIAN by AC_C_BIGENDIAN
autogen.sh: replace this by a simple call to autoreconf
configure: always print ac_cv_c_compiler_gnu
configure: merge AC_CHECK_HEADERS calls
configure: modernize autoconf usage
Makefile.am | 2 -
autogen.sh...
2012 Dec 27
0
[PATCH 0/5] update build system
...ote:
> This patch series modernizes various aspects of the autotools
> based build system. There is a lot more that could and should be
> done, but I tried to stay conservative for now and just resolve
> some of the most obvious issues.
>
> Max Horn (5):
> configure: replace XIPH_C_FIND_ENDIAN by AC_C_BIGENDIAN
> autogen.sh: replace this by a simple call to autoreconf
> configure: always print ac_cv_c_compiler_gnu
> configure: merge AC_CHECK_HEADERS calls
> configure: modernize autoconf usage
>
> Makefile.am | 2 -
> autogen.sh...
2012 Apr 05
2
[PATCH 2/2] V2: Use a single definition of MIN and MAX in sources
...-60,6 +64,7 @@ AC_HEADER_STDC
AM_PROG_CC_C_O
AC_C_INLINE
AC_C_VARARRAYS
+AC_C_TYPEOF
AC_CHECK_HEADERS(stdint.h)
AC_SUBST(HAVE_STDINT_H)
@@ -68,6 +73,8 @@ AC_SUBST(HAVE_INTTYPES_H)
AC_CHECK_HEADERS(byteswap.h)
AC_SUBST(HAVE_BYTESWAP_H)
+AC_CHECK_HEADERS([sys/param.h])
+
XIPH_C_BSWAP32
XIPH_C_FIND_ENDIAN
diff --git a/src/libFLAC/bitreader.c b/src/libFLAC/bitreader.c
index cd05a62..7e17fd8 100644
--- a/src/libFLAC/bitreader.c
+++ b/src/libFLAC/bitreader.c
@@ -38,6 +38,7 @@
#include "private/bitmath.h"
#include "private/bitreader.h"
#include "private/crc.h"
+#include...