berkeley db 소스설치하기

ITWeb/서버관리 2011. 9. 7. 13:32

# 다운로드

    http://www.oracle.com/technetwork/database/berkeleydb/downloads/index-082944.html

 

# 압축풀기

    tar -xvzf db-4.8.30.NC.tar.gz

 

# configure & make

    cd db-4.8.30.NC

    make clean

    cd build_unix

    ../dist/configure --prefix=/home/계정/app/bdb --enable-cxx --enable-shared --enable-static

    make

    make install

: