This commit introduces a new plugin "vm-sound-sndio" which uses the This commit is meant as an initial introduction of the plugin, as The plugin is not loaded by default and should only get built when My intention with this pull request is to get the infrastructure for future improvements up and running, so further development is easier for me and people have a way of testing the plugin. You can view, comment on, or merge this pull request online at:https://github.com/OpenSmalltalk/opensmalltalk-vm/pull/451 Commit Summary
File Changes
Patch Links:
— |
@krono commented on this pull request. Looks good overall In build.linux64x64/squeak.cog.spur/build/mvm: > @@ -11,7 +11,7 @@ LDFLAGS="" case $(uname -s) in OpenBSD) CFLAGS="$CFLAGS -I/usr/local/include" - LIBS="$LIBS -lexecinfo" + LIBS="$LIBS -lexecinfo -lsndio" This should go in
In platforms/unix/vm-sound-sndio/sqUnixSndioSound.c: > @@ -0,0 +1,201 @@ +/* sqUnixSndioSound.c -- sound module for sndio sound system + * + * Last edited: 2005-04-06 05:44:40 by piumarta on pauillac.hpl.hp.com maybe adapt that one ;) In platforms/unix/vm-sound-sndio/sqUnixSndioSound.c: > @@ -0,0 +1,201 @@ +/* sqUnixSndioSound.c -- sound module for sndio sound system + * + * Last edited: 2005-04-06 05:44:40 by piumarta on pauillac.hpl.hp.com + * + * This is a driver for the OpenBSD sndio sound drivers for Squeak. + * + */ + +#include "sq.h" +#include "sqaio.h" + +#include <stdio.h> +#include <sndio.h> + +#define trace() fprintf(stderr, "%s:%d %s\n", __FILE__, __LINE__, __FUNCTION__) Please add a debug guard — |
In reply to this post by David T Lewis
@ckeen pushed 1 commit.
— |
In reply to this post by David T Lewis
Many thanks for your feedback and sorry for the late reply. I have updated the branch incorporating your suggestions. If you can find the time to have a loot at it again, I'd appreciate it. — |
In reply to this post by David T Lewis
Looks good to me. Anyone else having a look? — |
On Wed, Dec 11, 2019 at 1:56 PM Tobias Pape <[hidden email]> wrote:
I don't see anything problematic. Integrate?
_,,,^..^,,,_ best, Eliot |
In reply to this post by David T Lewis
Merged #451 into Cog. — |
Free forum by Nabble | Edit this page |