Menu

#10 wmudmount v2.2 - gtk3 version check inadequate

v1.0 (example)
invalid
nobody
None
5
2017-10-22
2017-10-21
J G Miller
No

In wmdumount v2.2, akslabel.c and askpass.c use the GTK function gtk_label_set_xalign

This GTK function was introduced in GTK v3.16 and therefore building of wmudmount v2.2 on systems with older version of GTK (eg Linux Mint 17.3, Ubuntu 14.04 with libgtk-3 which have GTK v3.10.8)

The version check in configure is therefore inadequate since it checks for GTK at least v3.8.0

In configure.ac, line 63 should therefore be chaged from

AM_PATH_GYK_3_0(3.8.0,,[AC_MSG_ERROR(cannot find libgtk3)])

to

AM_PATH_GTK_3_0(3.16.0,,[AC_MSG_ERROR(cannot find libgtk3 at least version 3.16.0)])

(NB execute "bootstrap" script after editing configure.ac to generate new configure script.)

Discussion

  • Brad Jorsch

    Brad Jorsch - 2017-10-22
    • status: unread --> invalid
     
  • Brad Jorsch

    Brad Jorsch - 2017-10-22

    I see no references to gtk_label_set_xalign in those files in 2.2, or in any file in any version.

     

Log in to post a comment.