meta: Build an empty libresolv to satisfy some programs
Signed-off-by: Dennis Bonke <admin@dennisbonke.com>
This commit is contained in:
parent
3b26033129
commit
9170e68e19
2 changed files with 8 additions and 0 deletions
6
libresolv/src/dummy.cpp
Normal file
6
libresolv/src/dummy.cpp
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
// We build an empty libresolv because some programs always links with -lresolv
|
||||
// The actual functions reside inside libc
|
||||
|
||||
extern "C" void __mlibc_libresolv_dummy(void) { }
|
||||
|
|
@ -265,6 +265,7 @@ if not headers_only
|
|||
shared_library('util', 'libutil/src/dummy.cpp', install: true)
|
||||
shared_library('m', 'libm/src/dummy.cpp', install: true)
|
||||
shared_library('crypt', 'libcrypt/src/dummy.cpp', install: true)
|
||||
shared_library('resolv', 'libresolv/src/dummy.cpp', install: true)
|
||||
else
|
||||
ldso_lib = static_library('ld', rtdl_sources,
|
||||
name_prefix: '',
|
||||
|
@ -293,6 +294,7 @@ if not headers_only
|
|||
static_library('util', 'libutil/src/dummy.cpp', install: true)
|
||||
static_library('m', 'libm/src/dummy.cpp', install: true)
|
||||
static_library('crypt', 'libcrypt/src/dummy.cpp', install: true)
|
||||
static_library('resolv', 'libresolv/src/dummy.cpp', install: true)
|
||||
endif
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue