diff options
author | vd <vd@FreeBSD.org> | 2010-02-20 22:36:41 +0800 |
---|---|---|
committer | vd <vd@FreeBSD.org> | 2010-02-20 22:36:41 +0800 |
commit | 477cdcd07240d1bd7effc73e6f87c6582be7aa78 (patch) | |
tree | 8c38e268c73eeae7bfd49dece1389bc4aacaef21 /graphics/hugin | |
parent | 40b59331ecf409795772dad534e5e9293679b436 (diff) | |
download | freebsd-ports-gnome-477cdcd07240d1bd7effc73e6f87c6582be7aa78.tar.gz freebsd-ports-gnome-477cdcd07240d1bd7effc73e6f87c6582be7aa78.tar.zst freebsd-ports-gnome-477cdcd07240d1bd7effc73e6f87c6582be7aa78.zip |
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 <h2@fsfe.org>
Feature safe: yes
Diffstat (limited to 'graphics/hugin')
-rw-r--r-- | graphics/hugin/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
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 \ |