Autotools GNU configuram o autoreconf

1

Eu tenho uma pergunta ao trabalhar com ferramentas automáticas, especificamente ao trabalhar com a geração de scripts de configuração executando

autoreconf -fi

Vou receber estes avisos:

libtoolize: putting auxiliary files in '.'.
libtoolize: copying file './ltmain.sh'
libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
libtoolize: and rerunning libtoolize and aclocal.
libtoolize: Consider adding '-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
configure.ac:12: installing './compile'
configure.ac:15: installing './config.guess'
configure.ac:15: installing './config.sub'
configure.ac:6: installing './install-sh'
configure.ac:6: installing './missing'
Makefile.am: installing './INSTALL'
src/Makefile.am:5: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/Makefile.am: installing './depcomp'
src/filteropt/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/memory/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/pagemanager/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/raster/Makefile.am:5: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/raster/blendSource/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')

Depois disso, posso passar manualmente e alterar INCLUDES para AM_CPPFLAGS, bem como adicionar -I m4, mas não devo poder atualizar os arquivos de configuração para que eu não receba esses avisos?

Onde eu faria essas edições para evitar esses avisos?

    
por user1610950 08.07.2017 / 12:27

1 resposta

0

Na página man do autoreconf:

By default, it only remakes those files that are older than their sources. If you install new versions of the GNU Build System, you can make ('autoreconf' remake all of the files by giving it the '--force' option).

Portanto, parece que apenas executando autoreconf -fi ele deve atualizar automaticamente esses arquivos de configuração

    
por 08.07.2017 / 13:18