소스에서 패키지를 성공적으로 설치했습니까?

소스에서 패키지를 성공적으로 설치했습니까?

설치하려고 합니다안정적인 최신 psensor 버전(psensor-1.0.4) 우분투 12.04의 소스에서. 실행 후 또는 명령을 실행하거나 명령 ./configure을 실행하지 않습니다 .makemake installcheckinstallpsensor

$ psensor
The program 'psensor' is currently not installed.  You can install it by typing:
sudo apt-get install psensor

그러면 내 코드가 성공적으로 컴파일되는지 알고 싶습니다. 여기에 있다./configure표준 출력으로 출력,make표준 출력으로 출력, 그리고산출make install. ./configurestderr의 출력은 다음과 같습니다.

configure: WARNING: "gtk missing psensor will not be built"
configure: WARNING: "gconf2 missing psensor will not be built"
configure: WARNING: "Library atasmart not present"
configure: WARNING: "Desktop notification disabled"
configure: WARNING: AppIndicator 3-0.1 not present"
configure: WARNING: AppIndicator 0.2.9 not present"
configure: WARNING: "AppIndicator > 0.2.9 not present"
configure: WARNING: "Remote monitoring disabled
configure: WARNING: "json-c missing"
configure: WARNING: "json0 missing"
configure: WARNING: Unity not present
configure: WARNING: "libmicrohttpd not present
configure: WARNING: "gtop not present

Unity 하지만 내 우분투 12.04가 업데이트되었는데 왜 비슷한 것이 존재하지 않는지 잘 모르겠습니다 .


내가 달리면 check install,산출locate psensor | grep -i usr시스템 디렉터리에 생성되거나 복사된 실행 파일이 없는 것 같습니다 .

내가 달리면 make install,산출sudo find psensor /|grep psensor 시도하고 제거한 다른 이전 Ubuntu 버전의 psensor에 남아 있는 파일을 표시합니다.


누락된 것으로 보고된 패키지를 설치한 후 ./configure목록은 이제 다음으로 줄어듭니다.

configure: WARNING: "Desktop notification disabled"
configure: WARNING: "Remote monitoring disabled
configure: WARNING: "json-c missing"

http://launchpad.net/ubuntu/precise/+source/json-c설치 json-c한 것 같은데 여전히 누락되었다고 나옵니다 .libjson0-dev./configurejson-c

처음에는 ./configure가 말한 대로 누락된 패키지를 설치하지 않았는데 왜 여전히 설치가 가능 make하고 make install오류가 발생하지 않습니까?

관련 정보