Other Linux distributions
-------------------------
-- double-conversion (https://github.com/floitsch/double-conversion/)
+- double-conversion (https://github.com/google/double-conversion)
Download and build double-conversion.
You may need to tell configure where to find it.
# NB their install target installs the libs but not the headers, hence the
# CPPFLAGS
test -d double-conversion ||
- git clone https://github.com/floitsch/double-conversion.git
+ git clone https://github.com/google/double-conversion.git
pushd double-conversion
make
# fool libtool into using static linkage
AC_CHECK_HEADER(double-conversion/double-conversion.h, [], [AC_MSG_ERROR(
[Couldn't find double-conversion.h, please download from \
- https://github.com/floitsch/double-conversion/])], [])
+ https://github.com/google/double-conversion/])], [])
AC_CHECK_LIB([double-conversion],[ceil],[],[AC_MSG_ERROR(
[Please install double-conversion library])])