Source-Changes-HG archive

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

[src/trunk]: src/lib Reachover support for the library version of the iSCSI t...



details:   https://anonhg.NetBSD.org/src/rev/bf5e2865ed02
branches:  trunk
changeset: 588121:bf5e2865ed02
user:      agc <agc%NetBSD.org@localhost>
date:      Wed Feb 08 18:58:55 2006 +0000

description:
Reachover support for the library version of the iSCSI target.

diffstat:

 lib/Makefile               |   4 +++-
 lib/libiscsi/Makefile      |  19 +++++++++++++++++++
 lib/libiscsi/shlib_version |   5 +++++
 3 files changed, 27 insertions(+), 1 deletions(-)

diffs (50 lines):

diff -r 452d5402d201 -r bf5e2865ed02 lib/Makefile
--- a/lib/Makefile      Wed Feb 08 18:57:49 2006 +0000
+++ b/lib/Makefile      Wed Feb 08 18:58:55 2006 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.98 2005/11/26 16:07:15 christos Exp $
+#      $NetBSD: Makefile,v 1.99 2006/02/08 18:58:55 agc Exp $
 #      from: @(#)Makefile      5.25.1.1 (Berkeley) 5/7/91
 
 .include <bsd.own.mk>
@@ -64,6 +64,8 @@
 
 SUBDIR+=       libradius       # depends on libcrypto - only if ${MKCRYPTO}
 
+SUBDIR+=       libiscsi        # depends on libpthread
+
 .if (${MKCRYPTO} != "no")
 SUBDIR+=       libssl          # depends on libcrypto
 SUBDIR+=       libssh          # depends on libcrypto
diff -r 452d5402d201 -r bf5e2865ed02 lib/libiscsi/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/libiscsi/Makefile     Wed Feb 08 18:58:55 2006 +0000
@@ -0,0 +1,19 @@
+# $NetBSD: Makefile,v 1.1 2006/02/08 18:58:55 agc Exp $
+
+.include <bsd.own.mk>
+
+LIB= iscsi
+SRCS= conffile.c disk.c target.c iscsi.c util.c parameters.c
+CPPFLAGS+= -DCONFIG_ISCSI_DEBUG -D_FILE_OFFSET_BITS=64
+CPPFLAGS+= -I${ISCSIDIST}/include
+CPPFLAGS+= -pthread
+LDFLAGS+= -pthread
+NOMAN= # defined
+WARNS=4
+
+ISCSIDIST=     ${NETBSDSRCDIR}/dist/iscsi
+.PATH: ${ISCSIDIST}/src
+
+LIBDPLIBS=      pthread  ${.CURDIR}/../libpthread
+
+.include <bsd.lib.mk>
diff -r 452d5402d201 -r bf5e2865ed02 lib/libiscsi/shlib_version
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/libiscsi/shlib_version        Wed Feb 08 18:58:55 2006 +0000
@@ -0,0 +1,5 @@
+#       $NetBSD: shlib_version,v 1.1 2006/02/08 18:58:55 agc Exp $
+#       Remember to update distrib/sets/lists/base/shl.* when changing
+#
+major=0
+minor=0



Home | Main Index | Thread Index | Old Index