Changes between Version 5 and Version 6 of Getting-Started/Autoconf
- Timestamp:
- Apr 29, 2009 9:40:04 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Getting-Started/Autoconf
v5 v6 40 40 == Running configure == 41 41 42 Using Default Settings 42 === Using Default Settings === 43 43 44 44 Run "./configure" without any options to let the script detect the appropriate settings for the host: … … 52 52 The default settings build the libraries in "release" mode, with default CFLAGS set to "-O2". To change the default CFLAGS, we can use the usual "./configure CFLAGS='-g'" construct. 53 53 54 Features Customization 54 === Features Customization === 55 55 56 56 With the new autoconf based build system, most configuration/customization can be specified as configure arguments. The list of customizable features can be viewed by running "./configure --help" command: … … 74 74 --disable-tls Force excluding TLS support (default is autodetected based on OpenSSL availability) 75 75 ... 76 Configuring Debug Version and Other Customizations 76 === Configuring Debug Version and Other Customizations === 77 77 78 78 The configure script accepts standard customization, which details can be obtained by executing ./configure --help. … … 83 83 $ ./configure CFLAGS="-O3 -DNDEBUG -msoft-float -fno-builtin" 84 84 ... 85 Configuring TLS Support 85 === Configuring TLS Support === 86 86 87 87 By default, TLS support is configured based on the availability of OpenSSL header files and libraries. If OpenSSL is available at the default include and library path locations, TLS will be enabled by the configure script.