aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2022-06-02 12:47:21 +0200
committerThomas White <taw@physics.org>2022-06-02 12:47:21 +0200
commit0c64576cc6e802129c8eaefaed55101ab02cf15d (patch)
tree7dd019a250cb3d6b6e61590b38fa6ccd0baccdc7 /meson.build
parentb3310d6e91010c7b839c3bf599e866877746462d (diff)
Meson: Change HAVE_ASAPO conf_data from '1' to 'true'
See 13a36408f3b867938cb029a9d11d952113d9bf64
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 964d3f61..4f97d8ce 100644
--- a/meson.build
+++ b/meson.build
@@ -71,7 +71,7 @@ endif
asapodep = dependency('libasapo-consumer', required: false)
if asapodep.found()
- conf_data.set10('HAVE_ASAPO', 1)
+ conf_data.set10('HAVE_ASAPO', true)
endif
if cc.has_function('clock_gettime', prefix: '#include <time.h>')