libiodbc is an API to ODBC compatible databases.
This package is known to build and work properly using an LFS-7.7 platform.
Download (HTTP): http://downloads.sourceforge.net/project/iodbc/iodbc/3.52.10/libiodbc-3.52.10.tar.gz
Download MD5 sum: ccbbb1e160a8b0e78a8f8e6a5afd5390
Download size: 1.1 MB
Estimated disk space required: 22 MB
Estimated build time: 0.3 SBU
GTK+-2.24.26 (to create the GUI admin tool)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libiodbc
Install libiodbc by running the following commands:
./configure --prefix=/usr                   \
            --with-iodbc-inidir=/etc/iodbc  \
            --includedir=/usr/include/iodbc \
            --disable-libodbc               \
            --disable-static                &&
make
        This package does not come with a test suite.
          Now, as the root user:
        
make install
          --with-iodbc-inidir=/etc/iodbc:
          libiodbc will install
          configuration files in this directory.
        
          --includedir=/usr/include/iodbc: This
          installs the interface headers to a private directory to avoid a
          conflict with headers installed by unixODBC.
        
          --disable-libodbc: This
          prevents the installation of the libodbc.so symbolic link to avoid a conflict with
          unixODBC.
        
          --disable-static: This
          switch prevents installation of static versions of the libraries.
        
Last updated on 2015-02-25 14:44:17 -0800