Changes between Initial Version and Version 1 of Ticket #58060, comment 5


Ignore:
Timestamp:
Apr 27, 2021, 1:33:51 AM (3 years ago)
Author:
Ionic (Mihai Moldovan)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #58060, comment 5

    initial v1  
    1111Speaking of which... there is more breakage.
    1212
    13 `aclocal.m4` checks for `SHA1_File` via `AC_CHECK_FUNCS`, which explicitly requires a symbol the linker can find. Neither FreeBSD's nor `libmd` nor the standalone `libmd` that is getting used on Linux systems define such a symbol - instead, most often it's a macro. So we'll have to switch to `AC_CHECK_DECLS` instead.
     13`aclocal.m4` checks for `SHA1_File` via `AC_CHECK_FUNCS`, which explicitly requires a symbol the linker can find. Neither FreeBSD's `libmd` nor the standalone `libmd` that is getting used on Linux systems define such a symbol - instead, most often it's a macro. So we'll have to switch to `AC_CHECK_DECLS` instead.
    1414
    1515With that, using `libmd` should finally work again.