> since the 0.7.0-1 version, it seems that shoutcast support is gone, as > there is only ogg to stream, not mp3?
AFAICT, mp3 streaming requires LAME, which for patent reasons is not and has
never been available in Debian, but is available from
www.debian-multimedia.org. While unlikely, perhaps idjc used some other
library previously?
Last I checked, the LAME package from www.debian-multimedia.org had the
problem that the library wasn't linked with it's dependent libraries, causing
IDJC's configure to fail to see it, unless the following patch is applied:
--- idjc-0.7.0.orig/configure.in
+++ idjc-0.7.0/configure.in
@@ -58,7 +58,8 @@
[AC_SUBST(MP3LAME, [-lmp3lame])
AC_SUBST(HAVE_LAME, 1)
AC_DEFINE(HAVE_LAME, 1, [Set if 1 if libmp3lame was found])],
- AC_SUBST(HAVE_LAME, 0))
+ AC_SUBST(HAVE_LAME, 0),
+ [-lm])
# jack_client_new may become deprecated
AC_CHECK_LIB([jack], [jack_client_new], :, AC_MSG_ERROR("Vital function
missing"))
--
Magnus Holmgren [EMAIL PROTECTED]
(No Cc of list mail needed, thanks)
"Exim is better at being younger, whereas sendmail is better for
Scrabble (50 point bonus for clearing your rack)" -- Dave Evans
signature.asc
Description: This is a digitally signed message part.

