mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-21 10:37:53 -04:00
24 lines
611 B
Plaintext
24 lines
611 B
Plaintext
$NetBSD: patch-af,v 1.6 2010/11/17 19:14:34 plunky Exp $
|
|
|
|
--- Makefile.orig 2010-11-03 18:28:50.000000000 +0000
|
|
+++ Makefile
|
|
@@ -16,9 +16,16 @@ DEBUG_FLAGS= -g
|
|
CFLAGS+= -I/usr/local/include \
|
|
-I/usr/local/include/openobex
|
|
|
|
-DPADD= ${LIBBLUETOOTH} ${LIBSDP} ${LIBREADLINE}
|
|
+DPADD= ${LIBBLUETOOTH} ${LIBREADLINE}
|
|
LDADD= -L/usr/lib -L/usr/local/lib \
|
|
- -lbluetooth -lsdp -lopenobex -lexpat -lreadline -liconv
|
|
+ -lbluetooth -lopenobex -lexpat -lreadline -liconv
|
|
|
|
+.if (${HAVE_LIBSDP:Uyes} == "no")
|
|
+CPPFLAGS+= -DSDP_COMPAT
|
|
+.else
|
|
+DPADD+= ${LIBSDP}
|
|
+LDADD+= -lsdp
|
|
+.endif
|
|
+
|
|
.include <bsd.prog.mk>
|
|
|