git.fiddlerwoaroof.com
Browse code

2006-02-02 Kevin Layer <layer@gemini>

layer authored on 03/02/2006 05:06:28
Showing 2 changed files
... ...
@@ -1,5 +1,7 @@
1 1
 2006-02-02  Kevin Layer  <layer@gemini>
2 2
 
3
+	* smtp.cl: add defpatch for 7.0
4
+
3 5
 	* rename mime.cl to mime-api.cl -- cl/src/sys/make.cl concatenates
4 6
 	  into mime.fasl, and it won't work to have an existing mime.fasl
5 7
 
... ...
@@ -4,6 +4,12 @@
4 4
   :type :system
5 5
   :post-loadable t)
6 6
 
7
+#+(version= 7 0)
8
+(sys:defpatch "smtp" 1
9
+  "v1: send-letter w/attachments; send-smtp* can take streams"
10
+  :type :system
11
+  :post-loadable t)
12
+
7 13
 ;; -*- mode: common-lisp; package: net.post-office -*-
8 14
 ;;
9 15
 ;; smtp.cl
... ...
@@ -30,7 +36,7 @@
30 36
 ;; Suite 330, Boston, MA  02111-1307  USA
31 37
 ;;
32 38
 ;;
33
-;; $Id: smtp.cl,v 1.12 2006/01/27 01:40:10 layer Exp $
39
+;; $Id: smtp.cl,v 1.13 2006/02/03 05:06:28 layer Exp $
34 40
 
35 41
 ;; Description:
36 42
 ;;   send mail to an smtp server.  See rfc821 for the spec.