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 (9 lines) | stat: -rw-r--r-- 401 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
opt_ipcipher = get_option('ipcipher')

if not dep_libcrypto.found() and opt_ipcipher.enabled()
  error('ipcipher support was requested but libcrypto is not available')
endif

enable_ipcipher = dep_libcrypto.found() and not opt_ipcipher.disabled()
conf.set('HAVE_IPCIPHER', enable_ipcipher, description: 'ipcipher support')
summary('ipcipher', enable_ipcipher, bool_yn: true, section: 'Configuration')