Hello! I can't compile IceS 0.2.3 with Python 2.2 (X86, Red Hat Linux 7.3) ===================================[root at radio ices-0.2.3]# ./configure --with-lame --with-python=/usr/bin --with-python-includes=/usr/include/python2.2 --with-python-libraries=/usr/lib/python2.2 =================================== Configure script tell me: ===================================<....> checking for Python.h... yes checking for Py_Initialize in -lpython... no checking for Py_Initialize in -lpython2.2... no checking for Py_Initialize in -lpython2.1... no checking for Py_Initialize in -lpython2.0... no checking for Py_Initialize in -lpython1.6... no checking for Py_Initialize in -lpython1.5... no configure: error: Could not find the python library [root at radio ices-0.2.3]# ================================== Any suggestions? P.S. Please, help me. ATT: I'm novice in *nix. --- >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 at xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
no name wrote:> ===================================> [root at radio ices-0.2.3]# ./configure --with-lame > --with-python=/usr/bin > --with-python-includes=/usr/include/python2.2 > --with-python-libraries=/usr/lib/python2.2 > ===================================Try --with-python=/usr The other python related parameters shouldn't be necessary then. Also, never run any configure scripts as root, for your system's safety. Only do necessary stuff, e.g. `make install` as root. <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 at xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
On Monday, 02 September 2002 at 03:01, no name wrote:> Hello! > > I can't compile IceS 0.2.3 with Python 2.2 (X86, Red Hat > Linux 7.3) > > ===================================> [root at radio ices-0.2.3]# ./configure --with-lame > --with-python=/usr/bin > --with-python-includes=/usr/include/python2.2 > --with-python-libraries=/usr/lib/python2.2 > ===================================> > Configure script tell me: > > ===================================> <....> > checking for Python.h... yes > checking for Py_Initialize in -lpython... no > checking for Py_Initialize in -lpython2.2... no > checking for Py_Initialize in -lpython2.1... no > checking for Py_Initialize in -lpython2.0... no > checking for Py_Initialize in -lpython1.6... no > checking for Py_Initialize in -lpython1.5... no > configure: error: Could not find the python library > [root at radio ices-0.2.3]# > ==================================> > Any suggestions?Leave out the --with-python-libraries line. The libraries are probably in /usr/lib, not /usr/lib/python2.2. That is, if you've made sure to install the python-devel rpm. -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 at xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
The problem is solved (specific for Red Hat 7.3??) 1. adding to begin "configure" script: LIBS="-lutil -lpthread" 2. use: --with-python-libraries=/usr/lib/python2.2/config A.M.> > I can't compile IceS 0.2.3 with Python 2.2 (X86, Red Hat > Linux 7.3) > > ===================================> [root@radio ices-0.2.3]# ./configure --with-lame > --with-python=/usr/bin > --with-python-includes=/usr/include/python2.2 > --with-python-libraries=/usr/lib/python2.2 > ===================================> > Configure script tell me: > > ===================================> <....> > checking for Python.h... yes > checking for Py_Initialize in -lpython... no > checking for Py_Initialize in -lpython2.2... no > checking for Py_Initialize in -lpython2.1... no > checking for Py_Initialize in -lpython2.0... no > checking for Py_Initialize in -lpython1.6... no > checking for Py_Initialize in -lpython1.5... no > configure: error: Could not find the python library > [root@radio ices-0.2.3]# > ==================================> > Any suggestions? > > P.S. Please, help me. > ATT: I'm novice in *nix. > --- >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.--- >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.
Hello! Can IceS stream multiple streams with various bitrate? I use three blocks <stream> .... </stream> with various bitrate settings (24, 56, 128) in etc/ices.conf for three icecast ports. but xmms tell me 24kbps on every port... (icecast 'sources' terminal command tell me about three source bitarate: 24/56/128) What's wrong? A.M. <p><p><p><p><p><p><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.
> Leave out the --with-python-libraries line. The libraries are probably > in /usr/lib, not /usr/lib/python2.2. That is, if you've made sure to > install the python-devel rpm.Python and python-devel installed correctly.... I tried without --with-python-libraries line; with --with-python-libraries= /usr/lib; --with-python=/usr; --with-python=/usr/bin; --with-python; etc with Python 1.5; Python 2.2. The result is the same:> > ===================================> > <....> > > checking for Python.h... yes > > checking for Py_Initialize in -lpython... no > > checking for Py_Initialize in -lpython2.2... no > > checking for Py_Initialize in -lpython2.1... no > > checking for Py_Initialize in -lpython2.0... no > > checking for Py_Initialize in -lpython1.6... no > > checking for Py_Initialize in -lpython1.5... no > > configure: error: Could not find the python library > > [root@radio ices-0.2.3]# > > ==================================>or ===============Phyton.h... no =============== without --with-python-includes=/usr/includes/python2.2 <p>Yours, Alex. --- >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.