freebsd-src/lib/libcompat/Makefile
Mariusz Zaborski bb421be6c1 libutil: move ftime to libutil
It seems that there are still some applications that use ftime(3)
(for example, science/siconos and sysutils/lcdproc). The issue
is that we don't build libcompat as a shared library anymore.
The easiest solution is to move it to libutil, until we
deprecate it for good.

This solution was proposed by kib@ in
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=257789.

PR:		257789
MFC after:	1 month
Reviewed by:	kib (ages ago)
Differential Revision:	https://reviews.freebsd.org/D39994
2024-05-29 14:36:09 +02:00

24 lines
316 B
Makefile

PACKAGE=lib${LIB}
LIB= compat
CFLAGS+=-I${SRCTOP}/lib/libc/locale
NO_PIC=
WARNS?= 0
.PATH: ${.CURDIR}/4.3 ${.CURDIR}/4.4
# compat 4.3 sources
SRCS+= re_comp.c rexec.c
MAN+= 4.3/re_comp.3 4.3/rexec.3
MLINKS+=re_comp.3 re_exec.3
# compat 4.4 sources
SRCS+= cuserid.c
MAN+= 4.4/cuserid.3
.include <bsd.lib.mk>