r3042: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 16 Oct 2002 02:10:56 +0000 (02:10 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 16 Oct 2002 02:10:56 +0000 (02:10 +0000)
debian/changelog
debian/postoffice.asd
smtp.lisp

index 30a6a5b8997ebf3ae379b24c710363eb37b3aa05..8807173e2319729c530d2c0d0ca2854a4b847f8f 100644 (file)
@@ -1,3 +1,10 @@
+cl-postoffice (1.8.2-1) unstable; urgency=low
+
+  * Change call to make-socket to use string rather than numeric ip
+  address for acl-compat compatibility.
+  
+ -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 15 Oct 2002 20:09:29 -0600
+
 cl-postoffice (1.8.1-1) unstable; urgency=low
 
   * Rework dns-query for non-allegro systems
index 87b60a7821f76fefd666be62e822b75ed2a94947..de3614663676914aa2030d1d6d02629c4596b4f1 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Sep 2002
 ;;;;
-;;;; $Id: postoffice.asd,v 1.2 2002/10/09 23:28:41 kevin Exp $
+;;;; $Id: postoffice.asd,v 1.3 2002/10/16 02:10:56 kevin Exp $
 ;;;;
 ;;;; This file, part of cl-postoffice, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -18,6 +18,7 @@
 
 (in-package :asdf)
 
+#+(or allegro lispworks cmu openmcl)
 (defsystem :postoffice
   :name "cl-postoffice"
   :author "Franz, Inc"
@@ -37,6 +38,7 @@
   #-allegro :depends-on #-allegro (:acl-compat)
   )
 
+#+(or allegro lispworks cmu openmcl)
 (when (ignore-errors (find-class 'load-compiled-op))
   (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :postoffice))))
     (pushnew :postoffice cl:*features*)))
index 458ca2743d79f11a4a5744aed50cd49b68f8e946..88dc4942f1332950a0238cb5be4e8199b11c32ec 100644 (file)
--- a/smtp.lisp
+++ b/smtp.lisp
@@ -23,7 +23,7 @@
 ;; Suite 330, Boston, MA  02111-1307  USA
 ;;
 ;;
-;; $Id: smtp.lisp,v 1.3 2002/10/16 01:35:48 kevin Exp $
+;; $Id: smtp.lisp,v 1.4 2002/10/16 02:10:56 kevin Exp $
 
 ;; Description:
 ;;   send mail to an smtp server.  See rfc821 for the spec.
     (if* (null ipaddr)
        then (error "Can't determine ip addres for mail server ~s" server))
     
-    (setq sock (make-socket :remote-host ipaddr
-                                  :remote-port 25  ; smtp
-                                  ))
+    (setq sock (make-socket :remote-host #+allegro ipaddr #-allegro server
+                           :remote-port 25  ; smtp
+                           ))
     (unwind-protect
        (progn
          (response-case (sock msg)