Results 11 to 15 of 15
Originally Posted by zmzach
It says that it couldn't find gtk, not gtk+, which is weird.
Code:
sudo apt-get install libgtk2.0-dev
is probably what you need then....
- 10-24-2006 #11
Originally Posted by zmzach is probably what you need then.Code:sudo apt-get install libgtk2.0-dev
"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
- 10-25-2006 #12Just Joined!
- Join Date
- May 2006
- Posts
- 12
Things have changed, but obviously not for the better. I installed libglade 2.0 with synaptic package monitor, but it still asks for it.zach@zach:~/Desktop/gtkpod-0.99.8$ sudo ./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 'libglade-2.0' found
Requested 'libgpod-1.0 >= 0.4.0' but version of libgpod is 0.3.2
See `config.log' for more details.
zach@zach:~/Desktop/gtkpod-0.99.8$ sudo more
usage: more [-dflpcsu] [+linenum | +/pattern] name1 name2 ...
And I'm not sure what to type for the command more.
Thanks for sticking by me, I'm about to put a fist through my screen!
- 10-25-2006 #13
You also need libgpod >= 0.4.0 but you only have 0.3.2 installed.
The more command will display the text file on your screen. So, more config.log will output config.log to your terminal window.
BryanLooking 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.
- 10-25-2006 #14
Does running
give you the more current version of libgpod? or libglade? After that, try$sudo apt-get upgrade
$which libgpod
$which libglade
- 10-25-2006 #15Since you are compiling, whenever the compiler complains about something, it wants the development libraries for it.
Originally Posted by zmzach
So "libglade2-dev" is what your want, as "libglade2-0" is of no use to the compiler (it doesn't contain header files).
So
will take you one step further.Code:sudo apt-get libglade2-dev
"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


Reply With Quote