commit: f09df1a1e00d47be2e62ad15bb8130ac120a2b4c Author: Davide Pesavento <pesa <AT> gentoo <DOT> org> AuthorDate: Sun Jul 13 23:34:31 2014 +0000 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org> CommitDate: Sun Jul 13 23:34:31 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=f09df1a1
[qt5-build.eclass] The minimum supported version of gcc is 4.5 http://lists.qt-project.org/pipermail/development/2014-June/017410.html --- eclass/qt5-build.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 827bf78..ef597d1 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -151,9 +151,9 @@ qt5-build_pkg_setup() { # @DESCRIPTION: # Unpacks the sources. qt5-build_src_unpack() { - if [[ $(gcc-major-version) -lt 4 ]] || [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 4 ]]; then + if [[ $(gcc-major-version) -lt 4 ]] || [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 5 ]]; then ewarn - ewarn "Using a GCC version lower than 4.4 is not supported." + ewarn "Using a GCC version lower than 4.5 is not supported." ewarn fi