diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2006-08-07 03:19:32 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2006-08-07 03:19:32 +0000 |
commit | d6292b1f3afe7b0b7b543ffd6e0f4d4e50b8a890 (patch) | |
tree | 6f3827ed9aef9095c1ac668681c686208963ea50 | |
parent | 29bf2099340d7d8da394cf234e5e2516d80be849 (diff) | |
download | ports-d6292b1f3afe7b0b7b543ffd6e0f4d4e50b8a890.tar.gz ports-d6292b1f3afe7b0b7b543ffd6e0f4d4e50b8a890.zip |
- Add readline as dependency when it was already installed. The program
will be linked against it anyway, not against a system one.
PR: ports/101439
Submitted by: Stanislav Sedov <ssedov at mbsd.msk.ru>
Approved by: David Thiel <lx at redundancy.redundancy.org> (maintainer)
Notes
Notes:
svn path=/head/; revision=169892
-rw-r--r-- | security/osiris/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/osiris/Makefile b/security/osiris/Makefile index 6409802f92e9..74da6787f386 100644 --- a/security/osiris/Makefile +++ b/security/osiris/Makefile @@ -25,7 +25,7 @@ USE_RC_SUBR= yes .include <bsd.port.pre.mk> -.if ${OSVERSION} < 500000 +.if ${OSVERSION} < 500000 || exists(${LOCALBASE}/lib/libreadline.so.5) LIB_DEPENDS+= readline.5:${PORTSDIR}/devel/readline .endif |