Skip to content

UnixODBC

ODBC is an open specification for providing application developers with a predictable API with which to access Data Sources. Data Sources include SQL Servers and any Data Source with an ODBC Driver.

How to compile

autotool을 사용하여, 일반적인 방법으로 컴파일 하면 된다.

./configure
make
make install

ltdl Option

Libtool을 사용하기 위한 Libltdl이라는 작은 라이브러리를 함께 컴파일 할 수 있다.

--enable-ltdl-install
install libltdl.
--with-included-ltdl
use the GNU ltdl sources included here.
--with-ltdl-include=DIR
use the ltdl headers installed in DIR
--with-ltdl-lib=DIR
use the libltdl.la installed in DIR

만약 위의 옵션을 추가하면 ltdl이 포함된다. configure에서 아래와 같이 옵션을 추가하면 된다.

./configure --enable-ltdl-install --with-included-ltdl

Favorite site