From 13b4e5d39da1c9455b1401a13f76a808842530c2 Mon Sep 17 00:00:00 2001 From: Albert Cahalan Date: Thu, 22 Nov 2007 06:23:19 +0000 Subject: [PATCH] document how to mix build options --- docs/INSTALL.txt | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/docs/INSTALL.txt b/docs/INSTALL.txt index 650427a72..de372e122 100644 --- a/docs/INSTALL.txt +++ b/docs/INSTALL.txt @@ -236,9 +236,9 @@ Compiling and Installation: --------------------------------------------------------------------------- To disable SVG support (e.g., if your system is not currently supported by the Cairo library or other SVG-related dependencies), you can - run "make" with "nosvg" as the 'target: + run "make" with "SVG_LIB= SVG_CFLAGS= NOSVGFLAG=NOSVG" added: - $ make nosvg + $ make SVG_LIB= SVG_CFLAGS= NOSVGFLAG=NOSVG Disabling Pango support (and hence Pango, Cairo, etc. dependencies): -------------------------------------------------------------------- @@ -246,23 +246,17 @@ Compiling and Installation: rendering text using TrueType Fonts. Since 0.9.18, libSDL_Pango is used, as it has much greater support for internationalization. However, if you wish to disable the use of SDL_Pango, you may do so - running "make" with "nopango" as the 'target': + running "make" with "NOPANGOFLAG=NO_SDLPANGO SDL_PANGO_LIB=" added: - $ make nopango + $ make NOPANGOFLAG=NO_SDLPANGO SDL_PANGO_LIB= Disabling Sound at Compile-time: -------------------------------- If you don't have a sound card, or would prefer to build the program with no sound support (and therefore without a the SDL_mixer dependency), - you can run "make" with "nosound" as the 'target': - - $ make nosound - - - NOTE: At the moment, the above options cannot be mixed and matched. - In the future, we may switch to using autoconf and autotools to make - these options more flexible. + you can run "make" with "SDL_MIXER_LIB= NOSOUNDFLAG=NOSOUND" added: + $ make SDL_MIXER_LIB= NOSOUNDFLAG=NOSOUND If you get errors: ------------------