LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   alsa-utils-1.0.8 fails during Make (https://www.linuxquestions.org/questions/linux-software-2/alsa-utils-1-0-8-fails-during-make-294058/)

aaaantoine 02-23-2005 05:18 PM

alsa-utils-1.0.8 fails during Make
 
Hey guys. Almost finished compiling some Alsa stuff. I encountered an error when attempting to make alsa-utils.

[root@localhost alsa-utils-1.0.8]# make
Making all in include
make[1]: Entering directory `/usr/src/alsa-utils-1.0.8/include'
make all-am
make[2]: Entering directory `/usr/src/alsa-utils-1.0.8/include'
make[2]: Leaving directory `/usr/src/alsa-utils-1.0.8/include'
make[1]: Leaving directory `/usr/src/alsa-utils-1.0.8/include'
Making all in alsactl
make[1]: Entering directory `/usr/src/alsa-utils-1.0.8/alsactl'
if gcc -DHAVE_CONFIG_H -I. -I. -I../include -g -O2 -MT alsactl.o -MD -MP -MF ".deps/alsactl.Tpo" \
-c -o alsactl.o `test -f 'alsactl.c' || echo './'`alsactl.c; \
then mv -f ".deps/alsactl.Tpo" ".deps/alsactl.Po"; \
else rm -f ".deps/alsactl.Tpo"; exit 1; \
fi
gcc -g -O2 -o alsactl alsactl.o -lasound -lm -ldl -lpthread
make[1]: Leaving directory `/usr/src/alsa-utils-1.0.8/alsactl'
Making all in alsaconf
make[1]: Entering directory `/usr/src/alsa-utils-1.0.8/alsaconf'
Making all in po
make[2]: Entering directory `/usr/src/alsa-utils-1.0.8/alsaconf/po'
mv: cannot stat `t-ja.gmo': No such file or directory
make[2]: *** [ja.gmo] Error 1
make[2]: Leaving directory `/usr/src/alsa-utils-1.0.8/alsaconf/po'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/src/alsa-utils-1.0.8/alsaconf'
make: *** [all-recursive] Error 1

What is t-ja.gmo and what should I do from here? I'm compiling this on Mandrakelinux 10.1, powered by kernel 2.6.8.1-12mdk.

Little help? :)

comprookie2000 02-23-2005 05:40 PM

Mandrake didn't come with alsa?

aaaantoine 02-23-2005 07:01 PM

It comes with Alsa 1.0.6, but I have no support for my Audigy 2 Value card. I've been instructed that a newer version of Alsa should have support, so I'm attempting to build that.

ironwalker 02-23-2005 07:10 PM

Does mandrake have stable testing unstable repositories like gentoo or debian?

aaaantoine 02-23-2005 07:28 PM

Yeah, I think I know what you're talking about.

The Sound Blaster Audigy 2 Value (SB0400) isn't listed on that at all. In fact, rarely is the Audigy 2 Value ever mentioned. (I didn't choose the card with Linux in mind, as it was purchased and installed before I ever migrated.)

voyciz 03-03-2005 05:19 PM

aaaantoine, read the INSTALL file in the alsa-utils source directory. You don't need to run "make", just "configure" and "make install".

aaaantoine 03-04-2005 07:12 PM

Thanks!

I tried it, but it still complains about "t-ja.gmo"...

Code:

Making install in include
make[1]: Entering directory `/home/anthony/alsa-utils-1.0.8/include'
make[2]: Entering directory `/home/anthony/alsa-utils-1.0.8/include'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/home/anthony/alsa-utils-1.0.8/include'
make[1]: Leaving directory `/home/anthony/alsa-utils-1.0.8/include'
Making install in alsactl
make[1]: Entering directory `/home/anthony/alsa-utils-1.0.8/alsactl'
if gcc -DHAVE_CONFIG_H -I. -I. -I../include    -g -O2 -MT alsactl.o -MD -MP -MF ".deps/alsactl.Tpo" \
  -c -o alsactl.o `test -f 'alsactl.c' || echo './'`alsactl.c; \
then mv -f ".deps/alsactl.Tpo" ".deps/alsactl.Po"; \
else rm -f ".deps/alsactl.Tpo"; exit 1; \
fi
gcc  -g -O2  -o alsactl  alsactl.o  -lasound -lm -ldl -lpthread
make[2]: Entering directory `/home/anthony/alsa-utils-1.0.8/alsactl'
/bin/sh ../mkinstalldirs /usr/sbin
  /usr/bin/install -c alsactl /usr/sbin/alsactl
/bin/sh ../mkinstalldirs /usr/man/man1
mkdir -p -- /usr/man/man1
 /usr/bin/install -c -m 644 ./alsactl.1 /usr/man/man1/alsactl.1
make[2]: Leaving directory `/home/anthony/alsa-utils-1.0.8/alsactl'
make[1]: Leaving directory `/home/anthony/alsa-utils-1.0.8/alsactl'
Making install in alsaconf
make[1]: Entering directory `/home/anthony/alsa-utils-1.0.8/alsaconf'
Making install in po
make[2]: Entering directory `/home/anthony/alsa-utils-1.0.8/alsaconf/po'
mv: cannot stat `t-ja.gmo': No such file or directory
make[2]: *** [ja.gmo] Error 1
make[2]: Leaving directory `/home/anthony/alsa-utils-1.0.8/alsaconf/po'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/home/anthony/alsa-utils-1.0.8/alsaconf'
make: *** [install-recursive] Error 1


lgringo 03-05-2005 03:57 AM

install gettext (urpmi gettext) et ça passe tout seul

voyciz 03-06-2005 10:02 AM

Nah, you don't need gettext, I don't have it either. Try "make clean", and then "make install" again.

aaaantoine 03-07-2005 08:52 PM

Tried both suggestions.

Tried "make clean" followed by "make install". Same error.

I then installed gettext. "urpmi gettext" and then "make clean" and "make install". Still didn't work.

So do any other Mandrake users have this much trouble updating software or do I just have incredibly bad luck? :scratch:

voyciz 03-08-2005 07:47 AM

That's odd, don't know why it's not working. I was having the same problem, but then I read the INSTALL file and skipped the compilation step and then it worked great...

EDIT: I don't know if this'll make a difference, but try "make clean", and then run the configure script again and retry "make install".

neotinker 03-20-2005 06:19 AM

Actually, I think you do need to install gettext. I'm running mdk10.1 and I had the same problem untill I installed gettext, gettext-devel, and a few more gettext related rpms. I don't remember exactly which anymore but I'm sure you can figure it out.

R.

neotinker 03-20-2005 06:25 AM

Ok, I looked it up. I installed: gettext, gettext-devel, glib-gettextize, and libgettextmisc.

when I installed these running "./configure && make install" worked on mdk10.1

R.

allismac 07-02-2007 08:06 AM

Ubuntu solved problem
 
On Ubuntu Feisty Fawn, I've installed "gettext" and "ja-trans" packages, then this problem has solved !

Thirteenth Zodiac 07-22-2007 11:27 AM

Quote:

On Ubuntu Feisty Fawn, I've installed "gettext" and "ja-trans" packages, then this problem has solved !
I can confirm this. Tried installing, didn't work. Installed both these packages from the Synaptic, then ran the Make Clean, ./configure, and make install. Et voilà!

Thanks for posting this, allismac. :)

vesperatus 02-25-2008 07:33 AM

Resuscitating an old thread but I stumbled on the same issue while compiling alsa 1.0.16 on mandriva 2008

I managed to clear this error by using a flag in the configure :

./configure --disable-nls
make
make install



Hope I helped someone.


All times are GMT -5. The time now is 09:45 AM.