pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/gmp The configure script thinks gcc 2.95 for ARM...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f8d09349902e
branches:  trunk
changeset: 463107:f8d09349902e
user:      kristerw <kristerw%pkgsrc.org@localhost>
date:      Tue Oct 28 22:33:57 2003 +0000

description:
The configure script thinks gcc 2.95 for ARM is too buggy to use,
so require gcc 3 for arm.

diffstat:

 devel/gmp/Makefile |  7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diffs (19 lines):

diff -r 952da5734ae4 -r f8d09349902e devel/gmp/Makefile
--- a/devel/gmp/Makefile        Tue Oct 28 21:12:11 2003 +0000
+++ b/devel/gmp/Makefile        Tue Oct 28 22:33:57 2003 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.22 2003/09/27 15:09:05 grant Exp $
+# $NetBSD: Makefile,v 1.23 2003/10/28 22:33:57 kristerw Exp $
 #
 
 DISTNAME=              gmp-4.1.2
@@ -21,4 +21,9 @@
 
 TEST_TARGET=           check
 
+.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "arm32"
+# The configure script thinks gcc 2.95 for ARM is too buggy to use.
+GCC_REQD=              3.0
+.endif
+
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index