내 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
.