CVS commit: src/external/bsd/fetch/lib

2011-08-17 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Aug 17 09:20:14 UTC 2011

Modified Files:
src/external/bsd/fetch/lib: Makefile

Log Message:
remove gcc hacks.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/external/bsd/fetch/lib/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/fetch/lib/Makefile
diff -u src/external/bsd/fetch/lib/Makefile:1.7 src/external/bsd/fetch/lib/Makefile:1.8
--- src/external/bsd/fetch/lib/Makefile:1.7	Tue Aug  9 09:00:58 2011
+++ src/external/bsd/fetch/lib/Makefile	Wed Aug 17 05:20:14 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2011/08/09 13:00:58 joerg Exp $
+# $NetBSD: Makefile,v 1.8 2011/08/17 09:20:14 christos Exp $
 
 LIB=		fetch
 SRCS=		fetch.c common.c ftp.c http.c file.c
@@ -37,8 +37,3 @@
 	${LIBFETCHDIR}/http.errors  ${.TARGET}
 
 .include bsd.lib.mk
-
-.if ${HAVE_GCC} == 45
-# XXX
-COPTS.ftp.c+=	${${ACTIVE_CC} == gcc:?-Wno-array-bounds:}
-.endif



CVS commit: src/external/bsd/fetch/lib

2009-10-19 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Oct 20 01:21:28 UTC 2009

Modified Files:
src/external/bsd/fetch/lib: Makefile

Log Message:
Fix RCS ID


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/fetch/lib/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/fetch/lib/Makefile
diff -u src/external/bsd/fetch/lib/Makefile:1.4 src/external/bsd/fetch/lib/Makefile:1.5
--- src/external/bsd/fetch/lib/Makefile:1.4	Mon Jul 20 15:46:51 2009
+++ src/external/bsd/fetch/lib/Makefile	Tue Oct 20 01:21:28 2009
@@ -1,4 +1,4 @@
-# $NetBSD
+# $NetBSD: Makefile,v 1.5 2009/10/20 01:21:28 joerg Exp $
 
 LIB=		fetch
 SRCS=		fetch.c common.c ftp.c http.c file.c



CVS commit: src/external/bsd/fetch/lib

2009-07-20 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Jul 20 15:46:51 UTC 2009

Modified Files:
src/external/bsd/fetch/lib: Makefile

Log Message:
Use the correct libcrypto.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/fetch/lib/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/fetch/lib/Makefile
diff -u src/external/bsd/fetch/lib/Makefile:1.3 src/external/bsd/fetch/lib/Makefile:1.4
--- src/external/bsd/fetch/lib/Makefile:1.3	Thu May 28 06:44:29 2009
+++ src/external/bsd/fetch/lib/Makefile	Mon Jul 20 11:46:51 2009
@@ -20,8 +20,8 @@
 
 LDADD=		-lssl -lcrypto
 
-LIBDPLIBS+=	ssl	${NETBSDSRCDIR}/lib/libssl \
-		crypto	${NETBSDSRCDIR}/lib/libcrypto
+LIBDPLIBS+=	ssl	${NETBSDSRCDIR}/crypto/external/bsd/openssl/lib/libssl \
+		crypto	${NETBSDSRCDIR}/crypto/external/bsd/openssl/lib/libcrypto
 .endif
 
 CLEANFILES+=	ftperr.h httperr.h



CVS commit: src/external/bsd/fetch/lib

2009-05-28 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Thu May 28 10:44:30 UTC 2009

Modified Files:
src/external/bsd/fetch/lib: Makefile

Log Message:
Allow building with MKCRYPTO=no.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/fetch/lib/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/fetch/lib/Makefile
diff -u src/external/bsd/fetch/lib/Makefile:1.2 src/external/bsd/fetch/lib/Makefile:1.3
--- src/external/bsd/fetch/lib/Makefile:1.2	Tue Nov 25 05:32:05 2008
+++ src/external/bsd/fetch/lib/Makefile	Thu May 28 10:44:29 2009
@@ -14,12 +14,15 @@
 CPPFLAGS+=	-DNETBSD 
 CPPFLAGS+=	-DFTP_COMBINE_CWDS
 CPPFLAGS+=	-DINET6
+
+.if (${MKCRYPTO} != no)
 CPPFLAGS+=	-DWITH_SSL
 
 LDADD=		-lssl -lcrypto
 
 LIBDPLIBS+=	ssl	${NETBSDSRCDIR}/lib/libssl \
 		crypto	${NETBSDSRCDIR}/lib/libcrypto
+.endif
 
 CLEANFILES+=	ftperr.h httperr.h