|
| I have tried the following:
______________________________
_________________
Make a directory to store the alsa source code in.
cd /usr/src
mkdir alsa
cd alsa
cp /downloads/alsa-* .
Now unzip and install the alsa-driver package
bunzip2 alsa-driver-xxx
tar -xf alsa-driver-xxx
cd alsa-driver-xxx
./configure --with-cards=cs4232 --with-sequencer=yes;make;make
install
./snddevices
The snddevices script sets the permissions for the devices it creates to
root. You should
chmod a+rw /dev/dsp /dev/mixer /dev/sequencer /dev/midi
Now unzip and install the alsa-lib package
cd ..
bunzip2 alsa-lib-xxx
tar -xf alsa-lib-xxx
cd alsa-lib-xxx
./configure;make;make install
Now unzip and install the alsa-utils package
cd ..
bunzip2 alsa-utils-xxx
tar -xf alsa-utils-xxx
cd alsa-utils-xxx
./configure;make;make install
______________________________
_________________
but I get an error at the first step
*** [../include/modules/pcm.ver] Error 1
Leaving directory
*** [dep] Error 1
Leaving directory
*** [include/sndversions.h] Error 2
What do I do wrong?
|
|