diff options
author | rwatson <rwatson@FreeBSD.org> | 2001-03-15 03:00:39 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2001-03-15 03:00:39 +0000 |
commit | f843a4812be42e079fa066fe7f8e5568764902be (patch) | |
tree | 24cf64c952e1594a1a803de32a47133de68aed77 /lib/libutil/Makefile | |
parent | f773ff5a8798de6b68501943b6bd61072bf7ad59 (diff) | |
download | FreeBSD-src-f843a4812be42e079fa066fe7f8e5568764902be.zip FreeBSD-src-f843a4812be42e079fa066fe7f8e5568764902be.tar.gz |
o To support new EA interface with explicit namespaces, introduce two
utility functions which convert between string namespace names and
numeric constants used by the interface. Right now, two namespaces
are supported, EXTATTR_NAMESPACE_SYSTEM ("system") and
EXTATTR_NAMESPACE_USER ("user"). These functions are used by
various userland EA utilities, rather than hard coding the routines
all over the place.
Obtained from: TrustedBSD Project
Diffstat (limited to 'lib/libutil/Makefile')
-rw-r--r-- | lib/libutil/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libutil/Makefile b/lib/libutil/Makefile index 07db69a..2b7259c 100644 --- a/lib/libutil/Makefile +++ b/lib/libutil/Makefile @@ -6,9 +6,9 @@ SHLIB_MAJOR= 3 SHLIB_MINOR= 0 CFLAGS+=-Wall -DLIBC_SCCS -I${.CURDIR} -I${.CURDIR}/../../sys CFLAGS+=-DINET6 -SRCS= _secure_path.c auth.c fparseln.c login.c login_auth.c login_cap.c \ - login_class.c login_crypt.c login_ok.c login_times.c login_tty.c \ - logout.c logwtmp.c property.c pty.c realhostname.c stub.c \ +SRCS= _secure_path.c auth.c extattr.c fparseln.c login.c login_auth.c \ + login_cap.c login_class.c login_crypt.c login_ok.c login_times.c \ + login_tty.c logout.c logwtmp.c property.c pty.c realhostname.c stub.c \ trimdomain.c uucplock.c INCS= libutil.h login_cap.h |