
Linux CRUX 배포판에서 사용할 최신 버전의 Wine(8.18) 및 Freetype2(2.13.2)을 주요 사이트에서 다운로드했습니다.
Freetype 설치는 순조롭게 진행된 것 같아요! ;-)
$ configure
$ make
# make install
생성된 파일은 /usr/local/include/freetype2 + /usr/local/lib/libfreetype...에 배치되었습니다.
FreeType을 설치한 후 Wine을 구성하려고 하면 다음 오류와 함께 구성 프로세스가 중지됩니다.
**checking for -lfreetype... not found
configure: error: FreeType 32-bit development files not found. Fonts will not be built.
Use the --without-freetype option if you really want this.**
그리고 뭔가 수상한 것... 와인 구성에서도 다른 많은 항목을 찾을 수 없는 것 같습니다...
checking for -lXcursor... not found
checking for X11/extensions/XInput.h... yes
checking for -lXi... not found
checking for XShmQueryExtension in -lXext... no
checking for XShapeQueryExtension in -lXext... no
checking for -lXxf86vm... not found
checking for -lXfixes... not found
checking for -lXinerama... not found
checking for X11/extensions/Xcomposite.h... yes
checking for -lXcomposite... not found
checking for XICCallback.callback... yes
checking for XEvent.xcookie... yes
checking for -lGL... not found
checking for -lGL... (cached) not found
checking for -lOSMesa... not found
제가 뭔가 중요한 것을 놓치고 있는 걸까요?
당신의 도움을 주셔서 감사합니다!
-프란시스
그 동안 나는 다음을 설정했습니다.
LD_LIBRARY_PATH=/usr/lib:/usr/local/lib
LIBRARY_PATH=/usr/lib:/usr/local/lib
하지만 아무 소용이 없었습니다 ...