diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2001-09-29 09:15:23 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2001-09-29 09:15:23 +0800 |
commit | 8ef23c6540be29f8925888a39a0c85f921d60c44 (patch) | |
tree | f2ea178924d5f062058c60178395c03aa38fd02a /security/sudo | |
parent | d29378c0ae7929b8a8f0686c2f68fd1d49b9c621 (diff) | |
download | freebsd-ports-gnome-8ef23c6540be29f8925888a39a0c85f921d60c44.tar.gz freebsd-ports-gnome-8ef23c6540be29f8925888a39a0c85f921d60c44.tar.zst freebsd-ports-gnome-8ef23c6540be29f8925888a39a0c85f921d60c44.zip |
Support latest -current which has no libskey.2.
No response from: maintainer
Diffstat (limited to 'security/sudo')
-rw-r--r-- | security/sudo/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/security/sudo/Makefile b/security/sudo/Makefile index 415532288ac2..94b6a348b9c2 100644 --- a/security/sudo/Makefile +++ b/security/sudo/Makefile @@ -30,7 +30,9 @@ CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc \ --with-long-otp-prompt \ --with-pam -.ifdef(WITH_OPIE) +.include <bsd.port.pre.mk> + +.if defined(WITH_OPIE) || ${OSVERSION} > 500021 CONFIGURE_ARGS+=--with-opie .else CONFIGURE_ARGS+=--with-skey @@ -45,4 +47,4 @@ post-patch: post-install: ${INSTALL_DATA} ${WRKSRC}/sample.sudoers ${PREFIX}/etc/sudoers.sample -.include <bsd.port.mk> +.include <bsd.port.post.mk> |