freebsd: make elput optional.

devs/bu5hm4n/pointer-fix
Alastair Poole 3 years ago
parent 56d2cdc294
commit e1eed5190b
  1. 2
      confs/freebsd.sh
  2. 6
      meson.build
  3. 5
      meson_options.txt
  4. 4
      src/bin/e_gesture.c
  5. 4
      src/bin/e_gesture.h
  6. 3
      src/bin/e_main.c
  7. 2
      src/modules/conf_bindings/e_mod_main.c
  8. 5
      src/modules/conf_bindings/meson.build

@ -1,3 +1,3 @@
#!/bin/sh -e
meson -Dsystemd=false -Ddevice-udev=false -Dgesture-recognition=false \
meson -Dsystemd=false -Delput=false -Ddevice-udev=false -Dgesture-recognition=false \
$@ . build

@ -309,7 +309,7 @@ dep_eo = dependency('eo' , required: true)
dep_eldbus = dependency('eldbus' , required: true)
dep_emotion = dependency('emotion' , required: true)
dep_elementary = dependency('elementary' , required: true)
dep_elput = dependency('elput' , required: true)
dep_elput = dependency('elput' , required: false)
dep_wayland = []
if get_option('wl') == true
@ -361,6 +361,10 @@ else
dep_ecore_x = dependency('ecore-x')
endif
if get_option('elput') == true
config_h.set('HAVE_ELPUT', '1')
endif
dep_xkeyboard_config = dependency('xkeyboard-config', required: false)
if dep_xkeyboard_config.found() == true
config_h.set_quoted('XKB_BASE', dep_xkeyboard_config.get_pkgconfig_variable('xkb_base'))

@ -40,6 +40,11 @@ option('libexif',
value: true,
description: 'enable EXIF support: (default=true)')
option('elput',
type: 'boolean',
value: true,
description: 'enable elput support: (default=true)')
option('device-udev',
type: 'boolean',
value: true,

@ -1,3 +1,5 @@
#ifdef HAVE_ELPUT
#include <e.h>
#include <Eina.h>
#include <grp.h>
@ -247,3 +249,5 @@ e_bindings_gesture_capable_devices_get(void)
{
return gesture_capable_devices;
}
#endif

@ -1,3 +1,5 @@
#ifdef HAVE_ELPUT
#ifdef E_TYPEDEFS
typedef void (*E_Bindings_Swipe_Live_Update)(void *data, Eina_Bool end, double direction, double length, double error, unsigned int fingers);
@ -11,3 +13,5 @@ E_API void e_bindings_swipe_live_update_hook_set(E_Bindings_Swipe_Live_Update up
E_API int e_bindings_gesture_capable_devices_get(void);
#endif
#endif
#endif

@ -1053,11 +1053,12 @@ main(int argc, char **argv)
TS("E_Comp_Canvas Keys Grab");
e_comp_canvas_keys_grab();
TS("E_Comp_Canvas Keys Grab Done");
#ifdef HAVE_ELPUT
TS("E_Gesture Init");
e_gesture_init();
TS("E_Gesture Init Done");
_e_main_shutdown_push(e_gesture_shutdown);
#endif
TS("Run Startup Apps");
if (!nostartup)

@ -33,10 +33,12 @@ e_modapi_init(E_Module *m)
_("Edge Bindings"), NULL,
"preferences-desktop-edge-bindings",
e_int_config_edgebindings);
#ifdef HAVE_ELPUT
e_configure_registry_item_add("keyboard_and_mouse/swipe_bindings", 10,
_("Swipe Bindings"), NULL,
"preferences-desktop-swipe-bindings",
e_int_config_swipebindings);
#endif
e_configure_registry_category_add("advanced", 80, _("Advanced"), NULL, "preferences-advanced");
e_configure_registry_item_add("advanced/signal_bindings", 10,

@ -5,8 +5,9 @@ src = files(
'e_int_config_keybindings.c',
'e_int_config_mousebindings.c',
'e_int_config_signalbindings.c',
'e_int_config_swipebindings.c',
'e_mod_main.h'
)
if get_option('gesture-recognition') == true
src += files('e_int_config_swipebindings.c')
endif
desktop_only = true

Loading…
Cancel
Save