aMule Forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

We're back! (IN POG FORM)

Author Topic: Options Configure  (Read 3073 times)

baton

  • Newbie
  • Karma: 0
  • Offline Offline
  • Posts: 2
Options Configure
« on: January 01, 2006, 11:37:59 PM »

J'ai essayé de compiler aMule pour ne pas avoir les stats, ni le serveur web, ni le ed2k handler, etc .. avec le moins d'options possible car mon ordi n'est pas rapide.
Je fais mon configure comme çà, à peu près comme dans le wiki pour mac
Code: [Select]
bash: ./configure --disable-systray --disable-gtk --disable-ed2k    \
            --with-wx-config=../wxMac-2.6.1/build/wx-config \
            --disable-debug --enable-optimize
Mais après le make, une fois la compilation terminée, je lance aMule et j'ai droit aux statistiques, à l'ed2k handler et à toutes les options disponibles. Je n'ai pas l'habitude de compiler et comme çà prend un peu de temps, je ne sais pas s'il faut mettre tous les --disable possibles après ./configure, ou s'il y  a un fichier à éditer pour ne pas avoir tous les services.

Merci pour votre aide
Logged

Gerd78

  • Hero Member
  • *****
  • Karma: 9
  • Offline Offline
  • Posts: 681
Re: Options Configure
« Reply #1 on: January 01, 2006, 11:46:54 PM »

The information in the wiki is partially outdated, try this instead:
Code: [Select]
./configure --helpIn short:

- --disable-systray no longer exists, the systray icon is now always compiled, but you can hide it in the preferences.
- --disable-gtk is not necessary on the Mac, ./configure will automatically pick up wxMac if --with-wx-config points to it.
- --disable-ed2k disables the console ed2k binary, not the link handler in the monolithic GUI program. The latter can be hidden in the preferences.
- the other ./configure options are fine.

If you need a minimal installation with the monolithic GUI program, try this:
Code: [Select]
./configure \
   --enable-optimize \
   --disable-debug \
   --enable-monolithic \
   --disable-amule-daemon \
   --disable-amulecmd \
   --disable-webserver \
   --disable-amule-gui \
   --disable-cas \
   --disable-wxcas \
   --disable-ed2k \
   --disable-alc \
   --disable-alcc \
   --with-wx-config=../wxMac-2.6.1/build/wx-config
« Last Edit: January 01, 2006, 11:47:33 PM by Gerd78 »
Logged

baton

  • Newbie
  • Karma: 0
  • Offline Offline
  • Posts: 2
Re: Options Configure
« Reply #2 on: January 02, 2006, 05:58:16 AM »

Pas de changement , visible ... il y a toujours les stats en marche

À la fin de ./configure j'ai :
Code: [Select]
 Configure script has finished system check.

  Configured aMule 2.0.3 for 'powerpc-apple-darwin7.9.0'.

  aMule enabled options:

  **** aMule Core ****
  Prefix where aMule should be installed?                    /usr/local
  Should aMule be compiled with i18n support?                no
  Should aMule be compiled in debug mode?                    no
  Should aMule be compiled with profiling?                   no
  Should aMule be compiled with optimizations?               yes
  Should aMule be compiled with taskbar icon support?        yes
  Should aMule be compiled with old GTK taskbar icon?        no
  Should aMule be compiled with UTF-8 taskbar icon support?  no
  Should aMule be linked against patched gsocket?            no
  Should aMule monolithic application be built?              yes
  Should aMule daemon version be built?                      no
  Should aMule remote gui be built? (EXPERIMENTAL)           no
  Crypto++ library/headers style?                            embedded

  **** aMule TextClient ****
  Should aMule Command Line Client be built?                 no
  Should aMule GUI Client be built?                          no

  **** aMule WebServer ****
  Should aMule WebServer be built?                           no
  Should aMule WebServer GUI be built?                       no

  **** aMule ED2K Links Handler ****
  Should aMule ED2K Links Handler be built?                  no

  **** aMuleLinkCreator ****
  Should aMuleLinkCreator GUI version (alc) be built?        no
  Should aMuleLinkCreator for console (alcc) be built?       no

  **** aMule Statistics ****
  Should C aMule Statistics (CAS) be built?                  no
  Should aMule GUI Statistics (wxCas) be built?              no

  **** General Libraries and Tools ****
  Should ccache support be enabled?                          no
  Libraries aMule will use to build:
                                       wxWidgets             2.6.1
                                       crypto++              embedded
                                       zlib                  1.1.4

Pourtant j'ai les statistiques et tout dans l'application

Merci pour votre aide
« Last Edit: January 02, 2006, 07:59:49 AM by baton »
Logged