Displaying 5 results from an estimated 5 matches for "ao_art".
Did you mean:
ao_arts
2002 Mar 17
1
libao source build problems on Mandrake 8.2b4: artsc.h missing?
...LIBPTHREAD=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4
-DHAVE_SYS_SOUNDCARD_H=1 -I. -I. -I../../../include/ao -I../../../include
-I/usr/include/artsc -O20 -ffast-math -D_REENTRANT -fsigned-char -O3
-fomit-frame-pointer -pipe -mcpu=pentiumpro -march=i586 -ffast-math
-fno-strength-reduce -c ao_arts.c -fPIC -DPIC -o ao_arts.loao_arts.c:29:19:
artsc.h: No such file or directory
ao_arts.c:50: parse error before `arts_stream_t'
ao_arts.c:50: warning: no semicolon at end of struct or union
ao_arts.c:51: warning: data definition has no type or storage class
ao_arts.c: In function `ao_plugin_...
2000 Dec 27
1
ao_arts
...ing this in the ao distribution ? Pretty please ? :)
Sources and patches attached. This is a very simple plugin because it
uses the easy-to-use 'artsc' C wrapper that aRts installs.
configure.in.diff is for ao/configure.in
Makefile.am.diff is for ao/src/plugins/Makefile.am
Makefile.am and ao_arts.c go in src/plugins/arts/
Also attached is a patch (ao.h.diff) to allow C++ programs to include
ao.h without doing the extern "C" wrapping themselves.
Cheers,
Rik
<HR NOSHADE>
<UL>
<LI>text/plain attachment: Makefile.am
</UL>
-------------- next part ---------...
2001 Apr 23
1
building libao under Debian
...ome/jeremy/src/ogg/libao-0.6.0/src/plugins/arts'
/bin/sh ../../../libtool --mode=compile gcc
-DPACKAGE=\"libao\" -DVERSION=\"0.6.0\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4
-DSIZEOF_LONG=4 -DHAVE_SYS_SOUNDCARD_H=1
-I. -I. -I../../.. -I../../../include -I/usr/include/kde/artsc -c
ao_arts.c
gcc -DPACKAGE=\"libao\" -DVERSION=\"0.6.0\" -DSIZEOF_SHORT=2
-DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_SYS_SOUNDCARD_H=1
-I. -I. -I../../.. -I../../../include -I/usr/include/kde/artsc -c
ao_arts.c -fPIC -DPIC -o ao_arts.lo
ao_arts.c:29: artsc.h: No such file or directory
make[3]...
2001 Jan 07
2
A Top Level README for the nightly CVS snapshot
I ran into a dependency problem while compiling the CVS snapshot which
did not occur while compiling the beta 3 tarballs. For some missing
resources, autogen.sh echoes very helpful messages (such as if automake
is not present), but there was no indication that the kdelibs-devel
package was required for ao (in order to get artsc.h into /usr/include -
I'm sure it is possible to edit the
2004 Oct 22
0
libao-0.8.5 patch
...ound Architecture version 0.9.x.",
+ NULL,
AO_FMT_NATIVE,
35,
ao_alsa_options,
@@ -181,7 +182,8 @@
internal->writei = snd_pcm_writei;
internal->access_mask = SND_PCM_ACCESS_RW_INTERLEAVED;
}
- }
+ } else
+ return 0;
return 1;
}
diff -ur libao-0.8.5/src/plugins/arts/ao_arts.c libao-0.8.5.new/src/plugins/arts/ao_arts.c
--- libao-0.8.5/src/plugins/arts/ao_arts.c 2003-07-14 03:55:47.000000000 +0200
+++ libao-0.8.5.new/src/plugins/arts/ao_arts.c 2004-10-22 11:53:55.000000000 +0200
@@ -38,6 +38,7 @@
"arts",
"Rik Hemsley (rikkus) <rik@kde.org>"...