List Info

Thread: new release imminent, issues ...




new release imminent, issues ...
user name
2006-05-30 22:25:29
Paul Davis:
>
> 	1) TESTING
>
> 	  We need more reports on the code in SVN from more
systems.
> 	  Do your part! Compile, test, send a brief email to
the
> 	  list saying "It works" or "Its
broken".

I did not want to replace my installed jack, so I tried the
following:

svn co http:
//subversion.jackaudio.org/jack/trunk/jack
cd jack
./autogen
./configure --prefix=`pwd`
make

So far so good.
But when I try to run "bin/jackd -d alsa", I get
the following message:

"
could not find any drivers in
/home/kjetil/brenn/jack/lib/jack!

jackd: no drivers found; exiting
"




But its all there, "ls -la
/home/kjetil/brenn/jack/lib/jack/" shows:
"May 30 15:16 jack_alsa"

Playing with LD_CONFIG_PATH and LD_PRELOAD does not help.

Running ldconfig does not help either.

And "ldd -r bin/jackd" shows :
"libjack.0 =>
/home/kjetil/brenn/jack/lib/libjack.0"

So it should work.
Any ideas?




-------------------------------------------------------
All the advantages of Linux Managed Hosting--Without the
Cost and Risk!
Fully trained technicians. The highest number of Red Hat
certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/
sel?cmd=lnk&kid=107521&bid=248729&dat=121642
_______________________________________________
Jackit-devel mailing list
Jackit-devellists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jackit-dev
el
new release imminent, issues ...
user name
2006-05-31 19:07:15
On Tue, 30 May 2006, Kjetil S. Matheussen wrote:

>
> Paul Davis:
>> 
>> 	1) TESTING
>> 
>> 	  We need more reports on the code in SVN from
more systems.
>> 	  Do your part! Compile, test, send a brief email
to the
>> 	  list saying "It works" or "Its
broken".
>
> I did not want to replace my installed jack, so I tried
the following:
>
> svn co http:
//subversion.jackaudio.org/jack/trunk/jack
> cd jack
> ./autogen
> ./configure --prefix=`pwd`
> make
>
> So far so good.
> But when I try to run "bin/jackd -d alsa",
I get the following message:
>
> "
> could not find any drivers in
/home/kjetil/brenn/jack/lib/jack!
>
> jackd: no drivers found; exiting
> "


After investigating, it works after appending
".so" to the files in the 
lib/jack directory. I have never experienced this kind of
bug before.

libtool --version
ltmain.sh (GNU libtool) 1.5.22 (1.1220.2.365 2005/12/18
22:14:06)




-------------------------------------------------------
All the advantages of Linux Managed Hosting--Without the
Cost and Risk!
Fully trained technicians. The highest number of Red Hat
certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/
sel?cmd=lnk&kid=107521&bid=248729&dat=121642
_______________________________________________
Jackit-devel mailing list
Jackit-devellists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jackit-dev
el
new release imminent, issues ...
user name
2006-05-31 20:30:54
On Wednesday 31 May 2006 20:07, Kjetil S. Matheussen wrote:
> On Tue, 30 May 2006, Kjetil S. Matheussen wrote:
> > Paul Davis:
> >> 	1) TESTING
> >>
> >> 	  We need more reports on the code in SVN
from more systems.
> >> 	  Do your part! Compile, test, send a brief
email to the
> >> 	  list saying "It works" or
"Its broken".
> >
> > I did not want to replace my installed jack, so I
tried the following:
> >
> > svn co http:
//subversion.jackaudio.org/jack/trunk/jack
> > cd jack
> > ./autogen
> > ./configure --prefix=`pwd`
> > make
> >
> > So far so good.
> > But when I try to run "bin/jackd -d
alsa", I get the following message:
> >
> > "
> > could not find any drivers in
/home/kjetil/brenn/jack/lib/jack!
> >
> > jackd: no drivers found; exiting
> > "
>
> After investigating, it works after appending
".so" to the files in the
> lib/jack directory. I have never experienced this kind
of bug before.
>
> libtool --version
> ltmain.sh (GNU libtool) 1.5.22 (1.1220.2.365 2005/12/18
22:14:06)

This is not so uncommon, I think you can find lots of hits
with google. 
It's somekind of version mismatch, it should be possible to
remedy with 
autoreconf or something like that.
Some years ago I had a wrestle with this (not about jack)
but don't think I 
ever really figured out what caused it.

Regards,
Robert

-- 
http://spamatica.se/mu
sicsite/


-------------------------------------------------------
All the advantages of Linux Managed Hosting--Without the
Cost and Risk!
Fully trained technicians. The highest number of Red Hat
certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/
sel?cmd=lnk&kid=107521&bid=248729&dat=121642
_______________________________________________
Jackit-devel mailing list
Jackit-devellists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jackit-dev
el
new release imminent, issues ...
user name
2006-05-31 19:12:50
On 5/31/06, Kjetil S. Matheussen <kjetilccrma.stanford.edu> wrote:
> On Tue, 30 May 2006, Kjetil S. Matheussen wrote:
>
> >
> > Paul Davis:
> >>
> >>      1) TESTING
> >>
> >>        We need more reports on the code in SVN
from more systems.
> >>        Do your part! Compile, test, send a
brief email to the
> >>        list saying "It works" or
"Its broken".
> >
> > I did not want to replace my installed jack, so I
tried the following:
> >
> > svn co http:
//subversion.jackaudio.org/jack/trunk/jack
> > cd jack
> > ./autogen
> > ./configure --prefix=`pwd`
> > make
> >
> > So far so good.
> > But when I try to run "bin/jackd -d
alsa", I get the following message:
> >
> > "
> > could not find any drivers in
/home/kjetil/brenn/jack/lib/jack!
> >
> > jackd: no drivers found; exiting
> > "
>
>
> After investigating, it works after appending
".so" to the files in the
> lib/jack directory. I have never experienced this kind
of bug before.

I've never tried to build it that way.  Are you sure this
worked before?

We probably have some subtle problem in our
autoconf/automake
files.
-- 
 joq


_______________________________________________
Jackit-devel mailing list
Jackit-devellists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jackit-dev
el
[1-4]

about | contact  Other archives ( Real Estate discussion Medical topics )