그래픽&멀티미디어 강좌에 나온 설치법대로 따라가다가

Qt-embedded설치에서

#./configure -xplatform -linux-arm-g++ -qconfig -qpe 하면 다음과 같은 에러가 발생합니다.

------------------------------------------------------------------

configure: no such file: src/tools/qconfig--qpe.h

 ------------------------------------------------------------------


 

분명히 복사해서 넣어주었는데 '하이픈'이 하나 더 들어가 있는 파일을 찾네요..

/qt/qte/src/tools/로가서 qconfig-qpe.h를 qconfig--qpe.h로 바꿔주고 ./configure하면 되는데요

이렇게 하면 #make sub-src 에서 에러가 발생합니다.

-------------------------------------------------------------------

/qt/qte/include/qsortedlist.h:51: error: there are no arguments to `clear' that depend on a template parameter, so a declaration of `clear' must be available
/qt/qte/include/qsortedlist.h:51: error: (if you use `-fpermissive', G++ will accept your code, but allowing the use of an undeclared name is deprecated)
make[2]: *** [allmoc.o] 오류 1
make[2]: Leaving directory `/qt/qte/src'
make[1]: *** [sub-src] 오류 2
make[1]: Leaving directory `/qt/qte'
make: *** [init] 오류 2
------------------------------------------------------------------------

 

어떻게 해야 qt-embedded를 제대로 설치할수 있을까요?

에러좀 잡아주세요