diff options
author | roam <roam@FreeBSD.org> | 2007-04-19 14:58:49 +0800 |
---|---|---|
committer | roam <roam@FreeBSD.org> | 2007-04-19 14:58:49 +0800 |
commit | 7beda3f4395f5b9adce54d3bb57de96c5d241bec (patch) | |
tree | 14bf2120f186001b8dbc47fd0ca05e4feaf69881 /security/vscan | |
parent | a4fa24efd5651e2d4d5ad5b93946e09d12ea3c85 (diff) | |
download | freebsd-ports-gnome-7beda3f4395f5b9adce54d3bb57de96c5d241bec.tar.gz freebsd-ports-gnome-7beda3f4395f5b9adce54d3bb57de96c5d241bec.tar.zst freebsd-ports-gnome-7beda3f4395f5b9adce54d3bb57de96c5d241bec.zip |
Fix the OSVERSION check for FreeBSD 5.1.
Diffstat (limited to 'security/vscan')
-rw-r--r-- | security/vscan/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/vscan/Makefile b/security/vscan/Makefile index e5a3201bfdb6..ee4b3afbb37a 100644 --- a/security/vscan/Makefile +++ b/security/vscan/Makefile @@ -33,7 +33,7 @@ USE_LDCONFIG= YES .endif .if defined(WITHOUT_COMPAT3) -.if ${OSVERSION} < 510000 +.if ${OSVERSION} < 501000 IGNORE= requires FreeBSD 5.1 or later .endif .else @@ -86,7 +86,7 @@ do-install: post-install: ${LN} -sf ${PREFIX}/lib${UVSCAN_LIB32}/libbsdfv.so.4 ${PREFIX}/lib${UVSCAN_LIB32}/libbsdfv.so -.if defined(WITHOUT_COMPAT3) && ${OSVERSION} >= 510000 +.if defined(WITHOUT_COMPAT3) && ${OSVERSION} >= 501000 @${ECHO_CMD} "" @${ECHO_CMD} "This may affect the system security. Use at your own risk." @${ECHO_CMD} "You need to add the following two lines to your libmap${UVSCAN_LIB32}.conf(5):" |