728x90
반응형
Berkeley DB http://www.sleepycat.com/download/index.shtml db-4.3.28.NC.tar.gz
위 사이트에서 회원등록 후 다운 받는다
$ cd db-4.3.28.NC/build_unix
$ ../dist/configure
=> 에러 발생시 env CC=gcc ../dist/configure 이렇게 해본다.
$ make
=> 아래와 같은 에러 발생시
Quote: |
"../dist/../db/db_method.c", line 214.14: 1506-022 (S) "truncate64" is not a member of "struct __db". "../dist/../db/db_method.c", line 238.14: 1506-022 (S) "stat64" is not a member of "struct __db". |
This is caused by AIX redefining stat and truncate to
stat64/truncate64. The workaround is to edit the db.h file generated
by configure and add this line with the #includes near the top:
#include
This change has been made in Berkeley DB 4.4, which compiles out of the
box on AIX 5.3.
db.h 는 build_unix에 있다.
$ make install
끝
반응형
'[OS] > Embedded&Linux' 카테고리의 다른 글
개인 trac 페이지 완성 (0) | 2007.05.23 |
---|---|
subversion 설치 (0) | 2007.05.16 |
[TIP] apache 인증에 MD5 Digest 를 사용해보자. (0) | 2007.04.10 |
[INSTALL] 나도 Trac을 써보자! Apache-2.2.2/SVN-1.3.1/Trac-0.9.5/FastCGI (6) - 권한 설정 (0) | 2007.04.10 |
[INSTALL] 나도 Trac을 써보자! Apache-2.2.2/SVN-1.3.1/Trac-0.9.5/FastCGI (5)- Trac 설치 및 연동 (0) | 2007.04.10 |