shithub: libsamplerate

Download patch

ref: eb78a94ed2d3a30cb40f2007d8bc7472966b6788
parent: da6536774584601d88cddbdb2998efbb706f4edc
author: sezero <sezero@users.sourceforge.net>
date: Wed Nov 11 15:03:02 EST 2020

change stdbool.h check from AC_HEADER_STDBOOL to AC_CHECK_HEADERS

stdbool.h from Mac OS X 10.6 SDK has a stupidity in false and true defines
which fails AC_HEADER_STDBOOL but the header works OK otherwise.

--- a/configure.ac
+++ b/configure.ac
@@ -81,9 +81,8 @@
 dnl ====================================================================================
 
 AC_HEADER_STDC
-AC_HEADER_STDBOOL
 
-AC_CHECK_HEADERS([stdint.h sys/times.h])
+AC_CHECK_HEADERS([stdbool.h stdint.h sys/times.h])
 
 dnl ====================================================================================
 dnl  Couple of initializations here. Fill in real values later.