blob: b3c5c4a95914db87f7581cc51a102e7a5707ba1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $FreeBSD$
#
# handle dependency on the readline port
#
# MAINTAINER: portmgr@FreeBSD.org
#
# Feature: readline
# Usage: USES=readline
# Valid ARGS: port
#
.if !defined(_INCLUDE_USES_READLINE_MK)
_INCLUDE_USES_READLINE_MK= yes
.if ${OSVERSION} > 1000000
readline_ARGS= port
.endif
.if defined(readline_ARGS) && ${readline_ARGS} == port
LIB_DEPENDS+= readline.6:${PORTSDIR}/devel/readline
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib -lreadline
.endif
.endif
|