Как исправить 'configure: несовместимая неоновая библиотека версии 0.29.3: хотел 0.25 26 27 28' - PullRequest
0 голосов
/ 30 мая 2019

Я пытаюсь настроить webdav. Когда я запускаю ./configure, он заканчивается на:

checking for neon-config... /usr/bin/neon-config
checking linking against neon... yes
configure: incompatible neon library version 0.29.3: wanted 0.25 26 27 28
configure: error: could not find neon

Я не смог найти версию neon-devel 0.25 / 0.26 / 0.27 / 0.28.

Где или как я могу установить совместимую версию neon-devel?


Выход:

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... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln -s works... yes
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking whether NLS is requested... yes
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for neon-config... /usr/bin/neon-config
checking linking against neon... yes
configure: incompatible neon library version 0.29.3: wanted 0.25 26 27 28
configure: error: could not find neon

1 Ответ

0 голосов
/ 06 июня 2019

Как указал jww, решение состоит в том, чтобы отредактировать файл configure.ac.И если это сработает, чтобы отправить это изменение в исходное состояние.

Но вы, вероятно, можете обойтись без простого редактирования скрипта настройки.Найдите строку 26 27 28 и добавьте 29 в конце.

Поскольку автор программного обеспечения, которое вы пытаетесь скомпилировать, не проверял эту комбинацию, конечно, есть вероятность, что произошли несовместимые изменения внеон и он не работает.

...