소스에서 afpfs-ng 설치

소스에서 afpfs-ng 설치

내 Mac에서 AFP 공유에 액세스하려면 afpfs-ng를 설치하고 싶습니다. 저는 Debian을 실행 중이고 다음 지침을 따르고 있습니다.https://unix.stackexchange.com/a/175/17242, 그리고 나는 얻는다

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... no
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.

설치 중에 문제가 있었다는 뜻인가요? Linux에서 AFP 액세스를 활성화하는 더 좋은 방법이 있습니까?

답변1

데비안에는 컴파일에 필요한 대부분의 프로그램이 포함된 메타 패키지가 있습니다.

apt-get build-essential

또한 다음에 필요한 빌드 종속성을 얻고 싶을 것입니다 afpfs-ng.

apt-get install libgcrypt-dev libfuse-dev libgmp-dev libreadline-dev libncurses-dev

(그 목록은 다음에서 얻었습니다.http://ftp.de.debian.org/debian/pool/main/a/afpfs-ng/afpfs-ng_0.8.1-5.dsc)

답변2

구성: 오류: $PATH에 허용 가능한 C 컴파일러가 없습니다.

C 컴파일러를 설치해야 합니다. 노력하다 apt-get install gcc.

관련 정보