2013-08-26 4 views
2

에 오류가 있습니다 : 다음 시도했지만 주어진 오류가빌드 스럽 내가 여기에서 교란 소스를 다운로드 autoconf를

https://github.com/fsaintjacques/disruptor--

. 제가 누락 된 것이 있습니까?

autoconf configure.ac > configure 

configure.ac:9: error: possibly undefined macro: AM_INIT_AUTOMAKE 
     If this token and others are legitimate, please use m4_pattern_allow. 
     See the Autoconf documentation. 
configure.ac:19: error: possibly undefined macro: AC_CXX_COMPILE_STDCXX_0X 

GCC 버전

gcc --version 
gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-3) 
Copyright (C) 2010 Free Software Foundation, Inc. 
This is free software; see the source for copying conditions. There is NO 
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 

의 autoconf 버전

autoconf --version 
autoconf (GNU Autoconf) 2.63 
Copyright (C) 2008 Free Software Foundation, Inc. 
License GPLv2+: GNU GPL version 2 or later 
<http://gnu.org/licenses/old-licenses/gpl-2.0.html> 
This is free software: you are free to change and redistribute it. 
There is NO WARRANTY, to the extent permitted by law. 

Written by David J. MacKenzie and Akim Demaille. 
+0

[도움이 될 것 같지 않습니다] (http://adesklets.sourceforge.net/forum_archive/topics/404.html) – WhozCraig

+0

disruptor --- master idf $ autoheader autoheader : 오류 : 구성에서 AC_CONFIG_HEADERS를 찾을 수 없습니다. .ac – Ivan

+0

좋은 자료 : http://stackoverflow.com/questions/22603163/automake-error-ltmain-sh-not-found –

답변

4

bootstrap 스크립트를 제공하기 위해 개발자에게 문의 및/또는 지시를 구축 할 수 있습니다. 대부분의 경우이 필요합니다 가능성이 일부 기본이 아닌 옵션 (예를 들어, Automake의 호출에 --foreign 추가)와

aclocal 
autoconf 
automake -a 
./configure 
make 

.

+0

disruptor --- master idf $ automake configure.ac:9 : 오류 : 필수 파일 './install-sh'을 찾을 수 없다. configure.ac:9 : 'automake - 'add-missing'은 'install-sh'을 설치할 수 있습니다. configure.ac:9 : 오류 : 필요한 파일 './missing'을 찾을 수 없습니다. configure.ac:9 : 'automake --add-missing' perf/Makefile.am : 오류 : 필요한 파일 './depcomp'을 찾을 수 없음 perf/Makefile.am : 'automake --add-missing'은 'depcomp'을 설치할 수 있습니다. parallel-tests : error : required file './ 테스트 드라이버 '가 발견되지 않았습니다. – Ivan

+0

예, 오류 메시지가'--add-missing' 또는'-a'와 함께 automake를 호출합니다. – DanielKO

+0

Daniel이 도움을 주셔서 감사합니다. 나는 멀리까지 갈 수 있었지만 어쨌든이 모든 방해물은 매우 모호합니다. – Ivan