J’essaye de compiler frozen-bubble 2 sur ma sarge.
J’ai donc téléchargé tout ce qui est nécessaire à sa compilation( comme indiqué ici) :
frozen-bubble-2.0.0
SDL_Pango-0.1.2
SDL_image-1.2.5
SDL-1.2.11
SDL_perl-1.20.0
La compil de SDL_perl-1.20.0 , SDL-1.2.11 et SDL_Pango-0.1.2 se passent bien.
Je bloque sur la compil de SDL_image :
[quote]$ ./configure
(…)
checking for sdl-config… /usr/bin/sdl-config
checking for SDL - version >= 1.2.10…
*** ‘sdl-config --version’ returned 1.2.8, but the minimum version
*** of SDL required is 1.2.10. If sdl-config is correct, then it is
*** best to upgrade to the required version.
*** If sdl-config was wrong, set the environment variable SDL_CONFIG
*** to point to the correct copy of sdl-config, and remove the file
*** config.cache before re-running configure
no
configure: error: *** SDL version 1.2.10 not found![/quote]
Or, j’ai bien compilé et installé ( ./configure, make, make install) SDL-1.2.11 .
1) J’essaye ce qu’ils me proposent :
[quote]set the environment variable SDL_CONFIG
*** to point to the correct copy of sdl-config, and remove the file
*** config.cache before re-running configure [/quote]
Rmq: il n’y a pas de config.cache, mais passons:
[quote]export SDL_CONFIG=1.2.11
./configure[/quote]
… même histoire:
*** ‘sdl-config --version’ returned 1.2.8, but the minimum version
*** of SDL required is 1.2.10…
2) Je change les liens symboliques des librairies /usr/lib/libSDL.so qui pointaient encore vers la version 1.2.8 pour les faire pointer vers la version 1.2.11, et je change aussi la librairies statiquelibSDL.a:
ln -sf /usr/local/lib/libSDL-1.2.so.0.11.0 /usr/lib/libSDL.so
cp /usr/local/lib/libSDL.a /usr/lib/libSDL.a
ldconfig
je réessaye mon ./configure:
(…)
checking for sdl-config… /usr/bin/sdl-config
checking for SDL - version >= 1.2.10…
*** ‘sdl-config --version’ returned 1.2.8, but the minimum version
*** of SDL required is 1.2.10(…):evil:
3) J’ai lu le man sdl-config, mais je n’y ai rien vu qui me permette de résoudre ce pb.
Bref, je bloque.
Voilà, voilà…