Hi: OK, first, disclaimer. Iv'e never used or compiled ices 0.2.2. Accordingly, any or all of what I'm about to say may be incorrect. However, I'm sure I'll be corrected if any of it's wrong. I looked at the output of ./configure and make. Assuming there were no actual errors in the make process (none were printed, but errors go to stderr), I think your problem is that not all the build instructions are being executed. If you look at the make out put, you'll see make enter a number of directories and do nothing. The reason for this is probably to be found near the top of ./configure: checking for working aclocal... missing checking for working autoconf... missing checking for working automake... missing checking for working autoheader... missing checking for working makeinfo... missing aclocal and automake are part of the automake package, and autoconf and autoheader are in the autoconf package. I presume these are needed to compile ices. Even if they're not, many many programs need these 2 packages, so it's a good idea to install them. I don't appear to have makeinfo either, so I can't tell you what package that's in. While looking over the ./configure output, I also noticed these: checking for lame/lame.h... (cached) no checking for lame.h... (cached) no Could not find a valid LAME library, reencoding disabled Vorbis is disabled because LAME is not enabled checking for perl_construct... (cached) yes checking for Python.h... (cached) no Could not find the python library, python scripting disabled checking for xml2-config... no checking for xml-config... no Compiling without libxml support - no configfiles this would indicate that even if you could get ices to build, it would be very limited in some of its functionality. You will want LAME installed if you want to re-encode to other bitrates. You will also want LAME installed, along withe the ogg and Vorbis libraries, if you want to be able to use Ogg Vorbis files to source your stream. The XML lib is presumably used for parsing XML configuration files. The python library is only an issue if you wish to script in python. Note that if you wish to use RPM's of these packages that ices is looking for, you will need the devel packages installed. One more thing. After you sort all this out and are ready to compile, I highly recommend doing the following from the ices directory: make clean rm config.cache Then go on to do ./configure as before. This will ensure that bits of your previous compiles aren't lying around. Hope this helps. Geoff. <p> -- Geoff Shang <gshang@uq.net.au> ICQ number 43634701 Please avoid sending me Word or PowerPoint attachments. See http://www.fsf.org/philosophy/no-word-attachments.html <p><p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
Wade Carroll wrote:> Here's the output from 'configure', 'make', and 'make install', as best I > could capture it.What errors do you get? To redirect make's stderr output into a file, do something like gmake 2> mkerr.out Doing this without the '2' redirects only stdout, which is not where error messages go. <p>Moritz --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
thanks Geoff. I was going to spare everyone the details and continue my search but I sincerely appreciate the help. Here's the output from 'configure', 'make', and 'make install', as best I could capture it. I'm not editing any of the make files or using any flags. This is the latest version if ices that is on icecast.org. It appears that libshout came with the tar file. Again, icecast itself seems to be working properly as the configure, make, make install resulted in binaries. I'm using mandrake 8.2. Wade -----Original Message----- From: owner-icecast@xiph.org [mailto:owner-icecast@xiph.org]On Behalf Of Geoff Shang Sent: Monday, April 15, 2002 10:49 PM To: icecast@xiph.org Subject: Re: [icecast] ices - unable to compile <p>Hi: Well, you'll definitely need libshout. We can't really help you much further unless you tell us the error message you're getting. Geoff. <p> -- Geoff Shang <gshang@uq.net.au> ICQ number 43634701 Please avoid sending me Word or PowerPoint attachments. See http://www.fsf.org/philosophy/no-word-attachments.html <p><p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered. -------------- next part -------------- A non-text attachment was scrubbed... Name: config.out Type: application/octet-stream Size: 8311 bytes Desc: config.out Url : http://lists.xiph.org/pipermail/icecast/attachments/20020416/0a9327dc/config.obj -------------- next part -------------- A non-text attachment was scrubbed... Name: make.out Type: application/octet-stream Size: 4609 bytes Desc: make.out Url : http://lists.xiph.org/pipermail/icecast/attachments/20020416/0a9327dc/make.obj -------------- next part -------------- A non-text attachment was scrubbed... Name: mkinstall.out Type: application/octet-stream Size: 6421 bytes Desc: mkinstall.out Url : http://lists.xiph.org/pipermail/icecast/attachments/20020416/0a9327dc/mkinstall.obj -------------- next part -------------- A non-text attachment was scrubbed... Name: ls.out Type: application/octet-stream Size: 449 bytes Desc: ls.out Url : http://lists.xiph.org/pipermail/icecast/attachments/20020416/0a9327dc/ls.obj
On Tuesday, 16 April 2002 at 06:50, Wade Carroll wrote:> thanks Geoff. I was going to spare everyone the details and continue my > search but I sincerely appreciate the help. > > Here's the output from 'configure', 'make', and 'make install', as best I > could capture it. > > I'm not editing any of the make files or using any flags.It's hard to tell what went wrong from the make output (many lines seem to be missing), but my guess is you don't have the perl dev files installed. If you don't need perl scripting, configure --without-perl. Otherwise, you'll have to pick up the perl dev package. -b --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
Thanks...this seems to have gotten me over the compiling "hump". I get this when I run the ices binary: ./ices: error while loading shared libraries: libshout.so.1: cannot open shared object file: No such file or directory Are there some path settings that I need ? -----Original Message----- From: owner-icecast@xiph.org [mailto:owner-icecast@xiph.org]On Behalf Of Brendan Cully Sent: Tuesday, April 16, 2002 11:37 AM To: icecast@xiph.org Subject: Re: [icecast] ices - unable to compile <p>On Tuesday, 16 April 2002 at 06:50, Wade Carroll wrote:> thanks Geoff. I was going to spare everyone the details and continue my > search but I sincerely appreciate the help. > > Here's the output from 'configure', 'make', and 'make install', as best I > could capture it. > > I'm not editing any of the make files or using any flags.It's hard to tell what went wrong from the make output (many lines seem to be missing), but my guess is you don't have the perl dev files installed. If you don't need perl scripting, configure --without-perl. Otherwise, you'll have to pick up the perl dev package. -b --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered. <p><p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.