Find the answer to your Linux question:
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 15
I've gotten to the ./configure point, and this is what I get on my terminal- zach@zach:~/Desktop/gtkpod$ ./configure checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... ...
  1. #1
    Just Joined!
    Join Date
    May 2006
    Posts
    12

    Installing .tar.gz file

    I've gotten to the ./configure point, and this is what I get on my terminal-

    zach@zach:~/Desktop/gtkpod$ ./configure
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for gawk... no
    checking for mawk... mawk
    checking whether make sets $(MAKE)... yes
    checking whether to enable maintainer-specific portions of Makefiles... no
    checking build system type... i686-pc-linux-gnulibc1
    checking host system type... i686-pc-linux-gnulibc1
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking for C compiler default output file name...
    configure: error: C compiler cannot create executables
    See `config.log' for more details.
    wut b the problem?

  2. #2
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Is there a reason you want to compile it yourself ?

    "gtkpod" is avalaible from the Ubuntu repositories.

    You can install it like that :
    Code:
    sudo apt-get install gtkpod
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

  3. #3
    Linux Guru bryansmith's Avatar
    Join Date
    Nov 2004
    Location
    /Ontario/Canada
    Posts
    2,621
    Just to build on what antidrugue said, you should check to see if your app is available through apt first - it will make life a lot easier. Use:
    Code:
    apt-cache search <program>
    to search for your program. Make sure to do an
    Code:
    apt-get update
    first.

    Bryan
    Looking for a distro? Look here.
    "There can be no doubt that all our knowledge begins with experience." - Immanuel Kant (Critique of Pure Reason)
    Queen's University - Arts and Science 2008 (Sociology)
    Registered Linux User #386147.

  4. #4

  5. #5
    Just Joined!
    Join Date
    May 2006
    Posts
    12
    Actually I have already used apt-get to install the package, but the version that apt-get installs is version 9.2, the oldest version. The source that I'm trying to install is 9.8, which I'm hoping will work better than the version 9.2, which I'm not too satisfied with.

  6. #6
    Linux Guru bryansmith's Avatar
    Join Date
    Nov 2004
    Location
    /Ontario/Canada
    Posts
    2,621
    Do you have 'build-essential' installed?

    Bryan
    Looking for a distro? Look here.
    "There can be no doubt that all our knowledge begins with experience." - Immanuel Kant (Critique of Pure Reason)
    Queen's University - Arts and Science 2008 (Sociology)
    Registered Linux User #386147.

  7. #7
    Just Joined!
    Join Date
    May 2006
    Posts
    12
    Yup, I just installed it, and now I'm getting this:
    zach@zach:~/Desktop/gtkpod$ ./configure
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for gawk... no
    checking for mawk... mawk
    checking whether make sets $(MAKE)... yes
    checking whether to enable maintainer-specific portions of Makefiles... no
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking for C compiler default output file name... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking for strerror in -lcposix... no
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking dependency style of gcc... (cached) gcc3
    checking for gcc option to accept ANSI C... none needed
    checking for pkg-config... ok
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for PACKAGE... no
    configure: error: *** No package 'gtk+-2.0' found
    No package 'gthread-2.0' found
    No package 'glib-2.0' found
    No package 'libglade-2.0' found
    No package 'gmodule-2.0' found
    No package 'libgpod-1.0' found
    See `config.log' for more details.
    When I got to type make I get this:
    zach@zach:~/Desktop/gtkpod$ make
    make: *** No targets specified and no makefile found. Stop.
    Is this just a problem with the package or am I doing something wrong?

  8. #8
    Linux Engineer Thrillhouse's Avatar
    Join Date
    Jun 2006
    Location
    Arlington, VA, USA
    Posts
    1,377
    You need the gtk+ package. Try:
    sudo apt-get install gtk+

  9. #9
    Linux Engineer Thrillhouse's Avatar
    Join Date
    Jun 2006
    Location
    Arlington, VA, USA
    Posts
    1,377
    Also, here is a list of dependencies for gtk+

    ftp://ftp.gtk.org/pub/gtk/v2.10/dependencies/

  10. #10
    Just Joined!
    Join Date
    May 2006
    Posts
    12
    wow, this is getting really frustrating. I typed this:

    zach@zach:~$ sudo apt-get install gtk+
    and I got this:

    Reading package lists... Done
    Building dependency tree... Done
    E: Couldn't find package gtk
    It says that it couldn't find gtk, not gtk+, which is weird.

Page 1 of 2 1 2 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...