1
0
Fork 0

build: Require libgudev >= 232

And remove the g_autoptr implementations in mutter itself.

https://bugzilla.gnome.org/show_bug.cgi?id=760670
This commit is contained in:
Bastien Nocera 2017-09-01 02:06:38 +02:00
parent 46f54eb3d9
commit 361bf847af
2 changed files with 2 additions and 6 deletions

View file

@ -225,10 +225,10 @@ AC_MSG_CHECKING([gudev])
if test x$with_gudev = xno ; then if test x$with_gudev = xno ; then
AC_MSG_RESULT([disabled]) AC_MSG_RESULT([disabled])
else else
if $PKG_CONFIG --exists gudev-1.0; then if $PKG_CONFIG --exists "gudev-1.0 >= 232"; then
have_gudev=yes have_gudev=yes
AC_MSG_RESULT(yes) AC_MSG_RESULT(yes)
MUTTER_PC_MODULES="$MUTTER_PC_MODULES gudev-1.0" MUTTER_PC_MODULES="$MUTTER_PC_MODULES gudev-1.0 >= 232"
AC_DEFINE([HAVE_LIBGUDEV], 1, [Building with gudev for device type detection]) AC_DEFINE([HAVE_LIBGUDEV], 1, [Building with gudev for device type detection])
else else
AC_MSG_RESULT(no) AC_MSG_RESULT(no)

View file

@ -49,10 +49,6 @@
#define DRM_CARD_UDEV_DEVICE_TYPE "drm_minor" #define DRM_CARD_UDEV_DEVICE_TYPE "drm_minor"
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUdevDevice, g_object_unref)
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUdevClient, g_object_unref)
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUdevEnumerator, g_object_unref)
struct _MetaLauncher struct _MetaLauncher
{ {
Login1Session *session_proxy; Login1Session *session_proxy;