Changes between Version 5 and Version 6 of Getting-Started/Autoconf


Ignore:
Timestamp:
Apr 29, 2009 9:40:04 PM (15 years ago)
Author:
ismangil
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Getting-Started/Autoconf

    v5 v6  
    4040== Running configure == 
    4141 
    42 Using Default Settings 
     42=== Using Default Settings === 
    4343 
    4444Run "./configure" without any options to let the script detect the appropriate settings for the host: 
     
    5252    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.  
    5353 
    54 Features Customization 
     54=== Features Customization === 
    5555 
    5656With 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: 
     
    7474--disable-tls   Force excluding TLS support (default is autodetected based on OpenSSL availability) 
    7575...      
    76 Configuring Debug Version and Other Customizations 
     76=== Configuring Debug Version and Other Customizations === 
    7777 
    7878The configure script accepts standard customization, which details can be obtained by executing ./configure --help. 
     
    8383$ ./configure CFLAGS="-O3 -DNDEBUG -msoft-float -fno-builtin" 
    8484... 
    85 Configuring TLS Support 
     85=== Configuring TLS Support === 
    8686 
    8787By 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.