From 477cdcd07240d1bd7effc73e6f87c6582be7aa78 Mon Sep 17 00:00:00 2001 From: vd Date: Sat, 20 Feb 2010 14:36:41 +0000 Subject: graphics/hugin: The compilation is known to fail on 6.x with GCC 3.4, so use non-standard GCC (4.4+) only on 6.x and older. On 7.x and above use the base GCC instead of GCC 4.4+ because: 1. GCC 4.4+ is not needed anyway and 2. The hugin executable compiled on 8.0/gcc-4.4.4.20100216 fails to start: /libexec/ld-elf.so.1: /usr/lib/libstdc++.so.6: version GLIBCXX_3.4.11 required by /usr/local/bin/hugin not found Reported by: Hannes Hauswedell Feature safe: yes --- graphics/hugin/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'graphics') diff --git a/graphics/hugin/Makefile b/graphics/hugin/Makefile index ea882eb5f988..5bc76c9d4a88 100644 --- a/graphics/hugin/Makefile +++ b/graphics/hugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= hugin PORTVERSION= 2009.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION:R} @@ -44,7 +44,9 @@ USE_WX= 2.8+ USE_GETTEXT= yes +.if ${OSVERSION} < 700000 USE_GCC= 4.4+ +.endif MAN1= \ PTBatcherGUI.1 \ -- cgit