search for: shout_init_connection

Displaying 6 results from an estimated 6 matches for "shout_init_connection".

2004 Aug 06
0
Trouble compiling ices
On Saturday, 23 February 2002 at 00:51, lists@returntonature.com wrote: > Any help would be appreciated, not sure why this isn't compiling: You have an old version of libshout installed. The configure script should probably be updated to check for shout_strerror instead of shout_init_connection, but in the meantime either remove your old libshout (probably in /usr/local) or try compiling with --without-libshout -b > [root@jasmine ices-0.2.2]# ./configure --with-lame > loading cache ./config.cache > Building ices 0.2.2... -- SNIP -- > checking for shout/shout.h... (cached) ye...
2004 Aug 06
2
Trouble compiling ices
...cached) void checking for strftime... (cached) yes checking for vsnprintf... (cached) yes checking for setsid... (cached) yes checking for inet_addr... (cached) yes checking for inet_aton... (cached) yes checking for setlinebuf... (cached) yes checking for shout/shout.h... (cached) yes checking for shout_init_connection in -lshout... (cached) yes checking for lame/lame.h... yes checking for lame_init_old in -lmp3lame... yes checking for lame_encode_flush_nogap in -lmp3lame... yes updating cache ./config.cache checking for vorbis/vorbisfile.h... no Could not find libvorbisfile, vorbis support disabled updating cach...
2004 Aug 06
2
Is the list alive?
And more importantly (for me) - Can I ask question about Shout.pm? <p>Anders Jensen System devel. Cybercity.dk, OSS projektet ---- <erno> hm. I've lost a machine.. literally _lost_. it responds to ping, it works completely, I just can't figure out where in my apartment it is. Sig. provided by www.bash.org --- >8 ---- List archives: http://www.xiph.org/archives/
2004 Aug 06
2
Is the list alive?
...out LDLOADLIBS = -lshout BSLOADLIBS = LD_RUN_PATH = /usr/lib -- It compiles and installs. But it does work - fails when used / tested with : -- [root@b5fie Shout-1.0]# perl test.pl 1..3 ok 1 perl: relocation error: /usr/lib/perl5/site_perl/5.6.1/i386-linux/auto/Shout/Shout.so: undefined symbol: shout_init_connection -- Now I am a programmer, but never been strong in C ;) So can anyone give me a helping hand / point me in the rigth direction? <p>Anders Jensen System devel. Cybercity.dk, OSS projektet ---- <erno> hm. I've lost a machine.. literally _lost_. it responds to ping, it works complet...
2004 Aug 06
2
ices configure script
Hi, I'm having difficulty getting ices 0.2.2 to see my lame install and my perl install. The lame libraries (v3.91) are installed in: /usr/local/lib/ with the header file at: /usr/local/include/lame/lame.h, but when I run: ./configure --with-lame --with-lame-includes=/usr/local/include/lame/ --with-lame-libraries=/usr/local/ it says it can't find the lame libraries. ldconfig seems
2004 Aug 06
4
Adventures with icecast2
...;/logging> </icecast> and here's example.c: #include <stdio.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <shout/shout.h> int main() { shout_conn_t conn; char buff[4096]; long read, ret, total; shout_init_connection(&conn); conn.ip = "129.100.109.31"; conn.port = 9000; conn.password = "audio"; conn.mount = "/test.ogg"; if (shout_connect(&conn)) { printf("Connected to server...\n"); total =...