From 6ecb9e0cd90fc264fdc441da0e400f09678f9f81 Mon Sep 17 00:00:00 2001 From: Alexandros Theodotou Date: Mon, 23 Mar 2020 17:43:30 +0000 Subject: [PATCH] fix freebsd build not linking to x11 --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 24d9351..56e647f 100644 --- a/meson.build +++ b/meson.build @@ -17,7 +17,7 @@ project ( 'ztoolkit', ['c'], - version: '0.1.1', + version: '0.1.2', license: 'AGPLv3+', meson_version: '>= 0.43.0', default_options: [ @@ -61,7 +61,7 @@ deps = [ ] cdata = configuration_data () -if os_linux +if os_linux or os_freebsd deps += dependency('x11') cdata.set('HAVE_X11', 1) endif