Alright, so I got libgpod3 installed, finally! However, it isn't seen by my system.

alex@alex-laptop:~/Desktop$ whereis libgpod3
libgpod3:

However:

alex@alex-laptop:~/Desktop$ ls /usr/lib/libgpo*
/usr/lib/libgpod.so.3  /usr/lib/libgpod.so.3.0.0

And, when trying to install gtkpod from source, I get the error:

checking for LIBGPOD... no
configure: error: *** No package 'libgpod-1.0' found
See `config.log' for more details.

Is there some symbolic or hard link I can make to get this to work? Thanks in advance.

-- Alex

Recommended Answers

All 25 Replies

Libraries aren't executable in the same way that binaries are; really, they're just object files containing a few useful structures and routines that can be used by other software. As such, there is no reason to add library directories to the PATH variable, instead, they're usually added to LD_LIBRARY_PATH and LD_RUN_PATH.

The thing that makes me suspicious is the error message: "No package 'libgpod-1.0' found". Apparently it's looking for libgpod-1.0, while you've installed libgpod 3. I don't know anything about libgpod, but it could be that it's looking for a different version of the library.

The first thing I'd recommend doing is making sure you have the generic name of the library (in this case, simply libgpod.so). So what you need to do is make a symbolic link from /usr/lib/libgpod.so.3 to /usr/lib/libgpod.so:

ln -s /usr/lib/libgpod.so.3 /usr/lib/libgpod.so

If that doesn't work, I'd say it requires libgpod version 1.

Still, same error. But that's odd, because I've used gtkpod with libgpod3 before.

Also, Amarok can't compile with libgpod3 either. It doesn't pass through the configure script. It completely ignores --with-libgpod, like it isn't even there.

Hmm. What is the output from the following commands?

$ find / -name "libgpod*.pc"
$ echo $PKG_CONFIG_PATH
alex@alex-laptop:~$ sudo !!
sudo find / -name "libgpod*.pc"
[sudo] password for alex:
/home/alex/Apps/Source/Applications/libgpod-0.6.0/libgpod-1.0.pc
/home/alex/Apps/Source/Applications/gtkpod_svn/gtkpod/libgpod/trunk/libgpod-1.0.pc
alex@alex-laptop:~$
alex@alex-laptop:~$ echo $PKG_CONFIG_PATH

alex@alex-laptop:~$

And what does your config.log look like? You don't have to post the whole thing if it's long, but post anything that looks suspicious and any error messages.

I'll upload it. This is from the libgpod install.

Sorry, I meant the config.log from the gtkpod compilation attempt.

Okay. Attached.

EDIT: But wait. I was running autogen.sh, not configure.

>But wait. I was running autogen.sh, not configure.
autogen.sh is a script that uses the autoconf/automake tools to first generate a configure script, after which it calls the configure script.

The critical part from the config.log file is here:

configure:6268: checking for LIBGPOD
configure:6276: $PKG_CONFIG --exists --print-errors "libgpod-1.0 >= 0.6.0"
Package libgpod-1.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libgpod-1.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libgpod-1.0' found

For some reason, the libgpod install script didn't install the libgpod-1.0.pc file (as it's clearly present in the source you downloaded). What you should probably do is find your pkg-config directory (usually /usr/local/lib/pkg-config or /usr/lib/pkg-config, try searching around), then set your PKG_CONFIG_PATH environment variable to that directory. Then try running autogen.sh again.

/usr/lib/pkgconfig is mine. Now, what do I do to set that?

/usr/lib/pkgconfig is mine. Now, what do I do to set that?

Copy the libgpod-1.0.pc file into that directory:

$ sudo cp /home/alex/Apps/Source/Applications/libgpod-0.6.0/libgpod-1.0.pc \
/usr/lib/pkgconfig

Now just to be sure, set your environment variable:

export PKG_CONFIG_PATH=/usr/lib/pkgconfig

Now try again.

alex@alex-laptop:~$ export PKG_CONFIG_PATH = /usr/lib/pkgconfig
bash: export: `=': not a valid identifier
bash: export: `/usr/lib/pkgconfig': not a valid identifier

Sorry, I was distracted when writing the post. :P It should be

export PKG_CONFIG_PATH=/usr/lib/pkgconfig

That worked, kinda. It passed autogen, but now, make errors (sorry, this is LONG):

alex@alex-laptop:~$ export PKG_CONFIG_PATH=/usr/lib/pkgconfig
alex@alex-laptop:~$ cd Apps/Source/gtkpod-0.99.12/
alex@alex-laptop:~/Apps/Source/gtkpod-0.99.12$ ls
aclocal.m4      config.sub    intltool-extract.in  po
AUTHORS         configure     intltool-merge.in    README
autogen.sh      configure.in  intltool-update.in   scripts
autom4te.cache  COPYING       Makefile.am          src
ChangeLog       data          Makefile.in          TODOandBUGS.txt
config.guess    depcomp       missing              TROUBLESHOOTING
config.h.in     INSTALL       mkinstalldirs        ylwrap
config.log      install-sh    NEWS
alex@alex-laptop:~/Apps/Source/gtkpod-0.99.12$ ./autogen.sh 
**Warning**: I am going to run `configure' with no arguments.
If you wish to pass any to it, please specify them on the
`./autogen.sh' command line.

processing .
Creating ./aclocal.m4 ...
Running glib-gettextize...  Ignore non-fatal messages.
Copying file mkinstalldirs
Copying file po/Makefile.in.in

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
from the /aclocal directory to your autoconf macro directory
or directly to your aclocal.m4 file.
You will also need config.guess and config.sub, which you can get from
ftp://ftp.gnu.org/pub/gnu/config/.

Making ./aclocal.m4 writable ...
Running intltoolize...
Running aclocal  ...
/usr/share/aclocal/soundtouch.m4:29: warning: underquoted definition of AM_PATH_SOUNDTOUCH
/usr/share/aclocal/soundtouch.m4:29:   run info '(automake)Extending aclocal'
/usr/share/aclocal/soundtouch.m4:29:   or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
Running autoheader...
Running automake --gnu  ...
Running autoconf ...
Running ./configure --enable-maintainer-mode ...
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
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 library containing strerror... none required
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... (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 intltool >= 0.33... 0.36.2 found
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for GTK... yes
checking for GLIB... yes
checking for GMODULE... yes
checking for GTHREAD... yes
checking for LIBGLADE... yes
checking for LIBGNOMECANVAS... yes
checking for LIBGPOD... yes
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... -lfl
checking whether yytext is a pointer... yes
checking for mount... /bin/mount
checking for umount... /bin/umount
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for catalogs to be installed...  de es fr he it ja ru ro sv
checking for getopt_long_only... yes
checking for getopt_long_only... (cached) yes
checking for flock... yes
checking for statvfs... yes
checking for library containing id3_frame_field... -lid3tag
checking for CURL... no
checking for GNOME_VFS... yes
checking for HAL... yes
checking for library containing MP4GetMetadataGrouping... no
checking for library containing ov_open... -lvorbisfile
checking vorbis/vorbisfile.h usability... yes
checking vorbis/vorbisfile.h presence... yes
checking for vorbis/vorbisfile.h... yes
checking for library containing FLAC__metadata_get_streaminfo... -lFLAC
checking FLAC/metadata.h usability... yes
checking FLAC/metadata.h presence... yes
checking for FLAC/metadata.h... yes
checking for library containing bind... none required
checking linux/cdrom.h usability... yes
checking linux/cdrom.h presence... yes
checking for linux/cdrom.h... yes
checking scsi/sg.h usability... yes
checking scsi/sg.h presence... yes
checking for scsi/sg.h... yes
checking scsi/scsi.h usability... yes
checking scsi/scsi.h presence... yes
checking for scsi/scsi.h... yes
checking scsi/scsi_ioctl.h usability... yes
checking scsi/scsi_ioctl.h presence... yes
checking for scsi/scsi_ioctl.h... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating po/Makefile.in
config.status: creating scripts/Makefile
config.status: creating data/Makefile
config.status: creating data/icons/Makefile
config.status: creating data/icons/32x32/Makefile
config.status: creating data/icons/48x48/Makefile
config.status: creating data/icons/64x64/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing intltool commands
config.status: executing default-1 commands
config.status: executing po/stamp-it commands

Configuration for gtkpod 0.99.12 :
--------------------------------

 Host System Type .....: i686-pc-linux-gnu
 Install path .........: /usr/local
 GTK2 version .........: 2.12.0
 GLib2/GThread version : 2.14.1
 gnome-vfs.............: yes -- will build with automount support
 hal...................: yes -- will build with HAL support
 libcurl ..............: *no -- will build without coverart download support
 mp4v2 ................: *no -- will build without aac support
 vorbisfile ...........: yes -- will build with ogg support
 FLAC .................: yes -- will build with FLAC support
 Preprocessor .........: gcc  -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include  
 Compiler .............: gcc -g -O2 -Wall -Wno-pointer-sign -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/libgnomecanvas-2.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/libart-2.0 -I/usr/include/gtk-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12   -I/usr/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include  
 Linker ...............: gcc  -lFLAC -lvorbisfile -lid3tag  -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXcomposite -lXdamage -lpango-1.0 -lcairo -lX11 -lXfixes -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   -lglib-2.0   -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -pthread -lgthread-2.0 -lrt -lglib-2.0   -lglade-2.0 -lgtk-x11-2.0 -lxml2 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXcomposite -lXdamage -lpango-1.0 -lcairo -lX11 -lXfixes -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   -lgnomecanvas-2 -lart_lgpl_2 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXcomposite -lXdamage -lpango-1.0 -lcairo -lX11 -lXfixes -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   -lgpod -lgobject-2.0 -lglib-2.0   -pthread -lgnomevfs-2 -lgconf-2 -lgmodule-2.0 -ldl -lORBit-2 -lgthread-2.0 -lrt -lgobject-2.0 -lglib-2.0   -lhal -ldbus-1  

 Now type 'make' to build gtkpod 0.99.12,
 and then 'make install' for installation.

Now type `make' to compile.
alex@alex-laptop:~/Apps/Source/gtkpod-0.99.12$ make
make  all-recursive
make[1]: Entering directory `/home/alex/Apps/Source/gtkpod-0.99.12'
Making all in src
make[2]: Entering directory `/home/alex/Apps/Source/gtkpod-0.99.12/src'
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/libgnomecanvas-2.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/libart-2.0 -I/usr/include/gtk-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12   -I/usr/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT autodetection.o -MD -MP -MF .deps/autodetection.Tpo -c -o autodetection.o autodetection.c
In file included from file.h:39,
                 from misc.h:42,
                 from autodetection.c:32:
itdb.h:43:23: error: gpod/itdb.h: No such file or directory
In file included from file.h:39,
                 from misc.h:42,
                 from autodetection.c:32:
itdb.h:45: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘iTunesDB’
itdb.h:46: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘Playlist’
itdb.h:47: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘Track’
itdb.h:48: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘Thumb’
itdb.h:49: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘Artwork’
itdb.h:50: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘IpodInfo’
itdb.h:51: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘PhotoDB’
itdb.h:52: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘PhotoAlbum’
In file included from misc.h:42,
                 from autodetection.c:32:
file.h:76: error: expected ‘)’ before ‘*’ token
file.h:79: error: expected ‘)’ before ‘*’ token
file.h:82: error: expected ‘)’ before ‘*’ token
file.h:85: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
file.h:89: error: expected ‘)’ before ‘*’ token
file.h:90: error: expected ‘)’ before ‘*’ token
file.h:93: error: expected ‘)’ before ‘*’ token
file.h:94: error: expected ‘)’ before ‘*’ token
file.h:95: error: expected ‘)’ before ‘*’ token
file.h:96: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
file.h:100: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
file.h:101: error: expected ‘)’ before ‘*’ token
file.h:102: error: expected ‘)’ before ‘*’ token
file.h:104: error: expected ‘)’ before ‘*’ token
file.h:105: error: expected ‘)’ before ‘*’ token
file.h:107: error: expected ‘)’ before ‘*’ token
file.h:108: error: expected ‘)’ before ‘*’ token
file.h:109: error: expected ‘)’ before ‘*’ token
file.h:110: error: expected ‘)’ before ‘*’ token
file.h:112: error: expected ‘)’ before ‘*’ token
file.h:115: error: expected ‘)’ before ‘*’ token
file.h:121: error: expected ‘)’ before ‘*’ token
file.h:124: error: expected ‘)’ before ‘*’ token
In file included from display_itdb.h:38,
                 from misc.h:43,
                 from autodetection.c:32:
file_convert.h:71: error: expected ‘)’ before ‘*’ token
file_convert.h:72: error: expected ‘)’ before ‘*’ token
file_convert.h:74: error: expected ‘)’ before ‘*’ token
file_convert.h:75: error: expected ‘)’ before ‘*’ token
file_convert.h:77: error: expected ‘)’ before ‘*’ token
file_convert.h:78: error: expected ‘)’ before ‘*’ token
file_convert.h:84: error: expected ‘)’ before ‘*’ token
file_convert.h:85: error: expected ‘)’ before ‘*’ token
file_convert.h:86: error: expected ‘)’ before ‘*’ token
file_convert.h:87: error: expected ‘)’ before ‘*’ token
file_convert.h:88: error: expected ‘)’ before ‘*’ token
In file included from misc.h:43,
                 from autodetection.c:32:
display_itdb.h:59: error: expected specifier-qualifier-list before ‘PhotoDB’
display_itdb.h:116: error: expected specifier-qualifier-list before ‘iTunesDB’
display_itdb.h:123: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
display_itdb.h:127: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
display_itdb.h:128: error: expected ‘)’ before ‘*’ token
display_itdb.h:129: error: expected ‘)’ before ‘*’ token
display_itdb.h:130: error: expected ‘)’ before ‘*’ token
display_itdb.h:131: error: expected ‘)’ before ‘*’ token
display_itdb.h:132: error: expected ‘)’ before ‘*’ token
display_itdb.h:133: error: expected ‘)’ before ‘*’ token
display_itdb.h:135: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
display_itdb.h:137: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
display_itdb.h:138: error: expected ‘)’ before ‘*’ token
display_itdb.h:139: error: expected ‘)’ before ‘*’ token
display_itdb.h:140: error: expected ‘)’ before ‘*’ token
display_itdb.h:141: error: expected ‘)’ before ‘*’ token
display_itdb.h:142: error: expected ‘)’ before ‘*’ token
display_itdb.h:143: error: expected ‘)’ before ‘*’ token
display_itdb.h:146: error: expected ‘)’ before ‘*’ token
display_itdb.h:148: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
display_itdb.h:149: error: expected ‘)’ before ‘*’ token
display_itdb.h:150: error: expected ‘)’ before ‘*’ token
display_itdb.h:151: error: expected ‘)’ before ‘*’ token
display_itdb.h:152: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
display_itdb.h:154: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
display_itdb.h:156: error: expected ‘)’ before ‘*’ token
display_itdb.h:158: error: expected ‘)’ before ‘*’ token
display_itdb.h:160: error: expected ‘)’ before ‘*’ token
display_itdb.h:163: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
display_itdb.h:164: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
display_itdb.h:165: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
In file included from display.h:40,
                 from misc.h:44,
                 from autodetection.c:32:
display_coverart.h:87: error: expected ‘)’ before ‘*’ token
display_coverart.h:89: error: expected ‘)’ before ‘*’ token
display_coverart.h:93: error: expected ‘)’ before ‘*’ token
In file included from misc.h:44,
                 from autodetection.c:32:
display.h:300: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
display.h:301: error: expected ‘)’ before ‘*’ token
display.h:302: error: expected ‘)’ before ‘*’ token
display.h:303: error: expected ‘)’ before ‘*’ token
display.h:304: error: expected ‘)’ before ‘*’ token
display.h:305: error: expected ‘)’ before ‘*’ token
display.h:306: error: expected ‘)’ before ‘*’ token
display.h:307: error: expected ‘)’ before ‘*’ token
display.h:308: error: expected ‘)’ before ‘*’ token
display.h:309: error: expected ‘)’ before ‘*’ token
display.h:310: error: expected ‘)’ before ‘*’ token
display.h:314: error: expected declaration specifiers or ‘...’ before ‘Playlist’
display.h:316: error: expected declaration specifiers or ‘...’ before ‘Playlist’
display.h:319: error: expected ‘)’ before ‘*’ token
display.h:333: error: expected ‘)’ before ‘*’ token
display.h:355: error: expected ‘)’ before ‘*’ token
display.h:356: error: expected ‘)’ before ‘*’ token
In file included from autodetection.c:32:
misc.h:99: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
misc.h:100: error: expected ‘)’ before ‘*’ token
misc.h:109: error: expected declaration specifiers or ‘...’ before ‘Track’
misc.h:110: error: expected declaration specifiers or ‘...’ before ‘Artwork’
misc.h:153: error: expected ‘)’ before ‘*’ token
misc.h:154: error: expected ‘)’ before ‘*’ token
misc.h:155: error: expected ‘)’ before ‘*’ token
misc.h:171: error: expected ‘)’ before ‘*’ token
misc.h:172: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
misc.h:173: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
misc.h:175: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
misc.h:176: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
misc.h:177: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
misc.h:179: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
misc.h:180: error: expected ‘)’ before ‘*’ token
misc.h:181: error: expected ‘)’ before ‘*’ token
misc.h:182: error: expected ‘)’ before ‘*’ token
misc.h:183: error: expected ‘)’ before ‘*’ token
misc.h:184: error: expected ‘)’ before ‘*’ token
misc.h:185: error: expected ‘)’ before ‘*’ token
misc.h:190: error: expected ‘)’ before ‘*’ token
misc.h:230: error: expected ‘)’ before ‘*’ token
misc.h:234: error: expected ‘)’ before ‘*’ token
misc.h:245: error: expected declaration specifiers or ‘...’ before ‘Playlist’
misc.h:246: error: expected ‘)’ before ‘*’ token
misc.h:247: error: expected ‘)’ before ‘*’ token
misc.h:248: error: expected ‘)’ before ‘*’ token
misc.h:249: error: expected ‘)’ before ‘*’ token
misc.h:250: error: expected ‘)’ before ‘*’ token
misc.h:251: error: expected ‘)’ before ‘*’ token
misc.h:253: error: expected ‘)’ before ‘*’ token
misc.h:255: error: expected ‘)’ before ‘*’ token
misc.h:259: error: expected ‘)’ before ‘*’ token
misc.h:262: error: expected ‘)’ before ‘*’ token
misc.h:263: error: expected ‘)’ before ‘*’ token
misc.h:264: error: expected ‘)’ before ‘*’ token
misc.h:266: error: expected ‘)’ before ‘*’ token
autodetection.c:60: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
autodetection.c: In function ‘ad_get_itunes_dir’:
autodetection.c:223: warning: implicit declaration of function ‘itdb_get_itunes_dir’
autodetection.c:223: warning: assignment makes pointer from integer without a cast
autodetection.c: In function ‘ad_timeout_cb’:
autodetection.c:357: error: ‘iTunesDB’ undeclared (first use in this function)
autodetection.c:357: error: (Each undeclared identifier is reported only once
autodetection.c:357: error: for each function it appears in.)
autodetection.c:357: error: ‘itdb’ undeclared (first use in this function)
autodetection.c:357: error: ‘loaded_itdb’ undeclared (first use in this function)
autodetection.c:357: warning: left-hand operand of comma expression has no effect
autodetection.c:373: warning: implicit declaration of function ‘ad_find_repository_with_mountpoint’
autodetection.c:389: warning: implicit declaration of function ‘gp_load_ipod’
autodetection.c:393: warning: implicit declaration of function ‘set_itdb_prefs_int’
autodetection.c:410: error: ‘new_itdb’ undeclared (first use in this function)
autodetection.c:420: warning: implicit declaration of function ‘setup_itdb_n’
autodetection.c:424: warning: implicit declaration of function ‘gp_itdb_add’
autodetection.c:429: warning: implicit declaration of function ‘remove_itdb_prefs’
autodetection.c:430: warning: implicit declaration of function ‘gp_itdb_remove’
autodetection.c:431: warning: implicit declaration of function ‘gp_itdb_free’
make[2]: *** [autodetection.o] Error 1
make[2]: Leaving directory `/home/alex/Apps/Source/gtkpod-0.99.12/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/alex/Apps/Source/gtkpod-0.99.12'
make: *** [all] Error 2
alex@alex-laptop:~/Apps/Source/gtkpod-0.99.12$
In file included from file.h:39,
                 from misc.h:42,
                 from autodetection.c:32:
itdb.h:43:23: error: gpod/itdb.h: No such file or directory

First libgpod-1.0.pc is missing, now itdb.h is appears to be non-existent. Are you sure you even installed libgpod?

That was my first explanation. I INSTALLED it, but it appears to not be installed.

Well, can you post the results of running make install inside the libgpod directory?

Alright, I have a deb file that I just installed, and it's the same thing. It says it's installed, even in Synaptics it says its checked (package: libgpod3). But gtkpod doesn't see it. I did copy the file that you told me to and exported the path.

Well, can you post the results of make install ? It'd be nice to see what exactly is going on in your install script. I tried installing it libgpod from source yesterday and the install script correctly installed libraries, headers, and the .pc file.

From ./configure on:

alex@alex-laptop:~/Apps/Source/Applications/libgpod-0.6.0$ ./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 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 for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking for a sed that does not truncate output... /bin/sed
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) yes
checking for intltool >= 0.21... 0.36.2 found
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for LIBGPOD... yes
checking for sg_ll_inquiry in -lsgutils... no
checking for HAL... yes
checking for TAGLIB... yes
checking for GDKPIXBUF... yes
checking for PYGOBJECT... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for catalogs to be installed...  de es fr he it ja ro sv
checking whether to build python bindings... yes
checking for python... /usr/bin/python
checking whether /usr/bin/python version >= 2.1.1... yes
checking for /usr/bin/python version... 2.5
checking for /usr/bin/python platform... linux2
checking for /usr/bin/python script directory... ${prefix}/lib/python2.5/site-packages
checking for /usr/bin/python extension module directory... ${exec_prefix}/lib/python2.5/site-packages
checking for python development headers... found
checking for python module mutagen >= 1.8... no
checking for more warnings... no
configure: creating ./config.status
config.status: creating Makefile
config.status: creating bindings/Makefile
config.status: creating bindings/python/gpod.i
config.status: creating bindings/python/Makefile
config.status: creating bindings/python/examples/Makefile
config.status: creating bindings/python/tests/Makefile
config.status: creating docs/Makefile
config.status: creating docs/reference/Makefile
config.status: creating docs/reference/version.xml
config.status: creating m4/Makefile
config.status: creating po/Makefile.in
config.status: creating src/Makefile
config.status: creating tools/Makefile
config.status: creating tests/Makefile
config.status: creating libgpod-1.0.pc
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
config.status: executing intltool commands
config.status: executing default-1 commands
config.status: executing po/stamp-it commands

Configuration for libgpod 0.6.0 :
--------------------------------

 Host System Type .....: i686-pc-linux-gnu
 Install path .........: /usr/local
 Preprocessor .........: gcc 
 Compiler .............: gcc -g -O2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -Wall -I/usr/include/gtk-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/pygtk-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 Linker ...............: gcc   -lgobject-2.0 -lglib-2.0   -lgdk_pixbuf-2.0 -lm -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   -lgobject-2.0 -lglib-2.0  
 ArtworkDB support ....: yes
 Python bindings ......: no
 PyGObject support ....: yes

 Now type 'make' to build libgpod 0.6.0,
 and then 'make install' for installation.

alex@alex-laptop:~/Apps/Source/Applications/libgpod-0.6.0$ make
make  all-recursive
make[1]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0'
Making all in src
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/src'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/src'
Making all in tools
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/tools'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/tools'
Making all in tests
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/tests'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/tests'
Making all in po
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/po'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/po'
Making all in m4
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/m4'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/m4'
Making all in docs
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs'
Making all in reference
make[3]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs/reference'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs/reference'
make[3]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs'
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs'
Making all in bindings
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/bindings'
make[3]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/bindings'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/bindings'
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/bindings'
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0'
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0'
make[1]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0'
alex@alex-laptop:~/Apps/Source/Applications/libgpod-0.6.0$ sudo make install
[sudo] password for alex:
Making install in src
make[1]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/src'
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/src'
test -z "/usr/local/lib" || mkdir -p -- "/usr/local/lib"
 /bin/bash ../libtool --mode=install /usr/bin/install -c  'libgpod.la' '/usr/local/lib/libgpod.la'
/usr/bin/install -c .libs/libgpod.so.3.0.0 /usr/local/lib/libgpod.so.3.0.0
(cd /usr/local/lib && { ln -s -f libgpod.so.3.0.0 libgpod.so.3 || { rm -f libgpod.so.3 && ln -s libgpod.so.3.0.0 libgpod.so.3; }; })
(cd /usr/local/lib && { ln -s -f libgpod.so.3.0.0 libgpod.so || { rm -f libgpod.so && ln -s libgpod.so.3.0.0 libgpod.so; }; })
/usr/bin/install -c .libs/libgpod.lai /usr/local/lib/libgpod.la
/usr/bin/install -c .libs/libgpod.a /usr/local/lib/libgpod.a
chmod 644 /usr/local/lib/libgpod.a
ranlib /usr/local/lib/libgpod.a
libtool: install: warning: remember to run `libtool --finish /usr/lib'
test -z "/usr/local/include/gpod-1.0/gpod" || mkdir -p -- "/usr/local/include/gpod-1.0/gpod"
 /usr/bin/install -c -m 644 'itdb.h' '/usr/local/include/gpod-1.0/gpod/itdb.h'
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/src'
make[1]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/src'
Making install in tools
make[1]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/tools'
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/tools'
test -z "/usr/local/bin" || mkdir -p -- "/usr/local/bin"
test -z "" || mkdir -p -- ""
test -z "" || mkdir -p -- ""
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/tools'
make[1]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/tools'
Making install in tests
make[1]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/tests'
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/tests'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/tests'
make[1]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/tests'
Making install in po
make[1]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/po'
/home/alex/Apps/Source/Applications/libgpod-0.6.0/install-sh -d /usr/local/share/locale
linguas="de es fr he it ja ro sv "; \
        for lang in $linguas; do \
          dir=/usr/local/share/locale/$lang/LC_MESSAGES; \
          /home/alex/Apps/Source/Applications/libgpod-0.6.0/install-sh -d $dir; \
          if test -r $lang.gmo; then \
            /usr/bin/install -c -m 644 $lang.gmo $dir/libgpod.mo; \
            echo "installing $lang.gmo as $dir/libgpod.mo"; \
          else \
            /usr/bin/install -c -m 644 ./$lang.gmo $dir/libgpod.mo; \
            echo "installing ./$lang.gmo as" \
                 "$dir/libgpod.mo"; \
          fi; \
          if test -r $lang.gmo.m; then \
            /usr/bin/install -c -m 644 $lang.gmo.m $dir/libgpod.mo.m; \
            echo "installing $lang.gmo.m as $dir/libgpod.mo.m"; \
          else \
            if test -r ./$lang.gmo.m ; then \
              /usr/bin/install -c -m 644 ./$lang.gmo.m \
                $dir/libgpod.mo.m; \
              echo "installing ./$lang.gmo.m as" \
                   "$dir/libgpod.mo.m"; \
            else \
              true; \
            fi; \
          fi; \
        done
installing de.gmo as /usr/local/share/locale/de/LC_MESSAGES/libgpod.mo
installing es.gmo as /usr/local/share/locale/es/LC_MESSAGES/libgpod.mo
installing fr.gmo as /usr/local/share/locale/fr/LC_MESSAGES/libgpod.mo
installing he.gmo as /usr/local/share/locale/he/LC_MESSAGES/libgpod.mo
installing it.gmo as /usr/local/share/locale/it/LC_MESSAGES/libgpod.mo
installing ja.gmo as /usr/local/share/locale/ja/LC_MESSAGES/libgpod.mo
installing ro.gmo as /usr/local/share/locale/ro/LC_MESSAGES/libgpod.mo
installing sv.gmo as /usr/local/share/locale/sv/LC_MESSAGES/libgpod.mo
make[1]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/po'
Making install in m4
make[1]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/m4'
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/m4'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/m4'
make[1]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/m4'
Making install in docs
make[1]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs'
Making install in reference
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs/reference'
make[3]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs/reference'
make[3]: Nothing to be done for `install-exec-am'.
installfiles=`echo ./html/*`; \
        if test "$installfiles" = './html/*'; \
        then echo '-- Nothing to install' ; \
        else \
          /bin/bash ../../mkinstalldirs /usr/local/share/gtk-doc/html/libgpod; \
          for i in $installfiles; do \
            echo '-- Installing '$i ; \
            /usr/bin/install -c -m 644 $i /usr/local/share/gtk-doc/html/libgpod; \
          done; \
          echo '-- Installing ./html/index.sgml' ; \
          /usr/bin/install -c -m 644 ./html/index.sgml /usr/local/share/gtk-doc/html/libgpod || :; \
        fi
mkdir -p -- /usr/local/share/gtk-doc/html/libgpod
-- Installing ./html/ch01.html
-- Installing ./html/home.png
-- Installing ./html/index.html
-- Installing ./html/index.sgml
-- Installing ./html/itunesdb.html
-- Installing ./html/left.png
-- Installing ./html/libgpod-Artwork.html
-- Installing ./html/libgpod.devhelp
-- Installing ./html/libgpod.devhelp2
-- Installing ./html/libgpod-Device.html
-- Installing ./html/libgpod-File-handling-functions.html
-- Installing ./html/libgpod-Low-level-functions.html
-- Installing ./html/libgpod-Photo-database.html
-- Installing ./html/libgpod-Playlists.html
-- Installing ./html/libgpod-Smart-Playlists.html
-- Installing ./html/libgpod-The-Itdb-iTunesDB-structure.html
-- Installing ./html/libgpod-Time-handling.html
-- Installing ./html/libgpod-Tracks.html
-- Installing ./html/photodb.html
-- Installing ./html/right.png
-- Installing ./html/style.css
-- Installing ./html/up.png
-- Installing ./html/index.sgml
make[3]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs/reference'
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs/reference'
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs'
make[3]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs'
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs'
make[1]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/docs'
Making install in bindings
make[1]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/bindings'
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/bindings'
make[3]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/bindings'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/bindings'
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/bindings'
make[1]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0/bindings'
make[1]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0'
make[2]: Entering directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0'
make[2]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/lib/pkgconfig" || mkdir -p -- "/usr/local/lib/pkgconfig"
 /usr/bin/install -c -m 644 'libgpod-1.0.pc' '/usr/local/lib/pkgconfig/libgpod-1.0.pc'
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0'
make[1]: Leaving directory `/home/alex/Apps/Source/Applications/libgpod-0.6.0'
alex@alex-laptop:~/Apps/Source/Applications/libgpod-0.6.0$

Hmm. It appears as though it correctly installed all your files (even the pkgconfig file and headers), but looking back at your previous logs, it seems that libgpod is using the prefix of /usr/local, while the gtkpod configure script used /usr. Go back to gktpod, and try running the following:

./autogen.sh --prefix=/usr/local

And then try compiling again and see what happens.

Okay, so autogen.sh worked with your flags, but make gave me an error:

alex@alex-laptop:~/Apps/Source/Applications/gtkpod_svn/gtkpod/gtkpod/trunk$ ./autogen.sh --prefix=/usr/local
processing .
Creating ./aclocal.m4 ...
Running glib-gettextize...  Ignore non-fatal messages.
Copying file mkinstalldirs
Copying file po/Makefile.in.in

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
from the /aclocal directory to your autoconf macro directory
or directly to your aclocal.m4 file.
You will also need config.guess and config.sub, which you can get from
ftp://ftp.gnu.org/pub/gnu/config/.

Making ./aclocal.m4 writable ...
Running intltoolize...
Running aclocal  ...
/usr/share/aclocal/soundtouch.m4:29: warning: underquoted definition of AM_PATH_SOUNDTOUCH
/usr/share/aclocal/soundtouch.m4:29:   run info '(automake)Extending aclocal'
/usr/share/aclocal/soundtouch.m4:29:   or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
Running autoheader...
Running automake --gnu  ...
Running autoconf ...
Running ./configure --enable-maintainer-mode --prefix=/usr/local ...
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
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 library containing strerror... none required
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... (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 intltool >= 0.33... 0.36.2 found
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for GTK... yes
checking for GLIB... yes
checking for GMODULE... yes
checking for GTHREAD... yes
checking for LIBGLADE... yes
checking for LIBGPOD... yes
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... -lfl
checking whether yytext is a pointer... yes
checking for mount... /bin/mount
checking for umount... /bin/umount
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for catalogs to be installed...  de es fr he it ja ru ro sv
checking for getopt_long_only... yes
checking for getopt_long_only... (cached) yes
checking for flock... yes
checking for statvfs... yes
checking for library containing id3_frame_field... -lid3tag
checking for CURL... no
checking for GNOME_VFS... yes
checking for HAL... yes
checking for library containing MP4GetMetadataGrouping... no
checking for library containing ov_open... -lvorbisfile
checking vorbis/vorbisfile.h usability... yes
checking vorbis/vorbisfile.h presence... yes
checking for vorbis/vorbisfile.h... yes
checking for library containing FLAC__metadata_get_streaminfo... -lFLAC
checking FLAC/metadata.h usability... yes
checking FLAC/metadata.h presence... yes
checking for FLAC/metadata.h... yes
checking for library containing bind... none required
checking linux/cdrom.h usability... yes
checking linux/cdrom.h presence... yes
checking for linux/cdrom.h... yes
checking scsi/sg.h usability... yes
checking scsi/sg.h presence... yes
checking for scsi/sg.h... yes
checking scsi/scsi.h usability... yes
checking scsi/scsi.h presence... yes
checking for scsi/scsi.h... yes
checking scsi/scsi_ioctl.h usability... yes
checking scsi/scsi_ioctl.h presence... yes
checking for scsi/scsi_ioctl.h... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating po/Makefile.in
config.status: creating scripts/Makefile
config.status: creating data/Makefile
config.status: creating data/icons/Makefile
config.status: creating data/icons/16x16/Makefile
config.status: creating data/icons/22x22/Makefile
config.status: creating data/icons/24x24/Makefile
config.status: creating data/icons/32x32/Makefile
config.status: creating data/icons/48x48/Makefile
config.status: creating data/icons/64x64/Makefile
config.status: creating data/icons/scalable/Makefile
config.status: creating data/icons/hicolor/Makefile
config.status: creating data/icons/hicolor/16x16/Makefile
config.status: creating data/icons/hicolor/16x16/places/Makefile
config.status: creating data/icons/hicolor/16x16/status/Makefile
config.status: creating data/icons/hicolor/22x22/Makefile
config.status: creating data/icons/hicolor/22x22/places/Makefile
config.status: creating data/icons/hicolor/24x24/Makefile
config.status: creating data/icons/hicolor/24x24/places/Makefile
config.status: creating data/icons/hicolor/32x32/Makefile
config.status: creating data/icons/hicolor/32x32/places/Makefile
config.status: creating data/icons/hicolor/48x48/Makefile
config.status: creating data/icons/hicolor/48x48/places/Makefile
config.status: creating data/icons/hicolor/scalable/Makefile
config.status: creating data/icons/hicolor/scalable/places/Makefile
config.status: creating data/man/Makefile
config.status: creating doc/Makefile
config.status: creating doc/figures/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing intltool commands
config.status: executing default-1 commands
config.status: executing po/stamp-it commands

Configuration for gtkpod 0.99.13SVN :
--------------------------------

 Host System Type .....: i686-pc-linux-gnu
 Install path .........: /usr/local
 GTK2 version .........: 2.12.0
 GLib2/GThread version : 2.14.1
 libgpod version ......: 0.6.0
 gnome-vfs.............: yes -- will build with automount support
 hal...................: yes -- will build with HAL support
 libcurl ..............: *no -- will build without coverart download support
 mp4v2 ................: *no -- will build without aac support
 vorbisfile ...........: yes -- will build with ogg support
 FLAC .................: yes -- will build with FLAC support
 Preprocessor .........: gcc  -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include  
 Compiler .............: gcc -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include  
 Linker ...............: gcc  -lFLAC -lvorbisfile -lid3tag  -L/usr/local/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXcomposite -lXdamage -lpango-1.0 -lcairo -lX11 -lXfixes -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   -lglib-2.0   -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -pthread -lgthread-2.0 -lrt -lglib-2.0   -L/usr/local/lib -lglade-2.0 -lgtk-x11-2.0 -lxml2 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXcomposite -lXdamage -lpango-1.0 -lcairo -lX11 -lXfixes -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   -L/usr/local/lib -lgpod -lgobject-2.0 -lglib-2.0   -pthread -lgnomevfs-2 -lgconf-2 -lgmodule-2.0 -ldl -lORBit-2 -lgthread-2.0 -lrt -lgobject-2.0 -lglib-2.0   -lhal -ldbus-1  

 Now type 'make' to build gtkpod 0.99.13SVN,
 and then 'make install' for installation.

Now type `make' to compile.
alex@alex-laptop:~/Apps/Source/Applications/gtkpod_svn/gtkpod/gtkpod/trunk$ make
make  all-recursive
make[1]: Entering directory `/home/alex/Apps/Source/Applications/gtkpod_svn/gtkpod/gtkpod/trunk'
Making all in src
make[2]: Entering directory `/home/alex/Apps/Source/Applications/gtkpod_svn/gtkpod/gtkpod/trunk/src'
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT autodetection.o -MD -MP -MF .deps/autodetection.Tpo -c -o autodetection.o autodetection.c
autodetection.c:447: fatal error: opening dependency file .deps/autodetection.Tpo: Permission denied
compilation terminated.
make[2]: *** [autodetection.o] Error 1
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/gtkpod_svn/gtkpod/gtkpod/trunk/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/alex/Apps/Source/Applications/gtkpod_svn/gtkpod/gtkpod/trunk'
make: *** [all] Error 2
alex@alex-laptop:~/Apps/Source/Applications/gtkpod_svn/gtkpod/gtkpod/trunk$

Try running make with root permissions, i.e. 'sudo make'.

mv -f .deps/misc_confirm.Tpo .deps/misc_confirm.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT misc_conversion.o -MD -MP -MF .deps/misc_conversion.Tpo -c -o misc_conversion.o misc_conversion.c
mv -f .deps/misc_conversion.Tpo .deps/misc_conversion.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT misc_input.o -MD -MP -MF .deps/misc_input.Tpo -c -o misc_input.o misc_input.c
mv -f .deps/misc_input.Tpo .deps/misc_input.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT misc_playlist.o -MD -MP -MF .deps/misc_playlist.Tpo -c -o misc_playlist.o misc_playlist.c
mv -f .deps/misc_playlist.Tpo .deps/misc_playlist.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT misc_track.o -MD -MP -MF .deps/misc_track.Tpo -c -o misc_track.o misc_track.c
mv -f .deps/misc_track.Tpo .deps/misc_track.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT mp3file.o -MD -MP -MF .deps/mp3file.Tpo -c -o mp3file.o mp3file.c
mv -f .deps/mp3file.Tpo .deps/mp3file.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT mp4file.o -MD -MP -MF .deps/mp4file.Tpo -c -o mp4file.o mp4file.c
mv -f .deps/mp4file.Tpo .deps/mp4file.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT oggfile.o -MD -MP -MF .deps/oggfile.Tpo -c -o oggfile.o oggfile.c
mv -f .deps/oggfile.Tpo .deps/oggfile.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT prefs.o -MD -MP -MF .deps/prefs.Tpo -c -o prefs.o prefs.c
mv -f .deps/prefs.Tpo .deps/prefs.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT sort_window.o -MD -MP -MF .deps/sort_window.Tpo -c -o sort_window.o sort_window.c
mv -f .deps/sort_window.Tpo .deps/sort_window.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT repository.o -MD -MP -MF .deps/repository.Tpo -c -o repository.o repository.c
mv -f .deps/repository.Tpo .deps/repository.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT sha1.o -MD -MP -MF .deps/sha1.Tpo -c -o sha1.o sha1.c
mv -f .deps/sha1.Tpo .deps/sha1.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT stock_icons.o -MD -MP -MF .deps/stock_icons.Tpo -c -o stock_icons.o stock_icons.c
mv -f .deps/stock_icons.Tpo .deps/stock_icons.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT syncdir.o -MD -MP -MF .deps/syncdir.Tpo -c -o syncdir.o syncdir.c
mv -f .deps/syncdir.Tpo .deps/syncdir.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT tools.o -MD -MP -MF .deps/tools.Tpo -c -o tools.o tools.c
mv -f .deps/tools.Tpo .deps/tools.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT wavfile.o -MD -MP -MF .deps/wavfile.Tpo -c -o wavfile.o wavfile.c
mv -f .deps/wavfile.Tpo .deps/wavfile.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT help.o -MD -MP -MF .deps/help.Tpo -c -o help.o help.c
mv -f .deps/help.Tpo .deps/help.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT prefsdlg.o -MD -MP -MF .deps/prefsdlg.Tpo -c -o prefsdlg.o prefsdlg.c
mv -f .deps/prefsdlg.Tpo .deps/prefsdlg.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT infodlg.o -MD -MP -MF .deps/infodlg.Tpo -c -o infodlg.o infodlg.c
mv -f .deps/infodlg.Tpo .deps/infodlg.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT rb_rating_helper.o -MD -MP -MF .deps/rb_rating_helper.Tpo -c -o rb_rating_helper.o rb_rating_helper.c
mv -f .deps/rb_rating_helper.Tpo .deps/rb_rating_helper.Po
gcc -DHAVE_CONFIG_H -I. -I.. -DMOUNT_BIN=\""/bin/mount\"" -DUMOUNT_BIN=\""/bin/umount\"" -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\"   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   -MT rb_cell_renderer_rating.o -MD -MP -MF .deps/rb_cell_renderer_rating.Tpo -c -o rb_cell_renderer_rating.o rb_cell_renderer_rating.c
mv -f .deps/rb_cell_renderer_rating.Tpo .deps/rb_cell_renderer_rating.Po
gcc  -g -O2 -Wall -Wno-pointer-sign -I/usr/local/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -I/usr/local/include/pango-1.0 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/local/include/gpod-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include     -o gtkpod autodetection.o charset.o clientserver.o confirmation.o context_menus.o date_parser.o date_parser2.o details.o display_coverart.o display.o display_playlists.o display_sorttabs.o display_itdb.o display_photo.o display_spl.o display_tracks.o fetchcover.o file.o file_export.o file_convert.o file_itunesdb.o fileselection.o flacfile.o info.o ipod_init.o main.o misc.o misc_confirm.o misc_conversion.o misc_input.o misc_playlist.o misc_track.o mp3file.o mp4file.o oggfile.o podcast.o prefs.o sort_window.o repository.o sha1.o stock_icons.o syncdir.o tools.o wavfile.o help.o prefsdlg.o infodlg.o rb_rating_helper.o rb_cell_renderer_rating.o -lFLAC -lvorbisfile -lid3tag  -L/usr/local/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXcomposite -lXdamage -lpango-1.0 -lcairo -lX11 -lXfixes -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   -lglib-2.0   -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -pthread -lgthread-2.0 -lrt -lglib-2.0   -L/usr/local/lib -lglade-2.0 -lgtk-x11-2.0 -lxml2 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXcomposite -lXdamage -lpango-1.0 -lcairo -lX11 -lXfixes -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   -L/usr/local/lib -lgpod -lgobject-2.0 -lglib-2.0   -pthread -lgnomevfs-2 -lgconf-2 -lgmodule-2.0 -ldl -lORBit-2 -lgthread-2.0 -lrt -lgobject-2.0 -lglib-2.0   -lhal -ldbus-1     -lFLAC -lvorbisfile -lid3tag  -L/usr/local/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXcomposite -lXdamage -lpango-1.0 -lcairo -lX11 -lXfixes -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   -lglib-2.0   -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -pthread -lgthread-2.0 -lrt -lglib-2.0   -L/usr/local/lib -lglade-2.0 -lgtk-x11-2.0 -lxml2 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXcomposite -lXdamage -lpango-1.0 -lcairo -lX11 -lXfixes -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   -L/usr/local/lib -lgpod -lgobject-2.0 -lglib-2.0   -pthread -lgnomevfs-2 -lgconf-2 -lgmodule-2.0 -ldl -lORBit-2 -lgthread-2.0 -lrt -lgobject-2.0 -lglib-2.0   -lhal -ldbus-1  
file.o: In function `copy_new_info':
/home/alex/Apps/Source/Applications/gtkpod_svn/gtkpod/gtkpod/trunk/src/file.c:878: undefined reference to `itdb_chapterdata_free'
/home/alex/Apps/Source/Applications/gtkpod_svn/gtkpod/gtkpod/trunk/src/file.c:879: undefined reference to `itdb_chapterdata_duplicate'
collect2: ld returned 1 exit status
make[2]: *** [gtkpod] Error 1
make[2]: Leaving directory `/home/alex/Apps/Source/Applications/gtkpod_svn/gtkpod/gtkpod/trunk/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/alex/Apps/Source/Applications/gtkpod_svn/gtkpod/gtkpod/trunk'
make: *** [all] Error 2
alex@alex-laptop:~/Apps/Source/Applications/gtkpod_svn/gtkpod/gtkpod/trunk$

(Speaks for itself)

You need to compile and install the libgpod version that's in the svn repositories first, as libgpod 0.6.0 is incompatible with the svn version of gtkpod.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.