diff options
| author | Xiaotian Wu <[email protected]> | 2023-09-27 22:09:31 +0800 | 
|---|---|---|
| committer | raveit65 <[email protected]> | 2023-10-08 12:03:53 +0200 | 
| commit | 66b5dded076dea587e2d30adf64c22f6c6e4aa26 (patch) | |
| tree | 7a34153d55f87d4a6be6938d4b04ca4df9211257 | |
| parent | bfbb91b6edcf90501a236fa98a66340b83798297 (diff) | |
| download | mate-settings-daemon-66b5dded076dea587e2d30adf64c22f6c6e4aa26.tar.bz2 mate-settings-daemon-66b5dded076dea587e2d30adf64c22f6c6e4aa26.tar.xz  | |
remove dbus-glib from build system
| -rw-r--r-- | configure.ac | 5 | 
1 files changed, 1 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 3e6626a..11ba2b4 100644 --- a/configure.ac +++ b/configure.ac @@ -68,13 +68,11 @@ PKG_CHECK_MODULES(SETTINGS_DAEMON,  	gio-2.0 >= $GIO_REQUIRED_VERSION  	gmodule-2.0  	gthread-2.0 -	dbus-glib-1 >= $DBUS_GLIB_REQUIRED_VERSION  )  PKG_CHECK_MODULES(SETTINGS_PLUGIN,  	gtk+-3.0 >= $GTK_REQUIRED_VERSION  	gio-2.0 >= $GIO_REQUIRED_VERSION -	dbus-glib-1 >= $DBUS_GLIB_REQUIRED_VERSION  )  MSD_PLUGIN_LDFLAGS="-export_dynamic -module -avoid-version -no-undefined" @@ -341,7 +339,6 @@ AC_SUBST(NSS_DATABASE)  # ---------------------------------------------------------------------------  POLKIT_REQUIRED=0.97 -DBUS_REQUIRED=1.10.0  # PolicyKit detection; defaults to 'auto' (use it if it's available)  # @@ -357,7 +354,7 @@ if test "x$enable_polkit" = "xno" ; then    HAVE_POLKIT=no  else    HAVE_POLKIT=no -  PKG_CHECK_MODULES(POLKIT, polkit-gobject-1 >= $POLKIT_REQUIRED dbus-1 >= $DBUS_REQUIRED, HAVE_POLKIT=yes, HAVE_POLKIT=no) +  PKG_CHECK_MODULES(POLKIT, polkit-gobject-1 >= $POLKIT_REQUIRED, HAVE_POLKIT=yes, HAVE_POLKIT=no)    if test "x$enable_polkit" = "xyes" -a "x$HAVE_POLKIT" = "xno" ; then      AC_MSG_ERROR(PolicyKit support explicity enabled but not available)  | 
