opnsense-ports/Mk/Uses/execinfo.mk
Franco Fichtner 9f76ccf7c2 Infrastructure: sync with upstream
Taken from: FreeBSD
2015-04-17 00:45:50 +02:00

27 lines
610 B
Makefile

# $FreeBSD$
#
# handle dependency on libexecinfo
#
# Feature: execinfo
# Usage: USES=execinfo
#
# Takes no arguments
#
# Exported variables:
#
# EXECINFO_CPPFLAGS - preprocessor flags needed to correctly use
# execinfo library
# EXECINFO_LDFLAGS - linker flags needed to correctly use
# execinfo library
#
.if !defined(_INCLUDE_USES_EXECINFO_MK)
_INCLUDE_USES_EXECINFO_MK= yes
.if !exists(/usr/lib/libexecinfo.so)
LIB_DEPENDS+= libexecinfo.so:${PORTSDIR}/devel/libexecinfo
EXECINFO_CPPFLAGS= -I${LOCALBASE}/include
EXECINFO_LDFLAGS= -L${LOCALBASE}/lib
.endif
.endif