opnsense-src/lib/libutil++/Makefile
Lexi Winter f4fd2aa07c libutil++: Move to clibs
This library only installs manual pages, so putting it in its own
package means we build a FreeBSD-libutil++-man package but not a
base FreeBSD-libutil++ package.  Without a base package, the man
package can't be installed due to the missing dependency.

We don't really need a separate package for a few manpages, so move
it to clibs.

Reviewed by:		des
Differential Revision:	https://reviews.freebsd.org/D51756
2025-08-08 16:14:07 +01:00

20 lines
332 B
Makefile

PACKAGE= clibs
LIB_CXX= util++
INTERNALLIB= true
SHLIB_MAJOR= 1
SRCS= stringf.cc
MAN+= freebsd::FILE_up.3 \
freebsd::addrinfo_up.3 \
freebsd::fd_up.3 \
freebsd::malloc_up.3 \
freebsd::nvlist_up.3 \
freebsd::pidfile.3 \
freebsd::stringf.3
.include <src.opts.mk>
HAS_TESTS=
SUBDIR.${MK_TESTS}+= tests
.include <bsd.lib.mk>