우분투-소스에서 서브 버전 설치-APR 누락


9

Ubuntu의 리포지토리 버전의 하위 버전에서 사용할 수없는 버그 수정이 필요하므로 소스에서 설치하고 있습니다.

를 실행 ./configure하면 오류가 발생합니다.

configure: WARNING: APR not found
The Apache Portable Runtime (APR) library cannot be found.
Please install APR on this system and supply the appropriate
--with-apr option to 'configure'

or

get it with SVN and put it in a subdirectory of this source:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr/branches/1.2.x \
    apr

Run that right here in the top level of the Subversion tree.
Afterwards, run apr/buildconf in that subdirectory and
then run configure again here.

Whichever of the above you do, you probably need to do
something similar for apr-util, either providing both
--with-apr and --with-apr-util to 'configure', or
getting both from SVN with:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr-util/branches/1.2.x \
    apr-util

configure: error: no suitable apr found

노트:

1) 이미 libapr1을 설치했습니다

2) 오류 메시지의 지침을 따르기 위해 svn 클라이언트를 설치할 수 없습니다 (apt-get install svn-패키지를 찾을 수 없음-source.list에 주, 우주, 제한, 다중 우주가 있음)

답변:


14

라이브러리에 따라 프로그램을 컴파일하려면 일반적으로 개발자 패키지가 필요합니다. 상황에 따라 다음을 수행해야합니다 apt-get install libapr1-dev.. 로 반복하는 것을 잊지 마십시오 apt-get install libaprutil1-dev.


감사. 이것은 효과가 있었다. 다른 오류가 발생했습니다. 우연히 이것에 대한 패키지를 알고 있습니까? (Google에서 검색했지만 apt-get 패키지를 찾지 못했습니다.) .............................. 구성 : 경고 : APRUTIL을 찾을 수 없습니다 APRUTIL (Apache Portable Runtime Utility) 라이브러리를 찾을 수 없습니다. 이 시스템에 APRUTIL을 설치하고 적절한 것을 공급하십시오
tanon

1
libaprutil1-dev
slubman
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.