Merge pull request #49 from bluetech/meson build: add meson build system
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788
diff --git a/.gitignore b/.gitignore
index bc6cce9..f20937d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -84,3 +84,4 @@ test-driver
build-aux/
/xdg-shell-unstable-v6-client-protocol.h
/xdg-shell-unstable-v6-protocol.c
+build/
diff --git a/.travis.yml b/.travis.yml
index f0bc3e0..ee9be59 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,11 +4,14 @@ language: c
before_install:
- sudo apt-get update -qq
- - sudo apt-get -y install xutils-dev doxygen libxcb-xkb-dev
+ - sudo apt-get -y install xutils-dev doxygen libxcb-xkb-dev python3-pip
+ - wget https://github.com/ninja-build/ninja/releases/download/v1.7.2/ninja-linux.zip && unzip ninja-linux.zip && sudo install ninja /usr/bin/
+ - sudo pip3 install meson
compiler:
- gcc
- clang
script:
- - mkdir autotools-build && cd autotools-build && ../autogen.sh && make && make check
+ - mkdir autotools-build && pushd autotools-build && ../autogen.sh && make && make check && popd
+ - meson meson-build -Denable-wayland=false && pushd meson-build && ninja && ninja test && popd
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index 04a7014..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,44 +0,0 @@
-LOCAL_PATH:= $(call my-dir)
-include $(CLEAR_VARS)
-
-LIBXKBCOMMON_TOP := $(LOCAL_PATH)
-
-LIBXKBCOMMON_BUILT_MAKEFILES := \
- $(LIBXKBCOMMON_TOP)/Android_build.mk
-
-LIBXKBCOMMON_CONFIGURE_TARGET := $(LIBXKBCOMMON_TOP)/Makefile
-
-$(LIBXKBCOMMON_CONFIGURE_TARGET): $(CONFIGURE_DEPENDENCIES)
- cd $(LIBXKBCOMMON_TOP) && autoreconf -fiv
- cd $(LIBXKBCOMMON_TOP) && \
- CC="$(CONFIGURE_CC)" \
- CFLAGS="$(CONFIGURE_CFLAGS)" \
- LD=$(TARGET_LD) \
- LDFLAGS="$(CONFIGURE_LDFLAGS)" \
- CPP=$(CONFIGURE_CPP) \
- CPPFLAGS="$(CONFIGURE_CPPFLAGS)" \
- PKG_CONFIG_LIBDIR=$(CONFIGURE_PKG_CONFIG_LIBDIR) \
- PKG_CONFIG_TOP_BUILD_DIR=$(PKG_CONFIG_TOP_BUILD_DIR) \
- ./configure --host=arm-linux-androideabi \
- --prefix /system \
- --with-xkb-config-root=/system/usr/share/xkb
-
-$(LIBXKBCOMMON_BUILT_MAKEFILES): $(LIBXKBCOMMON_CONFIGURE_TARGET)
- make -C $(dir $@) $(notdir $@)
-
-.PHONY: libxkbcommon-reset libxkbcommon-clean
-
-libxkbcommon-reset:
- cd $(LIBXKBCOMMON_TOP) && \
- git clean -qdxf && \
- git reset --hard HEAD
-
-libxkbcommon-clean:
-
-contrib-reset: libxkbcommon-reset
-contrib-clean: libxkbcommon-clean
-
-CONFIGURE_PKG_CONFIG_LIBDIR := $(CONFIGURE_PKG_CONFIG_LIBDIR):$(abspath $(LIBXKBCOMMON_TOP))
-
-include $(LIBXKBCOMMON_BUILT_MAKEFILES)
-
diff --git a/Makefile.am b/Makefile.am
index 999873f..5deef76 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -327,21 +327,3 @@ bench_key_proc_LDADD = $(BENCH_LDADD)
bench_rules_LDADD = $(BENCH_LDADD)
bench_rulescomp_LDADD = $(BENCH_LDADD)
bench_compose_LDADD = $(BENCH_LDADD)
-
-##
-# Android stuff
-##
-
-Android_build.mk: Makefile $(BUILT_SOURCES)
- androgenizer \
- -:PROJECT libxkbcommon \
- -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
- \
- -:STATIC libxkbcommon \
- -:TAGS eng debug \
- -:SOURCES $(filter-out %.l %.y,$(libxkbcommon_la_SOURCES)) $(BUILT_SOURCES) \
- -:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $(AM_CFLAGS) \
- -:LDFLAGS $(AM_LDFLAGS) \
- \
- -:PASSTHROUGH 'libxkbcommon-clean: clean-libxkbcommon' \
- > $@
diff --git a/PACKAGING b/PACKAGING
index b14101a..6737f5e 100644
--- a/PACKAGING
+++ b/PACKAGING
@@ -5,22 +5,18 @@ The files for libxkbcommon-x11 are:
libxkbcommon-x11.a libxkbcommon-x11.so* xkbcommon/xkbcommon-x11.h
xkbcommon-x11.map xkbcommon-x11.pc
-libxkbcommon-x11 can be disabled with --disable-x11 (see
-`./configure --help` for other options/variables).
+libxkbcommon-x11 can be disabled with -Denable-x11=false (see
+`mesonconf build` for other options/variables).
Dependencies for libxkbcommon:
-- C compiler, autoconf, automake, pkg-config, libc, etc.
+- C compiler, meson, pkg-config, libc, bash, grep, sed.
-- (build optional) xorg-util-macros.
- Output included in tarball.
-
-- (build optional) bison (preferred) or byacc>=20141006.
- Output included in tarball.
+- (build) bison (preferred) or byacc>=20141006.
byacc must be configured with --enable-btyacc.
- (build optional, runtime) xkeyboard-config.
During build, for automatically detecting the value of
- --with-xkb-config-root instead of guessing (/usr/share/X11/xkb).
+ -Dxkb-config-root instead of guessing (/usr/share/X11/xkb).
During runtime, not strictly needed, but most users of the library
would need it.
@@ -30,6 +26,7 @@ Dependencies for libxkbcommon:
- (build optional) doxygen.
For generating the HTML documentation.
+ To disable, use -Denable-docs=false.
- (build optional) gperf.
Output included in git and tarball. To regenerate, use
@@ -45,9 +42,8 @@ Dependencies for libxkbcommon-x11 tests:
If they are not available, the relevant tests are skipped.
Dependencies for Wayland tests:
-- wayland-client>=1.2.0, wayland-scanner, wayland-protocols>=1.0
- If they are not available, the relevant example/utility program is
- skipped.
+- wayland-client>=1.2.0, wayland-scanner, wayland-protocols>=1.0.
+ To disable, use -Denable-wayland=false.
Unless libxcb is always available as part of the system, it is preferred
that libxkbcommon and libxkbcommon-x11 be split into separate packages,
diff --git a/README.md b/README.md
index 04a5df0..9aab641 100644
--- a/README.md
+++ b/README.md
@@ -11,18 +11,19 @@ See [Quick Guide](doc/quick-guide.md).
## Building
-libxkbcommon is built the typical autoconf way:
+libxkbcommon is built with [Meson](http://mesonbuild.com/):
- ./autogen.sh
- make
+ meson build
+ ninja -C build
To build for use with Wayland, you can disable X11 support while still
using the X11 keyboard configuration resource files thusly:
- ./autogen.sh --disable-x11 \
- --with-xkb-config-root=/usr/share/X11/xkb \
- --with-x-locale-root=/usr/share/X11/locale
- make
+ meson build \
+ -Denable-x11=false \
+ -Dxkb-config-root=/usr/share/X11/xkb \
+ -Dx-locale-root=/usr/share/X11/locale
+ ninja -C build
## API
diff --git a/configure.ac b/configure.ac
index 39ded05..895acc5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -202,10 +202,8 @@ AM_CONDITIONAL([ENABLE_WAYLAND], [test "x$enable_wayland" = xyes])
AC_CONFIG_FILES([
Makefile
- xkbcommon-uninstalled.pc
xkbcommon.pc
xkbcommon-x11.pc
- xkbcommon-x11-uninstalled.pc
doc/Doxyfile
])
AC_OUTPUT
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..2b4a57a
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,484 @@
+project(
+ 'libxkbcommon',
+ 'c',
+ version: '0.7.1',
+ default_options: [
+ 'c_std=c99',
+ 'warning_level=2',
+ 'b_lundef=true',
+ ],
+)
+pkgconfig = import('pkgconfig')
+cc = meson.get_compiler('c')
+
+
+# Compiler flags.
+foreach cflag: [
+ '-fvisibility=hidden',
+ '-Wextra',
+ '-Wno-unused-parameter',
+ '-Wno-missing-field-initializers',
+ '-Wpointer-arith',
+ '-Wmissing-declarations',
+ '-Wformat=2',
+ '-Wstrict-prototypes',
+ '-Wmissing-prototypes',
+ '-Wnested-externs',
+ '-Wbad-function-cast',
+ '-Wshadow',
+ '-Wlogical-op',
+ '-Wdate-time',
+ '-Wwrite-strings',
+]
+ if cc.has_argument(cflag)
+ add_project_arguments(cflag, language: 'c')
+ endif
+endforeach
+
+
+# The XKB config root.
+XKBCONFIGROOT = get_option('xkb-config-root')
+if XKBCONFIGROOT == ''
+ xkeyboard_config_dep = dependency('xkeyboard-config', required: false)
+ if xkeyboard_config_dep.found()
+ XKBCONFIGROOT = xkeyboard_config_dep.get_pkgconfig_variable('xkb_base')
+ else
+ XKBCONFIGROOT = join_paths(get_option('prefix'), get_option('datadir'), 'X11', 'xkb')
+ endif
+endif
+
+
+# The X locale directory for compose.
+XLOCALEDIR = get_option('x-locale-root')
+if XLOCALEDIR == ''
+ XLOCALEDIR = join_paths(get_option('prefix'), get_option('datadir'), 'X11', 'locale')
+endif
+
+
+# config.h.
+configh_data = configuration_data()
+configh_data.set('_GNU_SOURCE', 1)
+configh_data.set_quoted('DFLT_XKB_CONFIG_ROOT', XKBCONFIGROOT)
+configh_data.set_quoted('XLOCALEDIR', XLOCALEDIR)
+configh_data.set_quoted('DEFAULT_XKB_RULES', get_option('default-rules'))
+configh_data.set_quoted('DEFAULT_XKB_MODEL', get_option('default-model'))
+configh_data.set_quoted('DEFAULT_XKB_LAYOUT', get_option('default-layout'))
+if get_option('default-variant') != ''
+ configh_data.set_quoted('DEFAULT_XKB_VARIANT', get_option('default-variant'))
+endif
+if get_option('default-options') != ''
+ configh_data.set_quoted('DEFAULT_XKB_OPTIONS', get_option('default-options'))
+endif
+if cc.links('int main(){if(__builtin_expect(1<0,0)){}}', name: '__builtin_expect')
+ configh_data.set('HAVE___BUILTIN_EXPECT', 1)
+endif
+if cc.links('int main(){__builtin_popcount(1);}', name: '__builtin_popcount')
+ configh_data.set('HAVE___BUILTIN_POPCOUNT', 1)
+endif
+if cc.has_header_symbol('unistd.h', 'eaccess', prefix: '#define _GNU_SOURCE')
+ configh_data.set('HAVE_EACCESS', 1)
+endif
+if cc.has_header_symbol('unistd.h', 'euidaccess', prefix: '#define _GNU_SOURCE')
+ configh_data.set('HAVE_EUIDACCESS', 1)
+endif
+if cc.has_header_symbol('sys/mman.h', 'mmap')
+ configh_data.set('HAVE_MMAP', 1)
+endif
+if cc.has_header_symbol('stdlib.h', 'secure_getenv', prefix: '#define _GNU_SOURCE')
+ configh_data.set('HAVE_SECURE_GETENV', 1)
+elif cc.has_header_symbol('stdlib.h', '__secure_getenv', prefix: '#define _GNU_SOURCE')
+ configh_data.set('HAVE___SECURE_GETENV', 1)
+else
+ message('C library does not support secure_getenv, using getenv instead')
+endif
+configure_file(output: 'config.h', configuration: configh_data)
+add_project_arguments('-include', 'config.h', language: 'c')
+
+
+# Supports -Wl,--version-script?
+have_version_script = cc.links(
+ 'int main(){}',
+ link_args: '-Wl,--version-script=' + join_paths(meson.source_root(), 'xkbcommon.map'),
+ name: '-Wl,--version-script',
+)
+
+
+# libxkbcommon.
+# Note: we use some yacc extensions, which work with either GNU bison
+# (preferred) or byacc. Other yacc's may or may not work.
+yacc = find_program('bison', 'byacc')
+yacc_gen = generator(
+ yacc,
+ output: ['@BASENAME@.c', '@BASENAME@.h'],
+ arguments: ['@INPUT@', '--defines=@OUTPUT1@', '--output=@OUTPUT0@', '-p _xkbcommon_'],
+)
+libxkbcommon_internal = static_library(
+ 'xkbcommon-internal',
+ 'src/compose/parser.c',
+ 'src/compose/parser.h',
+ 'src/compose/paths.c',
+ 'src/compose/paths.h',
+ 'src/compose/state.c',
+ 'src/compose/table.c',
+ 'src/compose/table.h',
+ 'src/xkbcomp/action.c',
+ 'src/xkbcomp/action.h',
+ 'src/xkbcomp/ast.h',
+ 'src/xkbcomp/ast-build.c',
+ 'src/xkbcomp/ast-build.h',
+ 'src/xkbcomp/compat.c',
+ 'src/xkbcomp/expr.c',
+ 'src/xkbcomp/expr.h',
+ 'src/xkbcomp/include.c',
+ 'src/xkbcomp/include.h',
+ 'src/xkbcomp/keycodes.c',
+ 'src/xkbcomp/keymap.c',
+ 'src/xkbcomp/keymap-dump.c',
+ 'src/xkbcomp/keywords.c',
+ yacc_gen.process('src/xkbcomp/parser.y'),
+ 'src/xkbcomp/parser-priv.h',
+ 'src/xkbcomp/rules.c',
+ 'src/xkbcomp/rules.h',
+ 'src/xkbcomp/scanner.c',
+ 'src/xkbcomp/symbols.c',
+ 'src/xkbcomp/types.c',
+ 'src/xkbcomp/vmod.c',
+ 'src/xkbcomp/vmod.h',
+ 'src/xkbcomp/xkbcomp.c',
+ 'src/xkbcomp/xkbcomp-priv.h',
+ 'src/atom.c',
+ 'src/atom.h',
+ 'src/context.c',
+ 'src/context.h',
+ 'src/context-priv.c',
+ 'src/darray.h',
+ 'src/keysym.c',
+ 'src/keysym.h',
+ 'src/keysym-utf.c',
+ 'src/ks_tables.h',
+ 'src/keymap.c',
+ 'src/keymap.h',
+ 'src/keymap-priv.c',
+ 'src/scanner-utils.h',
+ 'src/state.c',
+ 'src/text.c',
+ 'src/text.h',
+ 'src/utf8.c',
+ 'src/utf8.h',
+ 'src/utils.c',
+ 'src/utils.h',
+ include_directories: include_directories('src'),
+)
+libxkbcommon_link_args = []
+if have_version_script
+ libxkbcommon_link_args += '-Wl,--version-script=' + join_paths(meson.source_root(), 'xkbcommon.map')
+endif
+libxkbcommon = library(
+ 'xkbcommon',
+ 'xkbcommon/xkbcommon.h',
+ link_whole: libxkbcommon_internal,
+ link_args: libxkbcommon_link_args,
+ link_depends: 'xkbcommon.map',
+ version: '0.0.0',
+ install: true,
+)
+install_headers(
+ 'xkbcommon/xkbcommon.h',
+ 'xkbcommon/xkbcommon-compat.h',
+ 'xkbcommon/xkbcommon-compose.h',
+ 'xkbcommon/xkbcommon-keysyms.h',
+ 'xkbcommon/xkbcommon-names.h',
+ subdir: 'xkbcommon',
+)
+pkgconfig.generate(
+ name: 'xkbcommon',
+ filebase: 'xkbcommon',
+ libraries: libxkbcommon,
+ version: meson.project_version(),
+ description: 'XKB API common to servers and clients',
+)
+
+
+# libxkbcommon-x11.
+if get_option('enable-x11')
+ xcb_dep = dependency('xcb', version: '>=1.10', required: false)
+ xcb_xkb_dep = dependency('xcb-xkb', version: '>=1.10', required: false)
+ if not xcb_dep.found() or not xcb_xkb_dep.found()
+ error('''X11 support requires xcb-xkb >= 1.10 which was not found.
+You can disable X11 support with -Denable-x11=false.''')
+ endif
+
+ libxkbcommon_x11_internal = static_library(
+ 'xkbcommon-x11-internal',
+ 'src/x11/keymap.c',
+ 'src/x11/state.c',
+ 'src/x11/util.c',
+ 'src/x11/x11-priv.h',
+ 'src/context.h',
+ 'src/context-priv.c',
+ 'src/keymap.h',
+ 'src/keymap-priv.c',
+ 'src/atom.h',
+ 'src/atom.c',
+ include_directories: include_directories('src'),
+ link_with: libxkbcommon,
+ dependencies: [
+ xcb_dep,
+ xcb_xkb_dep,
+ ],
+ )
+ libxkbcommon_x11_link_args = []
+ if have_version_script
+ libxkbcommon_x11_link_args += '-Wl,--version-script=' + join_paths(meson.source_root(), 'xkbcommon-x11.map')
+ endif
+ libxkbcommon_x11 = library(
+ 'xkbcommon-x11',
+ 'xkbcommon/xkbcommon-x11.h',
+ link_whole: libxkbcommon_x11_internal,
+ link_args: libxkbcommon_x11_link_args,
+ link_depends: 'xkbcommon-x11.map',
+ version: '0.0.0',
+ install: true,
+ )
+ install_headers(
+ 'xkbcommon/xkbcommon-x11.h',
+ subdir: 'xkbcommon',
+ )
+ pkgconfig.generate(
+ name: 'xkbcommon-x11',
+ filebase: 'xkbcommon-x11',
+ libraries: libxkbcommon_x11,
+ version: meson.project_version(),
+ description: 'XKB API common to servers and clients - X11 support',
+ )
+endif
+
+
+# Tests
+test_env = environment()
+test_env.set('XKB_LOG_LEVEL', 'debug')
+test_env.set('XKB_LOG_VERBOSITY', '10')
+test_env.set('top_srcdir', meson.source_root())
+test_env.set('MALLOC_PERTURB_', '15')
+test_env.set('MallocPreScribble', '1')
+test_env.set('MallocScribble', '1')
+# Some tests need to use unexported symbols, so we link them against
+# the internal copy of libxkbcommon with all symbols exposed.
+libxkbcommon_test_internal = static_library(
+ 'xkbcommon-test-internal',
+ 'test/common.c',
+ 'test/test.h',
+ 'test/evdev-scancodes.h',
+ include_directories: include_directories('src'),
+ link_with: libxkbcommon_internal,
+)
+test_dep = declare_dependency(
+ include_directories: include_directories('src'),
+ link_with: libxkbcommon_test_internal,
+)
+test(
+ 'keysym',
+ executable('test-keysym', 'test/keysym.c', dependencies: test_dep),
+ env: test_env,
+)
+test(
+ 'keymap',
+ executable('test-keymap', 'test/keymap.c', dependencies: test_dep),
+ env: test_env,
+)
+test(
+ 'filecomp',
+ executable('test-filecomp', 'test/filecomp.c', dependencies: test_dep),
+ env: test_env,
+)
+test(
+ 'context',
+ executable('test-context', 'test/context.c', dependencies: test_dep),
+ env: test_env,
+)
+test(
+ 'rules-file',
+ executable('test-rules-file', 'test/rules-file.c', dependencies: test_dep),
+ env: test_env,
+)
+test(
+ 'stringcomp',
+ executable('test-stringcomp', 'test/stringcomp.c', dependencies: test_dep),
+ env: test_env,
+)
+test(
+ 'buffercomp',
+ executable('test-buffercomp', 'test/buffercomp.c', dependencies: test_dep),
+ env: test_env,
+)
+test(
+ 'log',
+ executable('test-log', 'test/log.c', dependencies: test_dep),
+ env: test_env,
+)
+test(
+ 'atom',
+ executable('test-atom', 'test/atom.c', dependencies: test_dep),
+ env: test_env,
+)
+test(
+ 'utf8',
+ executable('test-utf8', 'test/utf8.c', dependencies: test_dep),
+ env: test_env,
+)
+test(
+ 'state',
+ executable('test-state', 'test/state.c', dependencies: test_dep),
+ env: test_env,
+)
+test(
+ 'keyseq',
+ executable('test-keyseq', 'test/keyseq.c', dependencies: test_dep),
+ env: test_env,
+)
+test(
+ 'rulescomp',
+ executable('test-rulescomp', 'test/rulescomp.c', dependencies: test_dep),
+ env: test_env,
+)
+test(
+ 'compose',
+ executable('test-compose', 'test/compose.c', dependencies: test_dep),
+ env: test_env,
+)
+test(
+ 'symbols-leak-test',
+ find_program('test/symbols-leak-test.bash'),
+ env: test_env,
+)
+if get_option('enable-x11')
+ test(
+ 'x11',
+ executable('test-x11', 'test/x11.c', dependencies: test_dep, link_with: libxkbcommon_x11_internal),
+ env: test_env,
+ )
+ # test/x11comp is meant to be run, but it is (temporarily?) disabled.
+ # See: https://github.com/xkbcommon/libxkbcommon/issues/30
+ executable('test-x11comp', 'test/x11comp.c', dependencies: test_dep, link_with: libxkbcommon_x11_internal)
+endif
+
+
+# Demo programs.
+executable('rmlvo-to-kccgst', 'test/rmlvo-to-kccgst.c', dependencies: test_dep)
+executable('print-compiled-keymap', 'test/print-compiled-keymap.c', dependencies: test_dep)
+if cc.has_header('linux/input.h')
+ executable('interactive-evdev', 'test/interactive-evdev.c', dependencies: test_dep)
+endif
+if get_option('enable-x11')
+ executable('interactive-x11', 'test/interactive-x11.c', dependencies: test_dep, link_with: libxkbcommon_x11_internal)
+endif
+if get_option('enable-wayland')
+ wayland_client_dep = dependency('wayland-client', version: '>=1.2.0', required: false)
+ wayland_protocols_dep = dependency('wayland-protocols', version: '>=1.7', required: false)
+ wayland_scanner_dep = dependency('wayland-scanner', required: false)
+ if not wayland_client_dep.found() or not wayland_protocols_dep.found() or not wayland_scanner_dep.found()
+ error('''The Wayland demo programs require wayland-client >= 1.2.0, wayland-protocols >= 1.7 which were not found.
+You can disable the Wayland demo programs with -Denable-wayland=false.''')
+ endif
+
+ wayland_scanner = find_program(wayland_scanner_dep.get_pkgconfig_variable('wayland_scanner'))
+ wayland_scanner_code_gen = generator(
+ wayland_scanner,
+ output: '@BASENAME@-protocol.c',
+ arguments: ['code', '@INPUT@', '@OUTPUT@'],
+ )
+ wayland_scanner_client_header_gen = generator(
+ wayland_scanner,
+ output: '@BASENAME@-client-protocol.h',
+ arguments: ['client-header', '@INPUT@', '@OUTPUT@'],
+ )
+ wayland_protocols_datadir = wayland_protocols_dep.get_pkgconfig_variable('pkgdatadir')
+ xdg_shell_xml = join_paths(wayland_protocols_datadir, 'unstable/xdg-shell/xdg-shell-unstable-v6.xml')
+ xdg_shell_sources = [
+ wayland_scanner_code_gen.process(xdg_shell_xml),
+ wayland_scanner_client_header_gen.process(xdg_shell_xml),
+ ]
+ executable('interactive-wayland', 'test/interactive-wayland.c', xdg_shell_sources, dependencies: [test_dep, wayland_client_dep])
+endif
+
+
+# Benchmarks.
+# For clock_gettime, on some systems.
+rt_dep = cc.find_library('rt', required: false)
+libxkbcommon_bench_internal = static_library(
+ 'xkbcommon-bench-internal',
+ 'bench/bench.c',
+ 'bench/bench.h',
+ dependencies: rt_dep,
+ link_with: libxkbcommon_test_internal,
+)
+bench_dep = declare_dependency(
+ include_directories: include_directories('src'),
+ link_with: libxkbcommon_bench_internal,
+)
+bench_env = environment()
+bench_env.set('top_srcdir', meson.source_root())
+benchmark(
+ 'key-proc',
+ executable('bench-key-proc', 'bench/key-proc.c', dependencies: bench_dep),
+ env: bench_env,
+)
+benchmark(
+ 'rules',
+ executable('bench-rules', 'bench/rules.c', dependencies: bench_dep),
+ env: bench_env,
+)
+benchmark(
+ 'rulescomp',
+ executable('bench-rulescomp', 'bench/rulescomp.c', dependencies: bench_dep),
+ env: bench_env,
+)
+benchmark(
+ 'compose',
+ executable('bench-compose', 'bench/compose.c', dependencies: bench_dep),
+ env: bench_env,
+)
+
+
+# Documentation.
+if get_option('enable-docs')
+ doxygen = find_program('doxygen', required: false)
+ if not doxygen.found()
+ error('''Documentation requires doxygen which was not found.
+You can disable the documentation with -Denable-docs=false.''')
+ endif
+
+ doxygen_input = [
+ join_paths(meson.source_root(), 'README.md'),
+ join_paths(meson.source_root(), 'doc/doxygen-extra.css'),
+ join_paths(meson.source_root(), 'doc/quick-guide.md'),
+ join_paths(meson.source_root(), 'doc/compat.md'),
+ join_paths(meson.source_root(), 'xkbcommon/xkbcommon.h'),
+ join_paths(meson.source_root(), 'xkbcommon/xkbcommon-names.h'),
+ join_paths(meson.source_root(), 'xkbcommon/xkbcommon-x11.h'),
+ join_paths(meson.source_root(), 'xkbcommon/xkbcommon-compose.h'),
+ ]
+ doxygen_data = configuration_data()
+ doxygen_data.set('PACKAGE_NAME', meson.project_name())
+ doxygen_data.set('PACKAGE_VERSION', meson.project_version())
+ doxygen_data.set('INPUT', ' '.join(doxygen_input))
+ doxygen_data.set('abs_top_srcdir', meson.source_root())
+ doxyfile = configure_file(
+ input: 'doc/Doxyfile.in',
+ output: 'Doxyfile',
+ configuration: doxygen_data,
+ install: false,
+ )
+ # TODO: Meson should provide this.
+ docdir = join_paths(get_option('datadir'), 'doc', meson.project_name())
+ # TODO: Relative links in README.md fail.
+ custom_target(
+ 'doc',
+ input: [doxyfile] + doxygen_input,
+ output: 'html',
+ command: [doxygen, doxyfile],
+ install: true,
+ install_dir: docdir,
+ build_by_default: true,
+ )
+endif
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..0e166b1
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,58 @@
+option(
+ 'xkb-config-root',
+ type: 'string',
+ description: 'The XKB config root [default=xkeyboard-config install path]',
+)
+option(
+ 'x-locale-root',
+ type: 'string',
+ description: 'The X locale root [default=$datadir/X11/locale]',
+)
+option(
+ 'default-rules',
+ type: 'string',
+ value: 'evdev',
+ description: 'Default XKB ruleset',
+)
+option(
+ 'default-model',
+ type: 'string',
+ value: 'pc105',
+ description: 'Default XKB model',
+)
+option(
+ 'default-layout',
+ type: 'string',
+ value: 'us',
+ description: 'Default XKB layout',
+)
+option(
+ 'default-variant',
+ type: 'string',
+ value: '',
+ description: 'Default XKB variant',
+)
+option(
+ 'default-options',
+ type: 'string',
+ value: '',
+ description: 'Default XKB options',
+)
+option(
+ 'enable-x11',
+ type: 'boolean',
+ value: true,
+ description: 'Enable building the xkbcommon-x11 library',
+)
+option(
+ 'enable-docs',
+ type: 'boolean',
+ value: true,
+ description: 'Enable building the documentation',
+)
+option(
+ 'enable-wayland',
+ type: 'boolean',
+ value: true,
+ description: 'Enable support for Wayland utility programs',
+)
diff --git a/xkbcommon-uninstalled.pc.in b/xkbcommon-uninstalled.pc.in
deleted file mode 100644
index d4d6a2b..0000000
--- a/xkbcommon-uninstalled.pc.in
+++ /dev/null
@@ -1,8 +0,0 @@
-libdir=@abs_top_builddir@/.libs
-includedir=@abs_top_srcdir@
-
-Name: xkbcommon
-Description: XKB API common to servers and clients (uninstalled)
-Version: @PACKAGE_VERSION@
-Cflags: -I${includedir}
-Libs: -L${libdir} -lxkbcommon
diff --git a/xkbcommon-x11-uninstalled.pc.in b/xkbcommon-x11-uninstalled.pc.in
deleted file mode 100644
index d99ca49..0000000
--- a/xkbcommon-x11-uninstalled.pc.in
+++ /dev/null
@@ -1,10 +0,0 @@
-libdir=@abs_top_builddir@/.libs
-includedir=@abs_top_srcdir@
-
-Name: xkbcommon-x11
-Description: XKB API common to servers and clients - X11 support (uninstalled)
-Version: @PACKAGE_VERSION@
-Requires: xkbcommon
-Requires.private: xcb xcb-xkb
-Cflags: -I${includedir}
-Libs: -L${libdir} -lxkbcommon-x11