diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2005-08-26 05:23:21 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2005-08-26 05:23:21 +0000 |
commit | 564a8c901a83b35c66767545c351afc0565dd360 (patch) | |
tree | ffc97a0182061a317cf94996515126258455bda3 | |
parent | 6f2ebc56295dd35f2b2697c455588297e46dd7af (diff) |
Notes
-rw-r--r-- | lang/ghc/Makefile | 5 | ||||
-rw-r--r-- | security/drweb/Makefile | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lang/ghc/Makefile b/lang/ghc/Makefile index 0c5c68b08ee8..d9c45226fe40 100644 --- a/lang/ghc/Makefile +++ b/lang/ghc/Makefile @@ -31,10 +31,13 @@ DISTFILES= ${SRC_DIST} DISTFILES+= ${BOOT_DIST} .else DISTFILES+= ${BOOT_DIST5} +.if ${OSVERSION} >= 600000 +LIB_DEPENDS+= c.5:${PORTSDIR}/misc/compat5x +.endif .endif WANT_AUTOCONF_VER=259 # Need this to regenerate patched configure in GLUT -LIB_DEPENDS= gmp.6:${PORTSDIR}/math/libgmp4 \ +LIB_DEPENDS+= gmp.6:${PORTSDIR}/math/libgmp4 \ glut.3:${PORTSDIR}/graphics/libglut \ openal.0:${PORTSDIR}/audio/openal diff --git a/security/drweb/Makefile b/security/drweb/Makefile index 2e9e8782b58f..c5eb54ab51c2 100644 --- a/security/drweb/Makefile +++ b/security/drweb/Makefile @@ -26,6 +26,9 @@ RUN_DEPENDS= ${LOCALBASE}/bin/wget:${PORTSDIR}/ftp/wget DISTNAME= ${PORTNAME}-${PORTVERSION}-freebsd49 .else DISTNAME= ${PORTNAME}-${PORTVERSION}-freebsd53 +.if ${OSVERSION} >= 600000 +LIB_DEPENDS+= c.5:${PORTSDIR}/misc/compat5x +.endif .endif WRKSRC= ${WRKDIR}/${DISTNAME} |