Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src add sqlite3



details:   https://anonhg.NetBSD.org/src/rev/029e7253c22e
branches:  trunk
changeset: 821218:029e7253c22e
user:      christos <christos%NetBSD.org@localhost>
date:      Sat Jan 28 23:42:36 2017 +0000

description:
add sqlite3

diffstat:

 usr.bin/passwd/Makefile  |  4 +++-
 usr.bin/telnet/Makefile  |  6 +++---
 usr.sbin/racoon/Makefile |  6 +++---
 3 files changed, 9 insertions(+), 7 deletions(-)

diffs (60 lines):

diff -r 6416491bad84 -r 029e7253c22e usr.bin/passwd/Makefile
--- a/usr.bin/passwd/Makefile   Sat Jan 28 23:40:51 2017 +0000
+++ b/usr.bin/passwd/Makefile   Sat Jan 28 23:42:36 2017 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.44 2013/02/13 23:19:14 christos Exp $
+#      $NetBSD: Makefile,v 1.45 2017/01/28 23:44:51 christos Exp $
 #      from: @(#)Makefile    8.3 (Berkeley) 4/2/94
 
 .include <bsd.own.mk>
@@ -30,7 +30,9 @@
 SRCS+= krb5_passwd.c
 
 DPADD+=        ${LIBKRB5} ${LIBCRYPTO} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN} ${LIBCRYPT}
+DPADD+=        ${LIBSQLITE3}
 LDADD+=        -lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lcrypt
+LDADD+=        -lsqlite3
 .ifdef OVERRIDE_HEIMDAL_KPASSWD
 LINKS+=        ${BINDIR}/passwd ${BINDIR}/kpasswd
 MAN+=  kpasswd.1
diff -r 6416491bad84 -r 029e7253c22e usr.bin/telnet/Makefile
--- a/usr.bin/telnet/Makefile   Sat Jan 28 23:40:51 2017 +0000
+++ b/usr.bin/telnet/Makefile   Sat Jan 28 23:42:36 2017 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.50 2012/08/10 12:10:27 joerg Exp $
+#      $NetBSD: Makefile,v 1.51 2017/01/28 23:45:53 christos Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -65,8 +65,8 @@
 
 .if (${USE_KERBEROS} != "no")
 CPPFLAGS+=-DKRB5 -DFORWARD
-LDADD+= -lkrb5 -lasn1 -lcom_err -lroken
-DPADD+=        ${LIBKRB5} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN}
+LDADD+= -lkrb5 -lasn1 -lcom_err -lroken -lsqlite3
+DPADD+=        ${LIBKRB5} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN} ${LIBSQLITE3}
 .endif
 
 .if (${MKCRYPTO} != "no")
diff -r 6416491bad84 -r 029e7253c22e usr.sbin/racoon/Makefile
--- a/usr.sbin/racoon/Makefile  Sat Jan 28 23:40:51 2017 +0000
+++ b/usr.sbin/racoon/Makefile  Sat Jan 28 23:42:36 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.27 2013/11/09 00:33:48 christos Exp $
+# $NetBSD: Makefile,v 1.28 2017/01/28 23:42:36 christos Exp $
 
 WARNS?=        0       # XXX third-party program, many issues
 NOCLANGERROR=  # defined
@@ -47,9 +47,9 @@
 .if (${USE_KERBEROS} != "no")
 CPPFLAGS+=-DHAVE_GSSAPI
 LDADD+= -lgssapi -lkrb5 -lhx509 -lheimntlm -lcom_err \
-       -lroken -lasn1
+       -lroken -lasn1 -lsqlite3
 DPADD+= ${LIBGSSAPI} ${LIBKRB5} ${LIBHX509} ${LIBHEIMNTLM} ${LIBCOM_ERR} \
-       ${LIBROKEN} ${LIBASN1}
+       ${LIBROKEN} ${LIBASN1} ${LIBSQLITE3}
 .endif
 CPPFLAGS+=-DHAVE_OPENSSL_IDEA_H
 .if (${MKCRYPTO_RC5} != "no")



Home | Main Index | Thread Index | Old Index