à l'aide ! pb pour installer ethereal

salut
g un pb pour installer ethereal 0.10.10......
quand je fais ./configure ça me donne ça

*******************************************************
checking for platform-specific compiler flags... none needed
checking whether to use /usr/local for headers and libraries... yes
checking for GNU sed as first sed in PATH... yes
checking if profile builds must be generated... no
checking for pkg-config... /usr/bin/pkg-config
checking for GTK+ - version >= 2.0.0... no
*** Could not run GTK+ test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that occured. This usually means GTK+ is incorrectly installed.
checking for pkg-config... (cached) /usr/bin/pkg-config
checking for GLIB - version >= 2.0.0... no
*** Could not run GLIB test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that occured. This usually means GLIB is incorrectly installed.
configure: error: GLib2 distribution not found.

************************************************************

apparement g besoin de gtk+ et glib !!
g vu les msg des autres forum mais je ne trouve pas l'adresse exacte pour avoir gtk+ et glib (pour distrib fedora core 2)

merci de m'aider !!!!!

4 réponses

  1. Modérateur
    0
    1. merci de m'aider
      quand j'ai fait make install ça m'a donner cette ereur :
      ???
      collect2: ld returned 1 exit status
      libtool: install: error: relink `libgobject-2.0.la' with the above command before installing it
      make[4]: *** [install-libLTLIBRARIES] Erreur 1
      make[4]: Leaving directory `/home/bihi/etherinstall/glib-2.6.0/gobject'
      make[3]: *** [install-am] Erreur 2
      make[3]: Leaving directory `/home/bihi/etherinstall/glib-2.6.0/gobject'
      make[2]: *** [install] Erreur 2
      make[2]: Leaving directory `/home/bihi/etherinstall/glib-2.6.0/gobject'
      make[1]: *** [install-recursive] Erreur 1
      make[1]: Leaving directory `/home/bihi/etherinstall/glib-2.6.0'
      make: *** [install] Erreur
      2
      0
  2. ou peut-on trouver "gtk+ > à2 et glib >2 "

    et comment faire pour les installer sous fedora 2?
    merci
    0
    1. à l'installation de gtk+ 2.6.0 g le message suivant :

      ......
      .....
      mv -f ".libs/libgobject-2.0.expT" ".libs/libgobject-2.0.exp"
      mv: cannot stat `libgobject-2.0.so.0.600.0': No such file or directory
      libtool: install: error: relink `libgobject-2.0.la' with the above command befor e installing it
      make[4]: *** [install-libLTLIBRARIES] Erreur 1
      make[4]: Leaving directory `/home/bihi/etherinstall/glib-2.6.0/gobject'
      make[3]: *** [install-am] Erreur 2
      make[3]: Leaving directory `/home/bihi/etherinstall/glib-2.6.0/gobject'
      make[2]: *** [install] Erreur 2
      make[2]: Leaving directory `/home/bihi/etherinstall/glib-2.6.0/gobject'
      make[1]: *** [install-recursive] Erreur 1
      make[1]: Leaving directory `/home/bihi/etherinstall/glib-2.6.0'
      make: *** [install] Erreur 2


      pouvez vous m'aider !!!!
      merci
      0
      1. Modérateur
        Je ne connais pas trop fedora mais en passant par le gestionnaire de paquetage il ne s'occupe pas des dépendances tout seul ? Tu dois avoir un outil pour les mises à jour aussi. L'install serait moins douloureuse.

        Bon pour ton pb :
        mv: cannot stat `libgobject-2.0.so.0.600.0': No such file or directory
        libtool: install: error: relink `libgobject-2.0.la' with the above command befor e installing it 


        Il te dit que libgobject-2.0.so.0.600.0 n'existe pas et qu'il faut le linker avec libgobject-2.0.la. Donc essaie ça :

        Ouvre une console et passe en root :
        $ su -
        Password
        # updatedb
        # locate libgobject-2.0.la

        Une fois que tu as trouvé le répertoire ou se cache se fichier, va dedans
        # cd lerepertoire
        # ln -s libgobject-2.0.so.0.600.0 libgobject-2.0.la

        Et regarde si là ça marche
        0