Re: Issue with compiling to scheme

2013-08-03 Thread mark . d . witmer
m...@markwitmer.com writes: > I'm running into a problem creating custom languages that compile to > Scheme. I have an example here of a simple compiler that takes any > Scheme expression and generates code for creating a Guile module. If I > compile a file using this language and reference the re

Re: [ANN] Guile-WM 0.1/Guile XCB 1.1

2013-08-24 Thread mark . d . witmer
Mark H Weaver writes: > This all sounds very exciting! Enough so that I finally pulled > guile-xcb and attempted to build it from git. Unfortunately, I ran into > several problems: Thanks for taking a look at it. I'll see if I can help: > > * Although the README says that Guile 2.0.9 is requi

Re: asynchronous socket library

2013-08-24 Thread mark . d . witmer
Mark H Weaver writes: > > First of all, that '(close-port port)' is wrong. Here you are trying to > tell Guile how to close 'port', and this just recurses. I guess it > should be (close-port auth-file)'. That's right. It's two bugs, actually---closing the file would cause an infinite loop and

Re: [ANN] Guile-WM 0.1/Guile XCB 1.1

2013-08-26 Thread mark . d . witmer
Alex Sassmannshausen writes: > Hello, > > Don't know if anyone else has had any further luck getting guile-wm to > run, but I'm currently hitting the error: > ERROR: In procedure scm-error: > ERROR: no code for module (guile-wm shared) > > This is after a successful configure; make; make inst

Re: [ANN] Guile-WM 0.1/Guile XCB 1.1

2013-11-30 Thread mark . d . witmer
Mark H Weaver writes: > Hi Mark, > > Shortly after the releases of Guile XCB 1.1 and Guile WM 0.1, some > important problems were fixed in the build system. Would you be willing > to produce new tarball releases? > > Several of us are interested in Guile WM and would like to make it > easier for

Re: [ANN] Guile-WM 0.1/Guile XCB 1.1

2013-12-01 Thread mark . d . witmer
Feng Shu writes: > I am very interested in this project and expect Guile-wm as prowerful > as awesome and stumpwm! > > May be A web page should be build for this project > > That's an excellent idea. Here are websites for both Guile XCB and Guile-WM: http://www.markwitmer.com/guile-xcb/guile-x

[ANN] Guile XCB 1.3/Guile-WM 1.0

2014-02-04 Thread mark . d . witmer
Hello everybody, I'd like to announce new versions of Guile XCB and Guile-WM. Guile XCB 1.3 has just two changes, but they are important. First of all, the installation directories are now configurable with the configure options --with-guile-site-dir and --with-guile-site-ccache-dir. Thanks are

Re: guile-xcb

2013-02-17 Thread mark . d . witmer
l...@gnu.org (Ludovic Courtès) writes: > > Woow, looks fun! Do you have example applications around that we could > play with? > Not yet. It's still a ways away from a working X application. But hopefully in the relatively near future I'll have something working. Once I finish the compiler part

Re: Trouble w/sockets

2013-03-03 Thread mark . d . witmer
Thien-Thi Nguyen writes: > () m...@markwitmer.com > () Sun, 03 Mar 2013 00:36:09 -0500 > >an error that the "resource is temporarily unavailable." Perhaps >there's something I need to do before connecting to the X server to >ensure that it doesn't hang up on me. > > Check out Xnest -

Re: Trouble w/sockets

2013-03-03 Thread mark . d . witmer
mark.d.wit...@gmail.com writes: > But calls to readv() after I do the select + usleep loop you suggest > here just give me garbage data. (read-char) gets #. > Oh, and the return value (bytes read) from readv() is zero, so the garbage data is just stuff in an unitialized bytevector. Looks like the

Re: Guile XCB

2013-06-18 Thread mark . d . witmer
The following message is a courtesy copy of an article that has been posted to gmane.lisp.guile.user as well. Stefan Israelsson Tampe writes: > Hi Mark! > > Nice tool! > > A bit off topic but maybe something that is perhaps useful in this > project, is there any scheme framework > centered arou

Re: Guile XCB

2013-06-18 Thread mark . d . witmer
The following message is a courtesy copy of an article that has been posted to gmane.lisp.guile.user as well. l...@gnu.org (Ludovic Courtès) writes: > Hello, > > m...@markwitmer.com skribis: > >> I'm pleased to announce that Guile XCB is, at last, a real thing! I had >> to take a couple months of

A timely question on interrupted system calls

2013-07-10 Thread mark . d . witmer
I followed the thread a few days ago on @guile-dev about SCM_SYSCALL and was grateful I hadn't run into any problems with it. But now I have! I'm working with an event loop for my X bindings that polls a socket for availablity using `select'. Meanwhile, I have a repl server running in another thr

Re: A timely question on interrupted system calls

2013-07-12 Thread mark . d . witmer
l...@gnu.org (Ludovic Courtès) writes: > mark.d.wit...@gmail.com skribis: > >> I followed the thread a few days ago on @guile-dev about SCM_SYSCALL and >> was grateful I hadn't run into any problems with it. But now I have! > > Excellent. :-) > >> I'm working with an event loop for my X bindings