Message ID | 20241004092533.34368-1-brgl@bgdev.pl |
---|---|
State | New |
Headers | show |
Series | [libgpiod] build: add an additional check for glib-mkenums | expand |
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> On Fri, 04 Oct 2024 11:25:33 +0200, Bartosz Golaszewski wrote: > Some distros split glib-mkenums and other GLib build utilities into a > separate package but the glib-2.0 pkgconfig file pointing to it is > typically shipped as part of the -dev package. This can lead to a > situation where configure thinks it knows where glib-mkenums is but make > then fails because it's not really installed on the system. Check the > existence of the actual executable in addition to querying pkgconfig. > > [...] Applied, thanks! [1/1] build: add an additional check for glib-mkenums commit: 0e4198b9eef1eeedf8cf12e970b36d4e50a1da48 Best regards,
diff --git a/configure.ac b/configure.ac index cfa0997..60ccb1c 100644 --- a/configure.ac +++ b/configure.ac @@ -281,6 +281,9 @@ fi AM_CONDITIONAL([WITH_BINDINGS_GLIB], [test "x$with_bindings_glib" = xtrue]) +AC_DEFUN([GLIB_MKENUMS_NOT_FOUND], + [AC_MSG_ERROR([glib-mkenums not found - needed to build GLib bindings])]) + if test "x$with_bindings_glib" = xtrue then PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.80]) @@ -288,8 +291,12 @@ then PKG_CHECK_MODULES([GIO], [gio-2.0 >= 2.80]) PKG_CHECK_MODULES([GIO_UNIX], [gio-unix-2.0 >= 2.80]) PKG_PROG_PKG_CONFIG([0.28]) - PKG_CHECK_VAR([GLIB_MKENUMS], [glib-2.0], [glib_mkenums], [], - AC_MSG_ERROR([glib-mkenums not found - needed to build GLib bindings])) + PKG_CHECK_VAR([GLIB_MKENUMS], [glib-2.0], [glib_mkenums], [], GLIB_MKENUMS_NOT_FOUND) + AC_CHECK_PROG([has_glib_mkenums], [glib-mkenums], [true], [false]) + if test "x$has_glib_mkenums" == xfalse + then + GLIB_MKENUMS_NOT_FOUND + fi AC_CHECK_PROG([has_gi_docgen], [gi-docgen], [true], [false]) if test "x$has_gi_docgen" = xfalse