summaryrefslogtreecommitdiff
path: root/lib/libsdp
diff options
context:
space:
mode:
authorplunky <plunky@NetBSD.org>2009-05-12 10:05:06 +0000
committerplunky <plunky@NetBSD.org>2009-05-12 10:05:06 +0000
commitdfbf818a22d811e97c87c95a064bcff7ee2abb4d (patch)
tree23994d7f278a62a4efcb30be6d9421e0fad40ec9 /lib/libsdp
parent93dfc06da921375d7d447c56760b4bf9622786f1 (diff)
Add in the new Service Discovery Protocol API as announced previously in
http://mail-index.netbsd.org/tech-userlevel/2009/02/27/msg001764.html in lib/libbluetooth, add new SDP functions and bump minor version replace usr.sbin/sdpd with new version install sdp.h and sdp.3 from lib/libbluetooth (Don't remove libsdp yet since some programs still refer to it)
Diffstat (limited to 'lib/libsdp')
-rw-r--r--lib/libsdp/Makefile29
1 files changed, 3 insertions, 26 deletions
diff --git a/lib/libsdp/Makefile b/lib/libsdp/Makefile
index 59992e13b51..ef975f2eafe 100644
--- a/lib/libsdp/Makefile
+++ b/lib/libsdp/Makefile
@@ -1,37 +1,14 @@
-# $NetBSD: Makefile,v 1.2 2007/05/28 12:06:21 tls Exp $
-# $Id: Makefile,v 1.2 2007/05/28 12:06:21 tls Exp $
+# $NetBSD: Makefile,v 1.3 2009/05/12 10:05:06 plunky Exp $
+# $Id: Makefile,v 1.3 2009/05/12 10:05:06 plunky Exp $
# $FreeBSD: src/lib/libsdp/Makefile,v 1.4 2005/07/22 17:19:03 kensmith Exp $
USE_FORT?= yes # network protocol library
LIB= sdp
-MAN= sdp.3
+NOMAN=
SRCS= search.c service.c session.c util.c
-INCS= sdp.h
-INCSDIR= /usr/include
CPPFLAGS+= -I${.CURDIR}
-MLINKS+= sdp.3 SDP_GET8.3
-MLINKS+= sdp.3 SDP_GET16.3
-MLINKS+= sdp.3 SDP_GET32.3
-MLINKS+= sdp.3 SDP_GET64.3
-MLINKS+= sdp.3 SDP_GET128.3
-MLINKS+= sdp.3 SDP_PUT8.3
-MLINKS+= sdp.3 SDP_PUT16.3
-MLINKS+= sdp.3 SDP_PUT32.3
-MLINKS+= sdp.3 SDP_PUT64.3
-MLINKS+= sdp.3 SDP_PUT128.3
-MLINKS+= sdp.3 sdp_open.3
-MLINKS+= sdp.3 sdp_open_local.3
-MLINKS+= sdp.3 sdp_close.3
-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>