|
426bf452
|
2023-04-18T00:49:09
|
|
build: Add generated *.sym files to .gitignore
|
|
e7cf8c57
|
2021-11-28T22:44:08
|
|
Switch md5 compatibility logic back to direct linking
When using the recent dlsym() based wrapper, we are not requiring any
symbol from libmd, as we resolve those dynamically at run-time. We were
ending up linking against libmd because in another part of the code we
require (depending on the architecture) the SHA512 functions for the
getentropy() local implementation. But that function might be provided
by the system libc on some systems, which means we end up not linking
against libmd at all.
To solve this we go back to the previous simpler solution of linking
directly, which had the main drawback of then making programs fail to
link when not specifying -lmd (on platforms that need it). And then
switch the .so link point from a symlink to a linker script, so that we
can inject the -lmd library as-needed. This is similar to what glibc is
doing.
Fixes: commit 31f034e3862debda8615a449b1c11c4d6920dcc7
|
|
7389fe8d
|
2021-11-27T06:54:49
|
|
build: Ignore backup files
|
|
4f68a88f
|
2021-02-19T06:55:17
|
|
build: Add compiler warnings support
Detect as many warnings as possible during configure and enable them
if the user did not supply any, so that any such problem can be spotted
and fixed.
|
|
15bd284b
|
2021-02-28T05:16:01
|
|
build: Add code coverage support in the GitLab CI
|
|
ee04e8de
|
2013-10-10T09:49:04
|
|
build: Set subdir-objects automake option
Bump automake minimal version to 1.9.
|
|
dc8b0978
|
2013-05-30T04:09:25
|
|
build: Ignore automake 1.13+ test suite generated files
|
|
dcaa93d9
|
2010-12-17T11:13:04
|
|
build: Switch to autotools
|
|
8a99226f
|
2011-02-23T14:01:06
|
|
Generalize pkg-config file handling
Use a make pattern for the .pc rule to allow using more than one .pc
file. And generalize the .gitignore entry.
|
|
8c7f053a
|
2008-07-12T07:00:19
|
|
Automatically generate the ChangeLog on 'make dist'
|
|
87d6d656
|
2008-07-12T07:31:59
|
|
Automatically generate libbsd.pc from libbsd.pc.in
|
|
3b51d12e
|
2008-06-18T08:00:10
|
|
Add a .gitignore file
|