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

                                        



                             
                                 



                                       
                                    

                    
 
                            
                                                       
                                              
                                          


      
# 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