Re: [Alsa-devel] alsa-utils cvscompile

2003-09-25 Thread Takashi Iwai
At Thu, 25 Sep 2003 06:00:10 +0300,
Andrei Boros wrote:
 
 Takashi Iwai wrote:
  
  hmm, check whether depcomp file at the top directory is empty.
  if so, try to remove depcomp.
  it must come from automake, but the combination of the old automake
  and the new libtool can be problematic.
 
 removed an empty depcomp and problem solved. Thanks.
 
 
  anyway, the best way would be to upgrade (or even downgrade) the all
  GNU auto-tools to the sane combination.  i'm not sure which version
  combinations are correct, though.
  
  upgrading them to the latest version would be fine for ALSA, but it
  might not work on others occasionally.  sigh.
 
 I don't know, I just upgraded severla weeks ago the compiler, gnu auto*,
 libtool, make to the versions required to compile glibc-2.2.5, so they
 are all pretty new.

well... it's not so new nowadays :)
on my system:

% automake --version
automake (GNU automake) 1.7.6

% autoconf --version
autoconf (GNU Autoconf) 2.57

% libtool --version
ltmain.sh (GNU libtool) 1.5 (1.1220.2.1 2003/04/14 22:48:00)


IIRC, at least, the libtool 1.4.x is problematic for creating
versioned symbols.  (we have workarounds, but not perfect.)


Takashi


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Alsa-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-devel


Re: [Alsa-devel] alsa-utils cvscompile

2003-09-24 Thread Andrei Boros
Takashi Iwai wrote:

  source='alsactl.c' object='alsactl.o' libtool=no \
  depfile='.deps/alsactl.Po' tmpdepfile='.deps/alsactl.TPo' \
  depmode=none /bin/sh ../depcomp \
  gcc -DHAVE_CONFIG_H -I. -I. -I../include -O2 -Wall -pipe -g -c `test
  -f alsactl.c || echo './'`alsactl.c
  gcc  -O2 -Wall -pipe -g   -o alsactl  alsactl.o  -lasound -lm -ldl
  -lpthread
  gcc: alsactl.o: No such file or directory
 
 do you have really alsactl.c?
 or, any system error such as no diskt space, etc?
 
 anyway i don't see any errors in the alsa-utils side.

gate:~/install/alsa-cvs/alsa-utils/alsactl# pwd
/root/install/alsa-cvs/alsa-utils/alsactl
gate:~/install/alsa-cvs/alsa-utils/alsactl# ls -l
total 72
drwxr-xr-x   2 root root 4096 Aug  6 13:45 CVS
-rw-r--r--   1 root root 9983 Sep 22 12:11 Makefile
-rw-r--r--   1 root root   89 Nov  6  2001 Makefile.am
-rw-r--r--   1 root root10258 Sep 22 12:11 Makefile.in
-rw-r--r--   1 root root 2061 Sep  6  2002 alsactl.1
-rw-r--r--   1 root root34727 Jun 20 21:13 alsactl.c
gate:~/install/alsa-cvs/alsa-utils/alsactl#

and 197M free space.

-- 
ing. Andrei Boros
mailto:[EMAIL PROTECTED] / +40-21-303-1870
Centrul pt. Tehnologia Informatiei
Societatea Romana de Radiodifuziune


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Alsa-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-devel


Re: [Alsa-devel] alsa-utils cvscompile

2003-09-24 Thread Takashi Iwai
At Wed, 24 Sep 2003 14:25:53 +0300,
Andrei Boros wrote:
 
 Takashi Iwai wrote:
 
   source='alsactl.c' object='alsactl.o' libtool=no \
   depfile='.deps/alsactl.Po' tmpdepfile='.deps/alsactl.TPo' \
   depmode=none /bin/sh ../depcomp \
   gcc -DHAVE_CONFIG_H -I. -I. -I../include -O2 -Wall -pipe -g -c `test
   -f alsactl.c || echo './'`alsactl.c
   gcc  -O2 -Wall -pipe -g   -o alsactl  alsactl.o  -lasound -lm -ldl
   -lpthread
   gcc: alsactl.o: No such file or directory
  
  do you have really alsactl.c?
  or, any system error such as no diskt space, etc?
  
  anyway i don't see any errors in the alsa-utils side.
 
 gate:~/install/alsa-cvs/alsa-utils/alsactl# pwd
 /root/install/alsa-cvs/alsa-utils/alsactl
 gate:~/install/alsa-cvs/alsa-utils/alsactl# ls -l
 total 72
 drwxr-xr-x   2 root root 4096 Aug  6 13:45 CVS
 -rw-r--r--   1 root root 9983 Sep 22 12:11 Makefile
 -rw-r--r--   1 root root   89 Nov  6  2001 Makefile.am
 -rw-r--r--   1 root root10258 Sep 22 12:11 Makefile.in
 -rw-r--r--   1 root root 2061 Sep  6  2002 alsactl.1
 -rw-r--r--   1 root root34727 Jun 20 21:13 alsactl.c
 gate:~/install/alsa-cvs/alsa-utils/alsactl#
 
 and 197M free space.

hmm, check whether depcomp file at the top directory is empty.
if so, try to remove depcomp.
it must come from automake, but the combination of the old automake
and the new libtool can be problematic.

anyway, the best way would be to upgrade (or even downgrade) the all
GNU auto-tools to the sane combination.  i'm not sure which version
combinations are correct, though.

upgrading them to the latest version would be fine for ALSA, but it
might not work on others occasionally.  sigh.


Takashi


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Alsa-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-devel


Re: [Alsa-devel] alsa-utils cvscompile

2003-09-24 Thread Andrei Boros
Takashi Iwai wrote:
 
 hmm, check whether depcomp file at the top directory is empty.
 if so, try to remove depcomp.
 it must come from automake, but the combination of the old automake
 and the new libtool can be problematic.

removed an empty depcomp and problem solved. Thanks.


 anyway, the best way would be to upgrade (or even downgrade) the all
 GNU auto-tools to the sane combination.  i'm not sure which version
 combinations are correct, though.
 
 upgrading them to the latest version would be fine for ALSA, but it
 might not work on others occasionally.  sigh.

I don't know, I just upgraded severla weeks ago the compiler, gnu auto*,
libtool, make to the versions required to compile glibc-2.2.5, so they
are all pretty new.
It is true, however, that I downloaded the cvs tree few months ago, and
only did updates from then on, attempting to make it work.

-- 
ing. Andrei Boros
mailto:[EMAIL PROTECTED] / +40-21-303-1870
Centrul pt. Tehnologia Informatiei
Societatea Romana de Radiodifuziune


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Alsa-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-devel


Re: [Alsa-devel] alsa-utils cvscompile

2003-09-23 Thread Takashi Iwai
At Mon, 22 Sep 2003 12:13:05 +0300,
Andrei Boros wrote:
 
  
  alsa-utils fails to compile to compile with the following :
 
 make  all-am
 make[2]: Entering directory `/serve/install/alsa-cvs/alsa-utils/include'
 make[2]: Leaving directory `/serve/install/alsa-cvs/alsa-utils/include'
 make[1]: Leaving directory `/serve/install/alsa-cvs/alsa-utils/include'
 Making all in alsactl
 make[1]: Entering directory `/serve/install/alsa-cvs/alsa-utils/alsactl'
 source='alsactl.c' object='alsactl.o' libtool=no \
 depfile='.deps/alsactl.Po' tmpdepfile='.deps/alsactl.TPo' \
 depmode=none /bin/sh ../depcomp \
 gcc -DHAVE_CONFIG_H -I. -I. -I../include -O2 -Wall -pipe -g -c `test
 -f alsactl.c || echo './'`alsactl.c
 gcc  -O2 -Wall -pipe -g   -o alsactl  alsactl.o  -lasound -lm -ldl
 -lpthread
 gcc: alsactl.o: No such file or directory

do you have really alsactl.c?
or, any system error such as no diskt space, etc?

anyway i don't see any errors in the alsa-utils side.


Takashi


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Alsa-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-devel


[Alsa-devel] alsa-utils cvscompile

2003-09-22 Thread Andrei Boros
 
 alsa-utils fails to compile to compile with the following :

make  all-am
make[2]: Entering directory `/serve/install/alsa-cvs/alsa-utils/include'
make[2]: Leaving directory `/serve/install/alsa-cvs/alsa-utils/include'
make[1]: Leaving directory `/serve/install/alsa-cvs/alsa-utils/include'
Making all in alsactl
make[1]: Entering directory `/serve/install/alsa-cvs/alsa-utils/alsactl'
source='alsactl.c' object='alsactl.o' libtool=no \
depfile='.deps/alsactl.Po' tmpdepfile='.deps/alsactl.TPo' \
depmode=none /bin/sh ../depcomp \
gcc -DHAVE_CONFIG_H -I. -I. -I../include -O2 -Wall -pipe -g -c `test
-f alsactl.c || echo './'`alsactl.c
gcc  -O2 -Wall -pipe -g   -o alsactl  alsactl.o  -lasound -lm -ldl
-lpthread
gcc: alsactl.o: No such file or directory
make[1]: *** [alsactl] Error 1
make[1]: Leaving directory `/serve/install/alsa-cvs/alsa-utils/alsactl'
make: *** [all-recursive] Error 1



-- 
ing. Andrei Boros
mailto:[EMAIL PROTECTED] / +40-21-303-1870
Centrul pt. Tehnologia Informatiei
Societatea Romana de Radiodifuziune


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Alsa-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-devel