X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fmeson.build;h=6399ddb1b5383fad426a1aa571938c5574dbfa80;hb=c8402791b82947c49ba1d04f855dab04191607ca;hp=adf82f62633d61c1175ab55f39a38b1c1dfdec8e;hpb=bc4df95a48857aa4ab65fb47eabd48c48d650ca0;p=tinc diff --git a/src/meson.build b/src/meson.build index adf82f62..6399ddb1 100644 --- a/src/meson.build +++ b/src/meson.build @@ -119,6 +119,7 @@ src_lib_common = [ 'conf.c', 'console.c', 'dropin.c', + 'fs.c', 'keys.c', 'list.c', 'logger.c', @@ -174,6 +175,12 @@ src_tincd = [ 'subnet.c', ] +src_event_select = files('event_select.c') + +if os_name != 'windows' + src_tincd += 'signal.c' +endif + cc_flags_tinc = cc_flags cc_flags_tincd = cc_flags @@ -205,6 +212,7 @@ endforeach if cdata.has('HAVE_SYS_UN_H') src_tincd += 'fd_device.c' + cdata.set('HAVE_FD_DEVICE', 1) endif confdata = configuration_data() @@ -358,16 +366,17 @@ endif subdir(opt_crypto) -if opt_crypto != 'openssl' - src_lib_crypto += 'crypto.c' -endif - if opt_crypto != 'nolegacy' src_lib_crypto += ['cipher.c', 'digest.c'] endif subdir('include') +have_sandbox = cdata.has('HAVE_SANDBOX') +if not have_sandbox + src_lib_common += 'sandbox.c' +endif + lib_crypto = static_library( 'tinc_crypto', sources: src_lib_crypto,