Re: [SLUG] Crossword compiler on Ubuntu, the errorfile.

2007-10-05 Thread Martin Visser
Assuming you are getting these packages from a genuine ubuntu repo the short
answer is  enter y instead of n. The long answer is that the GPG key you
have installed for verifying package signing doesn't match the new packages.
You probably should do sudo apt-get update; sudo apt-get install
ubuntu-keyring. And then try the sudo apt-get install build-essential

On 10/4/07, [EMAIL PROTECTED] [EMAIL PROTECTED]  wrote:

 Many thanks for the replies.

 I've run into something else in my quest for a crossword compiler.

 I ted to the internet and tried

 sudo apt-get install build essential

 and attach the log.

 Some of these libraries etc cannot be verified and I face the shame of
 having unverified material on my laptop.

 More advice, please.

 Regards,

 Bill Bennett.
 --
 SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
 Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html




-- 
Regards, Martin

Martin Visser
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Crossword compiler on Ubuntu, the errorfile.

2007-10-03 Thread wbennett
Alright, so I made a berk of myself yet again.

Herewith the error file.

Can anyone offer advice, please?

Regards,

Bill Bennett.


configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working aclocal... missing
checking for working autoconf... missing
checking for working automake... missing
checking for working autoheader... missing
checking for working makeinfo... missing
checking for gcc... gcc
checking for C compiler default output... configure error: C compiler
cannot create executables
---
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Crossword compiler on Ubuntu, the errorfile.

2007-10-03 Thread Peter Hardy
On Wed, 2007-10-03 at 17:05 +1000, [EMAIL PROTECTED] wrote:
 configure
 checking for a BSD-compatible install... /usr/bin/install -c
 checking whether build environment is sane... yes
 checking whether make sets ${MAKE}... yes
 checking for working aclocal... missing
 checking for working autoconf... missing
 checking for working automake... missing
 checking for working autoheader... missing
 checking for working makeinfo... missing
 checking for gcc... gcc
 checking for C compiler default output... configure error: C compiler
 cannot create executables

You've got a C compiler, but no libc6-dev package. If you install the
build-essential package, it'll install that, plus a few other packages
that will be needed.

You'll probably also need other -dev packages for assorted libraries
that your program uses. Hopefully it comes with a README or other file
telling you what it depends on.

-- 
Pete

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Crossword compiler on Ubuntu, the errorfile.

2007-10-03 Thread Martin Visser
Bill,

To start any development on Ubuntu you should as a minimum install sudo
apt-get install build-essential. This installs a vritual package that drags
with it the  most commonly used compilers, libraries and other assorted
utilities (like automake and autoconf) to build programs. gcc by itself can
only compile .c code into .o files, but so you still need libraries,
linkers, etc to create the executable. This is probably the source of the
error. Also check that you haven't inadvertantly used root privilege to
extract your tarball into a directory that only root can write to - you may
need to change ownership of the directory and files to your meer mortal
user.

You may also find later on that other development libraries are missing -
for example if the program needs X, KDE, Gtk etc. You can usually find these
with apt-cache search 'libdoodad.*dev' 

Regards, Martin

On 10/3/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

 Alright, so I made a berk of myself yet again.

 Herewith the error file.

 Can anyone offer advice, please?

 Regards,

 Bill Bennett.

 
 configure
 checking for a BSD-compatible install... /usr/bin/install -c
 checking whether build environment is sane... yes
 checking whether make sets ${MAKE}... yes
 checking for working aclocal... missing
 checking for working autoconf... missing
 checking for working automake... missing
 checking for working autoheader... missing
 checking for working makeinfo... missing
 checking for gcc... gcc
 checking for C compiler default output... configure error: C compiler
 cannot create executables
 ---
 --
 SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
 Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Crossword compiler on Ubuntu, the errorfile.

2007-10-03 Thread wbennett
Many thanks for the replies.

I've run into something else in my quest for a crossword compiler.

I ted to the internet and tried

sudo apt-get install build essential

and attach the log.

Some of these libraries etc cannot be verified and I face the shame of
having unverified material on my laptop.

More advice, please.

Regards,

Bill Bennett.

TheErrors
Description: Binary data
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html