From ksapelkin at yahoo.com Fri Jul 1 22:01:35 2011 From: ksapelkin at yahoo.com (Kirill Sapelkin) Date: Fri, 1 Jul 2011 15:01:35 -0700 (PDT) Subject: [postmodern-devel] turning off threading support Message-ID: <1309557695.419.YahooMailNeo@web113310.mail.gq1.yahoo.com> Hello, I think I would like to turn off threading support as this is to be used only on one machine. Line 6 of postmodern.asd says: ;; Change this manually to turn threading support off or on Am real, real new at this and can't figure out what to change. If this has been covered before, please point me.? Checked the archive back a year or so but could find nothing. If this is posted on the wrong list, please let me know. Thanks. Kirill -------------- next part -------------- An HTML attachment was scrubbed... URL: From marijnh at gmail.com Sat Jul 2 08:55:34 2011 From: marijnh at gmail.com (Marijn Haverbeke) Date: Sat, 2 Jul 2011 10:55:34 +0200 Subject: [postmodern-devel] turning off threading support In-Reply-To: <1309557695.419.YahooMailNeo@web113310.mail.gq1.yahoo.com> References: <1309557695.419.YahooMailNeo@web113310.mail.gq1.yahoo.com> Message-ID: > Am real, real new at this and can't figure out what to change. If you remove the expression that pushes :postmodern-thread-safe to *features* (including the #+ form before it, locks on thread pools will be disabled (and bordeaux-threads won't be loaded). From ksapelkin at yahoo.com Tue Jul 5 17:08:14 2011 From: ksapelkin at yahoo.com (Kirill Sapelkin) Date: Tue, 5 Jul 2011 10:08:14 -0700 (PDT) Subject: [postmodern-devel] sb-md5 Message-ID: <1309885694.76548.YahooMailNeo@web113301.mail.gq1.yahoo.com> Hello, I have the sbcl 1.0.43? and am trying to use postmodern to connect to postgresql 9.0.4.? All this is on my machine. I had commented out the bordeau-threads and closer-mop from postmodern.asd and replaced mention of md5 with sb-md5 in cl-postgres.asd. Running: (asdf:oos 'asdf:load-op :postmodern) fails.? The screen scrolls so fast I can't see the beginning but can see: 0:? Try recompiling messages Does that mean it coughed on messages.lisp? Can I use sbcl's sb-md5? Should I change all mention of md5 to sb-md5 in all postmodern files? Thanks. Kirill -------------- next part -------------- An HTML attachment was scrubbed... URL: From xach at xach.com Tue Jul 5 17:11:09 2011 From: xach at xach.com (Zach Beane) Date: Tue, 05 Jul 2011 13:11:09 -0400 Subject: [postmodern-devel] sb-md5 In-Reply-To: <1309885694.76548.YahooMailNeo@web113301.mail.gq1.yahoo.com> (Kirill Sapelkin's message of "Tue, 5 Jul 2011 10:08:14 -0700 (PDT)") References: <1309885694.76548.YahooMailNeo@web113301.mail.gq1.yahoo.com> Message-ID: <87ei24fyaa.fsf@hangup.portland.xach.com> Kirill Sapelkin writes: > Hello, > > I have the sbcl 1.0.43 and am trying to use postmodern to connect to > postgresql 9.0.4. All this is on my machine. > > I had commented out the bordeau-threads and closer-mop from postmodern.asd and > replaced mention of md5 with sb-md5 in cl-postgres.asd. Why did you do that? Zach From info at jensteich.de Mon Jul 25 11:24:10 2011 From: info at jensteich.de (Jens Teich) Date: Mon, 25 Jul 2011 13:24:10 +0200 Subject: [postmodern-devel] loading trivial-utf-8 Message-ID: <4E2D525A.2050809@jensteich.de> In my project trivial-utf-8 is already loaded. Postmodern does it again which leads to warnings: Warning: (DEFPARAMETER *OPTIMIZE*) being redefined in C:\Users\jens\quicklisp\dists\quicklisp\software\trivial-utf-8-20101006-darcs\trivial-utf-8.lisp (previously in C:\Users\jens\quicklisp\dists\quicklisp\software\postmodern-20110619-git\cl-postgres\trivial-utf-8.lisp). Warning: (DEFUN UTF-8-BYTE-LENGTH) being redefined in ... What is the best strategy to avoid this? Thanks Jens From marijnh at gmail.com Mon Jul 25 12:02:09 2011 From: marijnh at gmail.com (Marijn Haverbeke) Date: Mon, 25 Jul 2011 14:02:09 +0200 Subject: [postmodern-devel] loading trivial-utf-8 In-Reply-To: <4E2D525A.2050809@jensteich.de> References: <4E2D525A.2050809@jensteich.de> Message-ID: > In my project trivial-utf-8 is already loaded. Postmodern does it again > which leads to warnings: If convenient, you can arrange for the other load not to happen, since whichever software is loading it will be able to use the on in Postmodern as well. For a proper solution, the package name used by postmodern's internal trivial-utf8 (and ieee-floats) should be changed, so that it stops colliding with separately loaded instances of those libraries. If you feel up to this, please submit a patch. If not, I'll get to it eventually. Best, Marijn From info at jensteich.de Mon Jul 25 15:50:45 2011 From: info at jensteich.de (Jens Teich) Date: Mon, 25 Jul 2011 17:50:45 +0200 Subject: [postmodern-devel] loading trivial-utf-8 In-Reply-To: References: <4E2D525A.2050809@jensteich.de> Message-ID: <4E2D90D5.3070806@jensteich.de> Am 25.07.2011 14:02, schrieb Marijn Haverbeke: >> In my project trivial-utf-8 is already loaded. Postmodern does it again >> which leads to warnings: > If convenient, you can arrange for the other load not to happen, since > whichever software is loading it will be able to use the on in > Postmodern as well. > > For a proper solution, the package name used by postmodern's internal > trivial-utf8 (and ieee-floats) should be changed, so that it stops > colliding with separately loaded instances of those libraries. If you > feel up to this, please submit a patch. If not, I'll get to it > eventually. > > Best, > Marijn What do you think of removing these two files? Since Quicklisp it is much easier to load libraries. Jens