diff options
author | emax <emax@FreeBSD.org> | 2004-01-20 20:48:26 +0000 |
---|---|---|
committer | emax <emax@FreeBSD.org> | 2004-01-20 20:48:26 +0000 |
commit | 8a9c8a287a37066fd95659d3185b331a52843591 (patch) | |
tree | c318d183c555f9482f9b067d6ac25de5901a5821 /lib/libsdp/Makefile | |
parent | 63d4653d05ffbec70fdf5d14dc3b1cb29e2b4425 (diff) | |
download | FreeBSD-src-8a9c8a287a37066fd95659d3185b331a52843591.zip FreeBSD-src-8a9c8a287a37066fd95659d3185b331a52843591.tar.gz |
Import sdpd(8) sources. This is Bluetooth Service Discovery Protocol daemon.
Extend libsdp(3) API to allow service registration and removal.
Fix uninitialized variable bug in sdpcontrol(8).
Reviewed by: imp (mentor)
No objection: ru
Diffstat (limited to 'lib/libsdp/Makefile')
-rw-r--r-- | lib/libsdp/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libsdp/Makefile b/lib/libsdp/Makefile index 4df7471..f93c690 100644 --- a/lib/libsdp/Makefile +++ b/lib/libsdp/Makefile @@ -9,7 +9,7 @@ CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../../sys SHLIB_MAJOR= 1 -SRCS= search.c session.c util.c +SRCS= search.c service.c session.c util.c INCS= sdp.h MLINKS+= sdp.3 SDP_GET8.3 @@ -29,5 +29,8 @@ MLINKS+= sdp.3 sdp_error.3 MLINKS+= sdp.3 sdp_search.3 MLINKS+= sdp.3 sdp_attr2desc.3 MLINKS+= sdp.3 sdp_uuid2desc.3 +MLINKS+= sdp.3 sdp_register_service.3 +MLINKS+= sdp.3 sdp_unregister_service.3 +MLINKS+= sdp.3 sdp_change_service.3 .include <bsd.lib.mk> |