Import lib{mpc,gmp,mpfr}

This decreases external dependencies for crosscompilation. Note that
these libraries are not built nor used by Minix itself.

Furthermore, the shell scripts that download the tarballs for these
libraries, gcc, binutils, and gmake now also support curl in addition
to wget.
This commit is contained in:
Thomas Veerman
2012-06-25 09:15:27 +00:00
parent f8c6b27b69
commit e3209ae766
135 changed files with 64846 additions and 7 deletions

View File

@@ -38,7 +38,10 @@ FIND_ARGS+= \! \( -type d \( \
_GNU_GET_SRC!= ${HOST_SH} ${.CURDIR}/../../external/gpl3/gcc/fetch.sh && \
${HOST_SH} ${.CURDIR}/../../external/gpl3/binutils/fetch.sh && \
${HOST_SH} ${.CURDIR}/../../gnu/dist/fetch.sh
${HOST_SH} ${.CURDIR}/../../gnu/dist/fetch.sh && \
${HOST_SH} ${.CURDIR}/../../external/lgpl2/mpc/fetch.sh && \
${HOST_SH} ${.CURDIR}/../../external/lgpl3/gmp/fetch.sh && \
${HOST_SH} ${.CURDIR}/../../external/lgpl3/mpfr/fetch.sh
# Do this "find" only if actually building something.
.if (${USETOOLS} == "yes") && empty(.MAKEFLAGS:M-V*) && \