diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-10-04 07:13:16 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-10-04 07:13:16 +0000 |
commit | 10f266c4f0e5915f245b0183068297b65635cd8a (patch) | |
tree | 3d1905240c42f38d5be377dc80ba9931b83b85e4 /databases | |
parent | 5c948683eeab2c1a509dbf6ab6151d333eefba3c (diff) |
Add a dependency on compat4x if building on 5.X systems or higher.
Reported by: kris
Approved by: portmgr (implicit)
Notes
Notes:
svn path=/head/; revision=118530
Diffstat (limited to 'databases')
-rw-r--r-- | databases/libudbc/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/databases/libudbc/Makefile b/databases/libudbc/Makefile index ac6c61abb286..c76148c7fced 100644 --- a/databases/libudbc/Makefile +++ b/databases/libudbc/Makefile @@ -53,6 +53,10 @@ post-install: .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 500000 +LIB_DEPENDS+= c.4:${PORTSDIR}/misc/compat4x +.endif + .if ${OSVERSION} < 400000 IGNORE= "Systems prior to 4.x are not supported" .endif |