luis4god / darkice

Automatically exported from code.google.com/p/darkice
0 stars 0 forks source link

Instillation instructions not working under Ubuntu 9.10 #16

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. In terminal navigate to directory the file was unzipped to.
2. In terminal type "./configure"
3. In terminal type "make"
4. In terminal type "make install"

These steps are per the instructions included with the package.
I quote from the install document
----------------------------------------------------
"If chosing the default compile options, issue the following commands:

./configure
make
make install
----------------------------------------------------

What is the expected output? What do you see instead?
It appears to be a failure message of some kind when I was expecting some
form of instillation message.

What version of the product are you using? On what operating system?
OS: Ubuntu 9.10
Product: darkice-0.20.1

Please provide any additional information below.
I followed the instructions provided exactly, entered the commands as they
are entered in the instructions. Attached is a printout from the terminal
window.

Original issue reported on code.google.com by BPS...@gmail.com on 19 Mar 2010 at 12:38

Attachments:

GoogleCodeExporter commented 9 years ago
You can install 0.19.1 from the repos

sudo apt-get install darkice

If you want the latest version: 

The problem you have is there is NONE of the encoders you need for darkice to 
work 
to compile, thus it fails.

You need to install the encoders and the dev heders for each via apt-get
like 

sudo apt-get install libmp3lame-dev 
for the LAME dev headers 
you need to do this for each of the libs in the lines:
checking for lame library at /usr ... configure: WARNING: not found, building 
without lame 
checking for vorbis libraries at /usr ... configure: WARNING: not found, 
building 
without Ogg Vorbis 
checking for faac library at /usr ... configure: WARNING: not found, building 
without faac 
checking for aacplus library at /usr ... configure: WARNING: not found, 
building 
without aacplus 
checking for twolame library at /usr ... configure: WARNING: not found, 
building 
without twolame 
configure: error: neither lame, Ogg Vorbis, faac, aac+ nor twolame configured 

You need to get the LIBS **AND** the DEV HEADERS for each package of the 
encoders 
you want to support!

The reason that make and make install fail is that nothing was compiled, so 
there 
is nothing to make or install.

Original comment by rec9...@gmail.com on 22 Mar 2010 at 5:53

GoogleCodeExporter commented 9 years ago
If you need to find the package names run synaptic and do a search on lame, 
aac, 
ogg, etc.. you will get the names.

then 

sudo apt-get install lame libmp3lame0 libmp3lame-dev libtwolame0 libtwolame-dev

This is JUST ONE example to install LAME.

Original comment by rec9...@gmail.com on 22 Mar 2010 at 6:00

GoogleCodeExporter commented 9 years ago
All thank you. I am thus educated. Installing new programs by compiling has been
giving me a lot of trouble.

Original comment by BPS...@gmail.com on 23 Mar 2010 at 2:46

GoogleCodeExporter commented 9 years ago
closing this.

Original comment by rafael2k...@gmail.com on 6 May 2010 at 7:16