synergy 는 open source 이기 때문에 Source 도 함께 공개되어 있다.
Original Core Version
https://github.com/symless/synergy-core.git
Stable Version
https://github.com/brahma-dev/synergy-stable-builds.git
혹시 빌드 과정에서 ./hm.sh conf -g1 혹은 ./configure 를 실행했을 때 아래와 같은 에러 메시지가
나타날 수도 있다.
1. Original Core Version 에서 cmake ../ 실행 후 에러
----------------------------------------------------------------------------------
CMake Error at CMakeLists.txt:136 (message):
Missing library: curl
-- Configuring incomplete, errors occurred!
See also "<synergy root directory>/build/CMakeFiles/CMakeOutput.log".
-----------------------------------------------------------------------------------
2. Stable Version 에서 ./hm.sh conf -g1 실행 후 에러
-----------------------------------------------------------------------------------
-- Could NOT find CURL (missing: CURL_LIBRARY CURL_INCLUDE_DIR)
CMake Error at CMakeLists.txt:160 (message):
Missing library: curl
-- Configuring incomplete, errors occurred!
See also "<synergy root directory>/build/CMakeFiles/CMakeOutput.log".
-----------------------------------------------------------------------------------
위 1번과 2번처럼 에러 메시지가 나타나면 필요한 라이브러리가 존재하지 않아서 빌드 에러가 날 확률이 높다. 따라서, 관련 라이브러리 패키지를 설치해주어야 한다.
$ sudo apt-get install libcurl4-openssl-dev
$ sudo apt-get install libxtst-dev
$ sudo apt-get install libssl-dev
'Developments > Linux(ubuntu)' 카테고리의 다른 글
Touchpad Indicator 오류 해결 방법 (0) | 2018.05.01 |
---|---|
apt-get update 에서 Error 발생시 해결 방법 (0) | 2018.01.10 |
java insall & setting (1.6 / 1.7 /1.8) (0) | 2016.12.25 |
ubuntu 12.04 용 sticky Note (Post-it program) (0) | 2015.11.25 |
Android Java 1.6 / 1.7 Version 설치 저장소 (0) | 2015.06.08 |