summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS10
-rw-r--r--meson.build8
-rw-r--r--meson_options.txt4
-rw-r--r--tests/atk_test_util.h1
4 files changed, 20 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 742b361..9fd3d9d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,13 @@
+What's new in at-spi2-atk 2.34.2:
+
+* Meson: don't hard-code shared_library (!19).
+
+* Mitigate missing window events at startup.
+
+* Set C standard to gnu99 (#10).
+
+* Tests: include sys/time.h (#14).
+
What's new in at-spi2-atk 2.34.1:
* socket_embed_hook: Make plug_id parameter const.
diff --git a/meson.build b/meson.build
index 358381a..61bc93d 100644
--- a/meson.build
+++ b/meson.build
@@ -1,10 +1,10 @@
project('at-spi2-atk', 'c',
- version: '2.34.1',
+ version: '2.34.2',
license: 'LGPLv2.1+',
default_options: [
'buildtype=debugoptimized',
'warning_level=1',
- 'c_std=c99',
+ 'c_std=gnu99',
],
meson_version : '>= 0.40.1')
@@ -61,4 +61,6 @@ install_data('at-spi2-atk.desktop',
subdir('droute')
subdir('atk-adaptor')
-subdir('tests')
+if get_option('tests')
+ subdir('tests')
+endif
diff --git a/meson_options.txt b/meson_options.txt
index 24c9228..a4abdc2 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -2,3 +2,7 @@ option('disable_p2p',
description: 'Disable peer-to-peer DBus connections',
type: 'boolean',
value: false)
+option('tests',
+ description: 'Whether to build tests',
+ type: 'boolean',
+ value: true)
diff --git a/tests/atk_test_util.h b/tests/atk_test_util.h
index d69e650..98a2c01 100644
--- a/tests/atk_test_util.h
+++ b/tests/atk_test_util.h
@@ -26,6 +26,7 @@
#include <stdio.h>
#include <unistd.h>
+#include <sys/time.h>
#include <glib.h>
#include <stdio.h>
#include <stdlib.h>