diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-10-21 12:37:50 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-10-21 12:37:50 +0000 |
commit | 4362f450bd4772c2c30b0c8ffcec3527622696d2 (patch) | |
tree | 49847f062e77ad8f41a8c5707ef87f4e24476ee2 /security/samhain/Makefile | |
parent | Update entry regarding INN 2.4.x buffer overflow: (diff) |
- Fix OPTIONS handling
Notes
Notes:
svn path=/head/; revision=119905
Diffstat (limited to '')
-rw-r--r-- | security/samhain/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/samhain/Makefile b/security/samhain/Makefile index 3889754d984f..ae509ca85c29 100644 --- a/security/samhain/Makefile +++ b/security/samhain/Makefile @@ -47,7 +47,7 @@ CONFIGURE_ARGS= --enable-login-watch --localstatedir=/var \ .if defined(WITH_RUNAS_USER) CONFIGURE_ARGS+= --enable-identity=${WITH_RUNAS_USER} .endif -.if !defined(WITHOUT_KCHECK) +.if defined(WITH_KCHECK) CONFIGURE_ARGS+= --with-kcheck .endif .if defined(WITH_GPG) @@ -109,7 +109,7 @@ pre-everything:: .error "Can't build client and server at once!" .endif -.if !defined(WITHOUT_KCHECK) +.if defined(WITH_KCHECK) @${ECHO_MSG} @${ECHO_MSG} "Building with kernel checking requires reading /dev/kmem" @${ECHO_MSG} "and /dev/mem. If you're not building as root, please hit" |