$ bzip2 -dc sylpheed-0.3.22.tar.bz2 | tar xvf - $ cd sylpheed-0.3.22/ $ ./configure (snip) checking for glib-config... /usr/bin/glib-config checking for GLIB - version >= 1.2.6... no *** Could not run GLIB test program, checking why... *** The test program compiled, but did not run. This usually means *** that the run-time linker is not finding GLIB or finding the wrong *** version of GLIB. If it is not finding GLIB, you'll need to set your *** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point *** to the installed location Also, make sure you have run ldconfig if that *** is required on your system *** *** If you have an old version installed, it is best to remove it, although *** you may also be able to get things to work by modifying LD_LIBRARY_PATH *** *** If you have a RedHat 5.0 system, you should remove the GTK package that *** came with the system with the command *** *** rpm --erase --nodeps gtk gtk-devel configure: error: Test for GLIB failed. See the file 'INSTALL' for help. |
$ su # cd /usr/lib # ln -s ../../lib/libpthread.so.0 libpthread.so # exit |
$ ./configure $ make $ su # make install # exit |
$ bzip2 -dc sylpheed-0.3.28.tar.bz2 | tar xvf - $ cd sylpheed-0.3.28/ $ ./configure (snip) checking for GTK - version >= 1.2.6... yes checking for gdk-pixbuf-config... no checking for GDK_PIXBUF - version >= 0.8.0... no *** The gdk-pixbuf-config script installed by GDK_PIXBUF could not be found *** If GDK_PIXBUF was installed in PREFIX, make sure PREFIX/bin is in *** your path, or set the GDK_PIXBUF_CONFIG environment variable to the *** full path to gdk-pixbuf-config. checking for imlib-config... /usr/bin/imlib-config checking for IMLIB - version >= 1.9... yes checking for uncompface in -lcompface... no checking for setlocale in -lxpg4... no (snip) |
$ bzip2 -dc sylpheed-0.5.3.tar.bz2 | tar xvf - $ cd sylpheed-0.5.3 $ ./configure --enable-gpgme (snip) checking for gpgme-config... /usr/local/bin/gpgme-config checking for gpgme - version >= 0.2.1... no *** Could not run gpgme test program, checking why... *** The test program compiled, but did not run. This usually means *** that the run-time linker is not finding GPGME or finding the wrong *** version of GPGME. If it is not finding GPGME, you'll need to set your *** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point *** to the installed location Also, make sure you have run ldconfig if *** that is required on your system *** *** If you have an old version installed, it is best to remove it, *** although you may also be able to get things to work by *** modifying LD_LIBRARY_PATH *** (snip) |
$ su # ldconfig # exit $ make distclean $ ./configure --enable-gpgme $ make $ su # make install # exit |