diff options
author | jperkin <jperkin@pkgsrc.org> | 2015-09-10 19:52:57 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2015-09-10 19:52:57 +0000 |
commit | 4a7bd58b19ebf2ae85b9c5281d35f2a310fcca72 (patch) | |
tree | a0eb94eb67048ba4818484988e665d6f7af33922 /mk | |
parent | cbbf001599506fd85b30b1033a52ce327226aef7 (diff) | |
download | pkgsrc-4a7bd58b19ebf2ae85b9c5281d35f2a310fcca72.tar.gz |
Pull in gcc48 as a full dependency. We don't yet have the fine-grained
approach of gcc.mk to only pull in when required, but this fixes a lot of
packages which previously failed check-shlibs.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/compiler/gfortran.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mk/compiler/gfortran.mk b/mk/compiler/gfortran.mk index eb533e0b0f8..4713c3f0bb6 100644 --- a/mk/compiler/gfortran.mk +++ b/mk/compiler/gfortran.mk @@ -1,4 +1,4 @@ -# $NetBSD: gfortran.mk,v 1.5 2015/01/27 04:53:46 dbj Exp $ +# $NetBSD: gfortran.mk,v 1.6 2015/09/10 19:52:57 jperkin Exp $ # # Copyright (c) 2005 The NetBSD Foundation, Inc. # All rights reserved. @@ -90,6 +90,8 @@ PREPEND_PATH+= ${_GFORTRAN_DIR}/bin . endif # Add the dependency on gfortran. +_GCC_REQD= 4.8 +_USE_GCC_SHLIB?= yes . include "../../lang/gcc48/buildlink3.mk" . if defined(GFORTRAN_DIR) && !empty(GFORTRAN_DIR) |