File: meson.build

package info (click to toggle)
pdns 5.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,824 kB
  • sloc: cpp: 101,247; sh: 5,616; makefile: 2,318; sql: 860; ansic: 675; python: 635; yacc: 245; perl: 161; lex: 131
file content (13 lines) | stat: -rw-r--r-- 459 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
dep_sqlite3 = dependency('', required: false)

if get_option('module-gsqlite3') != 'disabled'
  dep_sqlite3 = dependency('sqlite3', required: true)
endif

conf.set('HAVE_SQLITE3', dep_sqlite3.found(), description: 'Sqlite3')
conf.set('SQLITE3', dep_sqlite3.found(), description: 'Sqlite3')

summary('SQLite3', dep_sqlite3.found(), bool_yn: true, section: 'SQLite3')
if dep_sqlite3.found()
  summary('Version', dep_sqlite3.version(), section: 'SQLite3')
endif