sysinfo: fix linux build.

This commit is contained in:
Al Poole 2018-02-24 18:40:24 +00:00
parent e33a14b7e8
commit 46764d5975
2 changed files with 2 additions and 2 deletions

View File

@ -590,7 +590,7 @@ cpuclock_configure(Instance *inst)
frequency / 1000000.);
#endif
elm_object_text_set(o, buf);
evas_object_data_set(o, "frequency", (void *) (int) frequency);
evas_object_data_set(o, "frequency", (void *) (long) frequency);
elm_box_pack_end(box, o);
evas_object_smart_callback_add(o, "changed", _frequency_changed, cc);
evas_object_show(o);

View File

@ -57,7 +57,7 @@ if get_option(m) == true
suid_exes += join_paths(_dir_bin, 'cpuclock_sysfs')
endif
if get_option(m) == true
if get_option(m) == true and host_os.startswith('freebsd') or host_os.startswith('dragonfly')
executable('cpuclock_sysctl',
'cpuclock/cpuclock_sysctl.c',
c_args : suid_cflags,