1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-05 19:42:04 +02:00

How does merging even work

This commit is contained in:
Floris Bruynooghe 2018-09-25 16:59:48 -05:00
parent 8d57171424
commit 0ccd2cfaa4

View file

@ -10,7 +10,6 @@ pthreads = dependency('threads')
zlib = dependency('zlib', fallback: ['zlib', 'zlib_dep'])
openssl = dependency('openssl', fallback: ['openssl', 'dep'])
<<<<<<< HEAD
# BZip2 has no pkg-config, just try linking against it
bzip2 = cc.find_library('bz2', required: get_option('bzip2'))
@ -41,10 +40,6 @@ sys_headers = [
foreach hdr: sys_headers
config_h.set(hdr.get(1), cc.has_header(hdr.get(0)) )
endforeach
=======
# Dependencies without pkg-config, just try linking against them
cc = meson.get_compiler('c')
>>>>>>> master
ssl_headers = [
['openssl/aes.h', 'HAVE_OPENSSL_AES_H'],
@ -102,11 +97,7 @@ lib = build_target(
'netpgp', src,
target_type: get_option('static-lib') ? 'static_library' : 'shared_library',
c_args: ccargs,
<<<<<<< HEAD
dependencies: lib_deps,
=======
dependencies: [pthreads, zlib, openssl],
>>>>>>> master
include_directories: inc,
)