svn commit: r291350 - head/lib

Bryan Drewery bdrewery at FreeBSD.org
Thu Nov 26 01:54:10 UTC 2015


Author: bdrewery
Date: Thu Nov 26 01:54:09 2015
New Revision: 291350
URL: https://svnweb.freebsd.org/changeset/base/291350

Log:
  Always build libevent, which fixes the build for usr.sbin/ypldap after r291230.
  
  The dependency for ypldap is only with WITH_NIS, but libevent is small
  enough to not warrant the extra logic and maintenance cost here so just
  always build it.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/lib/Makefile

Modified: head/lib/Makefile
==============================================================================
--- head/lib/Makefile	Thu Nov 26 01:47:56 2015	(r291349)
+++ head/lib/Makefile	Thu Nov 26 01:54:09 2015	(r291350)
@@ -48,7 +48,7 @@ SUBDIR=	${SUBDIR_ORDERED} \
 	libdwarf \
 	libedit \
 	${_libelftc} \
-	${_libevent} \
+	libevent \
 	libexecinfo \
 	libexpat \
 	libfetch \
@@ -240,10 +240,6 @@ _libnetgraph=	libnetgraph
 _libypclnt=	libypclnt
 .endif
 
-.if ${MK_PF} != "no"
-_libevent=	libevent
-.endif
-
 .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
 _libsmb=	libsmb
 _libvgl=	libvgl


More information about the svn-src-all mailing list