File: meson.build

package info (click to toggle)
dnsdist 2.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,640 kB
  • sloc: cpp: 91,323; javascript: 24,456; sh: 4,744; python: 1,328; makefile: 832; ansic: 816
file content (20 lines) | stat: -rw-r--r-- 403 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
lib_arc4random = static_library(
  'arc4random',
  'arc4random.c',
  'arc4random_uniform.c',
  'bsd-getentropy.c',
  'explicit_bzero.c',
  extra_files: [
    'arc4random.h',
    'arc4random.hh',
    'chacha_private.h',
    'includes.h',
    'log.h',
  ],
  dependencies: [dep_pdns],
)

dep_arc4random = declare_dependency(
  link_with: lib_arc4random,
  include_directories: include_directories('.'),
)