Add a RUN_DEPENDS on gcc34 (yuck!) for 5.X since liboil links to libgcc_s.so

which is not installed by the base gcc for some reason.  Without this
fix binaries that link to liboil would fail to load.
This commit is contained in:
Joe Marcus Clarke 2006-07-06 05:45:15 +00:00
parent 830aa9e010
commit 1eb70aaefe
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=167043

View File

@ -7,6 +7,7 @@
PORTNAME= liboil
PORTVERSION= 0.3.9
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://liboil.freedesktop.org/download/ \
${MASTER_SITE_LOCAL}
@ -26,6 +27,7 @@ CFLAGS+= -O2
.if ${OSVERSION} < 600000 && ${OSVERSION} > 500000
#USE_GCC= 3.4
BUILD_DEPENDS+= gcc34:${PORTSDIR}/lang/gcc34
RUN_DEPENDS+= gcc34:${PORTSDIR}/lang/gcc34
CC:= gcc34
CXX:= g++34
.endif