2012-02-29 4 views
1

Solaris 10에 Bugzilla를 설치할 때 다음 오류가 발생했습니다.Solaris 10에서 Bugzilla 설치 문제

문제를 해결하는 방법에 대해 조언 해 줄 사람이 있습니까? Solaris 10 x86 시스템에 설치 중입니다.

# /usr/bin/perl install-module.pl Digest::SHA 
/usr/ucb/cc: language optional software package not installed 
*** Error code 1 
make: Fatal error: Command failed for target 'SHA.o' 

# /usr/bin/perl install-module.pl DateTime 
Error: no compiler detected to compile 'lib/DateTime.c'. Aborting 

답변

1

이 작동 할 수 있습니다 :

export CC 
CC=gcc 
PATH=$PATH:/usr/sfw/bin 
/usr/bin/perl install-module.pl Digest::SHA 
관련 문제