Date: Thu, 26 Nov 2015 01:54:09 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r291350 - head/lib Message-ID: <201511260154.tAQ1s9wR014022@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511260154.tAQ1s9wR014022>