[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
AW: [bug-anubis] ERROR: unbound variable: openssl-filter
From: |
Sergey Poznyakoff |
Subject: |
AW: [bug-anubis] ERROR: unbound variable: openssl-filter |
Date: |
Thu, 24 Apr 2008 12:57:53 +0300 |
Hi Torsten,
Sorry I was not able to reply earlier.
> Okay, I tested and find some problems in my files. I've now a s/mime
> certificate that works. But now I get an error "ERROR: Unbound
> variable: read-line"
This function was buil-in in Guile prior to 1.8, but 1.8 has moved it
to a separate module. Please apply the following patch to entire-msg.scm:
Index: guile/entire-msg.scm
===================================================================
RCS file: /cvsroot/anubis/anubis/guile/entire-msg.scm,v
retrieving revision 1.6
diff -p -u -r1.6 entire-msg.scm
--- guile/entire-msg.scm 6 Aug 2007 15:29:22 -0000 1.6
+++ guile/entire-msg.scm 24 Apr 2008 09:54:49 -0000
@@ -17,7 +17,8 @@
;;; You should have received a copy of the GNU General Public License along
;;; with GNU Anubis. If not, see <http://www.gnu.org/licenses/>.
-(use-modules (ice-9 popen))
+(use-modules (ice-9 popen)
+ (ice-9 rdelim))
;; Starts program PROG with arguments ARGS
;; Returns a list:
Let me know if it works for you.
Regards,
Sergey