configure/make 잘 안먹을 때는 이렇게...

1. 간단한 방법

 

# aclocal

# automake

# autoconf

 

# ./configure ...

# make ...

 

 

2. 확실한 방법

 

# libtoolize -f
# aclocal
# automake --foreign --add-missing
# autoheader
# autoconf

 

# ./configure ...

# make ...

위로 스크롤