summaryrefslogblamecommitdiff
path: root/Mk/Uses/readline.mk
blob: 8ff3c822a2ae94c6e42ad453ebe8387e5e20c830 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                        



                             
                                 



                                       
                                    

                    
 
                            
                                                       
                                              
                                          


      
# $FreeBSD$
#
# handle dependency on the readline port
#
# Feature:	readline
# Usage:	USES=readline
# Valid ARGS:	port
#
# MAINTAINER: portmgr@FreeBSD.org

.if !defined(_INCLUDE_USES_READLINE_MK)
_INCLUDE_USES_READLINE_MK=	yes

.if !exists(/usr/lib/libreadline.so)
readline_ARGS=	port
.endif

.if ${readline_ARGS} == port
LIB_DEPENDS+=		libreadline.so.8:devel/readline
CPPFLAGS+=		-I${LOCALBASE}/include
LDFLAGS+=		-L${LOCALBASE}/lib
.endif

.endif