Skip to content

Commit

Permalink
tools: drop getopt vs getopt_long differentiation
Browse files Browse the repository at this point in the history
On all platforms we build on where getopt.h is available, getopt_long is also
available. Only Windows doesn't have either but that's no reason for us to
differentiate between the two.

If we need to special-case getopt vs getopt_long, it's probably better to
implement our own cross-platform version of it and use that.

Fixes #161

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
  • Loading branch information
whot committed Jul 14, 2020
1 parent 44bcf8c commit 76ba200
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 31 deletions.
48 changes: 21 additions & 27 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,8 @@ elif cc.has_header_symbol('stdlib.h', '__secure_getenv', prefix: system_ext_defi
else
message('C library does not support secure_getenv, using getenv instead')
endif
have_getopt = cc.has_header_symbol('getopt.h', 'getopt')
have_getopt_long = cc.has_header_symbol('getopt.h', 'getopt_long',
prefix: '#define _GNU_SOURCE')
if have_getopt_long
configh_data.set10('HAVE_GETOPT_LONG', true)
endif

# Silence some security & deprecation warnings on MSVC
# for some unix/C functions we use.
Expand Down Expand Up @@ -516,7 +512,7 @@ executable('fuzz-compose', 'fuzz/compose/target.c', dependencies: test_dep)
man_pages = []

# Tools
build_tools = have_getopt
build_tools = have_getopt_long
if build_tools
libxkbcommon_tools_internal = static_library(
'tools-internal',
Expand All @@ -534,30 +530,28 @@ if build_tools
dependencies: tools_dep, install: true)
man_pages += 'tools/xkbcli.1.ronn'

if have_getopt_long
executable('xkbcli-compile-keymap',
'tools/compile-keymap.c',
executable('xkbcli-compile-keymap',
'tools/compile-keymap.c',
dependencies: tools_dep,
install: true,
install_dir: dir_libexec)
man_pages += 'tools/xkbcli-compile-keymap.1.ronn'
configh_data.set10('HAVE_XKBCLI_COMPILE_KEYMAP', true)
executable('xkbcli-how-to-type',
'tools/how-to-type.c',
dependencies: tools_dep,
install: true,
install_dir: dir_libexec)
man_pages += 'tools/xkbcli-how-to-type.1.ronn'
configh_data.set10('HAVE_XKBCLI_HOW_TO_TYPE', true)
if cc.has_header('linux/input.h')
executable('xkbcli-interactive-evdev',
'tools/interactive-evdev.c',
dependencies: tools_dep,
install: true,
install_dir: dir_libexec)
man_pages += 'tools/xkbcli-compile-keymap.1.ronn'
configh_data.set10('HAVE_XKBCLI_COMPILE_KEYMAP', true)
executable('xkbcli-how-to-type',
'tools/how-to-type.c',
dependencies: tools_dep,
install: true,
install_dir: dir_libexec)
man_pages += 'tools/xkbcli-how-to-type.1.ronn'
configh_data.set10('HAVE_XKBCLI_HOW_TO_TYPE', true)
if cc.has_header('linux/input.h')
executable('xkbcli-interactive-evdev',
'tools/interactive-evdev.c',
dependencies: tools_dep,
install: true,
install_dir: dir_libexec)
configh_data.set10('HAVE_XKBCLI_INTERACTIVE_EVDEV', true)
man_pages += 'tools/xkbcli-interactive-evdev.1.ronn'
endif
configh_data.set10('HAVE_XKBCLI_INTERACTIVE_EVDEV', true)
man_pages += 'tools/xkbcli-interactive-evdev.1.ronn'
endif
if get_option('enable-x11')
x11_tools_dep = declare_dependency(
Expand Down Expand Up @@ -612,7 +606,7 @@ if build_tools
configh_data.set10('HAVE_XKBCLI_INTERACTIVE_WAYLAND', true)
endif

if have_getopt_long and get_option('enable-xkbregistry')
if get_option('enable-xkbregistry')
configh_data.set10('HAVE_XKBCLI_LIST', true)
executable('xkbcli-list',
'tools/registry-list.c',
Expand Down
4 changes: 0 additions & 4 deletions tools/xkbcli.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,13 @@ main(int argc, char **argv)

while (1) {
int c;
#if HAVE_GETOPT_LONG
static struct option opts[] = {
{ "help", no_argument, 0, OPT_HELP },
{ "version", no_argument, 0, OPT_VERSION },
{ 0, 0, 0, 0}
};

c = getopt_long(argc, argv, "+hV", opts, &option_index);
#else
c = getopt(argc, argv, "+hV");
#endif
if (c == -1)
break;

Expand Down

0 comments on commit 76ba200

Please sign in to comment.