diff options
author | jperkin <jperkin> | 2016-01-25 09:51:07 +0000 |
---|---|---|
committer | jperkin <jperkin> | 2016-01-25 09:51:07 +0000 |
commit | 3a82a327e44036e7620a787394a6c44a69b58e5a (patch) | |
tree | 48eed9c9e63cd3c108385f1795193751845015dc /meta-pkgs/boost | |
parent | 84261627016f7cdbcfb62b310af27e8bfdcfd63e (diff) | |
download | pkgsrc-3a82a327e44036e7620a787394a6c44a69b58e5a.tar.gz |
The GCC 4.4 compiler provided by RedHat is patched and sufficient to
build boost, from Jason Bacon.
Diffstat (limited to 'meta-pkgs/boost')
-rw-r--r-- | meta-pkgs/boost/Makefile.common | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-pkgs/boost/Makefile.common b/meta-pkgs/boost/Makefile.common index b73accf5423..dd0694c3079 100644 --- a/meta-pkgs/boost/Makefile.common +++ b/meta-pkgs/boost/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.56 2015/12/27 12:41:42 adam Exp $ +# $NetBSD: Makefile.common,v 1.57 2016/01/25 09:51:07 jperkin Exp $ # # used by devel/boost-build/Makefile # used by devel/boost-docs/Makefile @@ -42,6 +42,8 @@ USE_LANGUAGES= c c++ . if ${MACHINE_ARCH} != "sparc64" GCC_REQD+= 4.6 . endif +. elif ${LOWER_VENDOR} == "redhat" +GCC_REQD+= 4.4 . else GCC_REQD+= 4.5 . endif |