update to MPC 1.0.1.

This commit is contained in:
mrg 2013-11-28 12:08:56 +00:00
parent a21412c687
commit 75219f3a01
8 changed files with 23 additions and 23 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: 3RDPARTY,v 1.1064 2013/11/22 16:26:52 christos Exp $
# $NetBSD: 3RDPARTY,v 1.1065 2013/11/28 12:08:56 mrg Exp $
#
# This file contains a list of the software that has been integrated into
# NetBSD where we are not the primary maintainer.
@ -1357,20 +1357,20 @@ Notes:
3. Carefully check for GPL components leaked into the dist area.
Package: mpc
Version: 0.9
Current Vers: 0.9
Version: 1.0.1
Current Vers: 1.0.1
Maintainer:
Archive Site: http://www.multiprecision.org/mpc/download/
Home Page: http://www.multiprecision.org/mpc/
Mailing List: http://www.multiprecision.org/index.php?prog=mpc&page=development
Responsible: mrg
License: LGPL2
Location: external/lgpl2/mpc/dist
License: LGPL3
Location: external/lgpl3/mpc/dist
Notes:
Package: mpfr
Version: 3.0.1
Current Vers: 3.0.1
Current Vers: 3.1.2
Maintainer:
Archive Site: http://www.mpfr.org/mpfr-current/
Home Page: http://www.mpfr.org/
@ -1381,8 +1381,8 @@ Location: external/lgpl3/mpfr/dist
Notes:
Package: GNU MP
Version: 5.0.2
Current Vers: 5.0.2
Version: 5.1.3
Current Vers: 5.1.2
Maintainer: http://gmplib.org/mailman/listinfo/gmp-devel
Archive Site: http://gmplib.org/
Home Page: http://gmplib.org/

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.backend,v 1.2 2011/07/21 03:13:32 mrg Exp $
# $NetBSD: Makefile.backend,v 1.3 2013/11/28 12:08:56 mrg Exp $
NOMAN= # defined
BINDIR= /usr/libexec
@ -46,7 +46,7 @@ ${PROG}-checksum.c: genchecksum ${PROG}-dummy
# Find our (local) libraries
LIBGMPDIR!= cd ${NETBSDSRCDIR}/external/lgpl3/gmp/lib/libgmp && ${PRINTOBJDIR}
LIBMPFRDIR!= cd ${NETBSDSRCDIR}/external/lgpl3/mpfr/lib/libmpfr && ${PRINTOBJDIR}
LIBMPCDIR!= cd ${NETBSDSRCDIR}/external/lgpl2/mpc/lib/libmpc && ${PRINTOBJDIR}
LIBMPCDIR!= cd ${NETBSDSRCDIR}/external/lgpl3/mpc/lib/libmpc && ${PRINTOBJDIR}
LIBGMP= ${LIBGMPDIR}/libgmp.a
LIBMPFR= ${LIBMPFRDIR}/libmpfr.a

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.15 2013/08/22 00:17:48 matt Exp $
# $NetBSD: Makefile.inc,v 1.16 2013/11/28 12:08:56 mrg Exp $
.ifndef _EXTERNAL_GPL3_GCC_USR_BIN_MAKEFILE_INC_
_EXTERNAL_GPL3_GCC_USR_BIN_MAKEFILE_INC_=1
@ -20,8 +20,8 @@ HOST_CPPFLAGS+= -I${.CURDIR}/..
BUILDSYMLINKS+= ${NETBSDSRCDIR}/external/lgpl3/gmp/lib/libgmp/arch/${GMP_MACHINE_ARCH}/gmp.h gmp.h
BUILDSYMLINKS+= ${NETBSDSRCDIR}/external/lgpl3/mpfr/dist/mpfr.h mpfr.h
BUILDSYMLINKS+= ${NETBSDSRCDIR}/external/lgpl3/mpfr/dist/mpf2mpfr.h mpf2mpfr.h
BUILDSYMLINKS+= ${NETBSDSRCDIR}/external/lgpl2/mpc/dist/src/mpc.h mpc.h
BUILDSYMLINKS+= ${NETBSDSRCDIR}/external/lgpl2/mpc/dist/src/mpc-log.h mpc-log.h
BUILDSYMLINKS+= ${NETBSDSRCDIR}/external/lgpl3/mpc/dist/src/mpc.h mpc.h
BUILDSYMLINKS+= ${NETBSDSRCDIR}/external/lgpl3/mpc/dist/src/mpc-log.h mpc-log.h
CPPFLAGS+= -I.
# XXX
DPSRCS+= gmp.h mpfr.h mpf2mpfr.h mpc.h mpc-log.h

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.208 2013/10/03 20:02:58 mrg Exp $
# $NetBSD: Makefile,v 1.209 2013/11/28 12:08:56 mrg Exp $
# from: @(#)Makefile 5.25.1.1 (Berkeley) 5/7/91
.include <bsd.own.mk>
@ -87,7 +87,7 @@ SUBDIR+= ../external/gpl3/gcc/lib/libgomp
# specific build area, but we get better parallelism this way.
SUBDIR+= ../external/lgpl3/gmp/lib/libgmp
SUBDIR+= ../external/lgpl3/mpfr/lib/libmpfr
SUBDIR+= ../external/lgpl2/mpc/lib/libmpc
SUBDIR+= ../external/lgpl3/mpc/lib/libmpc
. endif
.endif

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.60 2013/10/21 08:59:29 skrll Exp $
# $NetBSD: Makefile,v 1.61 2013/11/28 12:08:57 mrg Exp $
.include <bsd.own.mk>
@ -130,7 +130,7 @@ native-gcc: .native/.configure_done
NATIVE_CONFIGURE_ARGS= ${COMMON_CONFIGURE_ARGS}
.if ${HAVE_GCC} >= 45
MPC= ${NETBSDSRCDIR}/external/lgpl2/mpc
MPC= ${NETBSDSRCDIR}/external/lgpl3/mpc
MPFR= ${NETBSDSRCDIR}/external/lgpl3/mpfr
GMP= ${NETBSDSRCDIR}/external/lgpl3/gmp
MPCOBJ!= cd ${MPC}/lib/libmpc && ${PRINTOBJDIR}

View File

@ -1,4 +1,4 @@
$NetBSD: README.mknative,v 1.16 2013/10/21 09:02:08 skrll Exp $
$NetBSD: README.mknative,v 1.17 2013/11/28 12:08:57 mrg Exp $
This file describes how to bootstrap the native toolchain on a new NetBSD
platform (and how to update the new toolchain files, if needed). These
@ -53,7 +53,7 @@ work.
"nbmake-MACHINE obj includes dependall install".
8. In each of src/external/lgpl3/gmp/lib/libgmp,
src/external/lgpl3/mpfr/lib/libmpfr, src/external/lgpl2/mpc/lib/libmpc
src/external/lgpl3/mpfr/lib/libmpfr, src/external/lgpl3/mpc/lib/libmpc
do "nbmake-MACHINE obj dependall".
9. In src/lib, do

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $NetBSD: mknative-gcc,v 1.73 2013/10/20 14:55:28 skrll Exp $
# $NetBSD: mknative-gcc,v 1.74 2013/11/28 12:08:57 mrg Exp $
#
# Shell script for generating all the constants needed for a native
# platform build of gcc.
@ -31,7 +31,7 @@ sanitise_includes () {
sed \
-e "s,-I$_DESTDIR/usr/include,,g" \
-e "s,-I$_SRC/external/lgpl3/mpfr/dist,,g" \
-e "s,-I$_SRC/external/lgpl2/mpc/dist/src,,g" \
-e "s,-I$_SRC/external/lgpl3/mpc/dist/src,,g" \
-e "s,-I$_SRC/external/lgpl3/gmp/lib/libgmp/arch/$MACHINE_ARCH,,g" \
-e "s,-I/usr/include/[^ ]*,,"
}

View File

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.2 2012/04/15 08:37:32 mrg Exp $
# $NetBSD: Makefile,v 1.3 2013/11/28 12:08:57 mrg Exp $
#
GNUHOSTDIST= ${.CURDIR}/../../external/lgpl2/mpc/dist
GNUHOSTDIST= ${.CURDIR}/../../external/lgpl3/mpc/dist
CONFIGURE_ARGS+= --with-gmp=${TOOLDIR:Q} \
--with-mpfr=${TOOLDIR:Q}