svn commit: r255146 - head/lib/libexecinfo

Ed Maste emaste at FreeBSD.org
Mon Sep 2 12:37:34 UTC 2013


Author: emaste
Date: Mon Sep  2 12:37:33 2013
New Revision: 255146
URL: http://svnweb.freebsd.org/changeset/base/255146

Log:
  libexecinfo compatibility with devel/libexecinfo port
  
  1. Match shlib number
  2. Add libelf dependency
  
  Suggested by: bapt[1]

Modified:
  head/lib/libexecinfo/Makefile

Modified: head/lib/libexecinfo/Makefile
==============================================================================
--- head/lib/libexecinfo/Makefile	Mon Sep  2 11:35:55 2013	(r255145)
+++ head/lib/libexecinfo/Makefile	Mon Sep  2 12:37:33 2013	(r255146)
@@ -3,12 +3,16 @@
 LIBEXECINFO=	${.CURDIR}/../../contrib/libexecinfo
 
 LIB=		execinfo
+SHLIB_MAJOR=	1
 
 .PATH:		${LIBEXECINFO}
 
 INCS=		execinfo.h symtab.h unwind.h
 SRCS=		backtrace.c symtab.c unwind.c
 
+DPADD=		${LIBELF}
+LDADD=		-lelf
+
 MAN=		backtrace.3
 
 MLINKS+=	backtrace.3 backtrace_symbols.3


More information about the svn-src-all mailing list