diff options
author | delphij <delphij@FreeBSD.org> | 2014-10-13 22:15:26 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2014-10-13 22:15:26 +0000 |
commit | 8fe24125cae4872a14af74f7b45a36cde942802f (patch) | |
tree | f0635cb382f1015a3c921ec091c816d96e106308 /lib/Makefile | |
parent | 8080dffdad9dec1cf66f32162bbcd725370c4276 (diff) | |
download | FreeBSD-src-8fe24125cae4872a14af74f7b45a36cde942802f.zip FreeBSD-src-8fe24125cae4872a14af74f7b45a36cde942802f.tar.gz |
Promote libevent to lib/ level and fold ftp-proxy into its parent Makefile.
This allows us to use libevent for other application in the future.
For now libevent is still INTERNALLIB and no shared library is installed.
MFC after: 1 month
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index a5ab970..c558f11 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -44,6 +44,7 @@ SUBDIR= ${SUBDIR_ORDERED} \ libdevstat \ libdwarf \ libedit \ + ${_libevent} \ libexecinfo \ libexpat \ libfetch \ @@ -226,6 +227,10 @@ _libnetgraph= libnetgraph _libypclnt= libypclnt .endif +.if ${MK_PF} != "no" +_libevent= libevent +.endif + .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" _libsmb= libsmb _libvgl= libvgl |