summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorlukefromdc <[email protected]>2024-11-22 01:59:43 -0500
committerLuke from DC <[email protected]>2024-11-27 03:49:44 +0000
commit03bbe996c3d79461c89cac9e578b6ad01d1dcef9 (patch)
tree807ac7058faea0615e05b95e6e5372dca729e5d3 /configure.ac
parent96c3e4b883961fdeb6cc032388da6f5e7b942d58 (diff)
downloadmate-applets-03bbe996c3d79461c89cac9e578b6ad01d1dcef9.tar.bz2
mate-applets-03bbe996c3d79461c89cac9e578b6ad01d1dcef9.tar.xz
Remove GtkSourceView dependency as we no longer use it
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac9
1 files changed, 1 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index de5ec7d1..9233c8f6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -297,15 +297,8 @@ AC_ARG_ENABLE([stickynotes],
AS_HELP_STRING([--enable-stickynotes], [Enable stickynotes applet.]),
enable_stickynotes=$enableval,
enable_stickynotes=yes)
-if test "x$enable_stickynotes" = "xyes"; then
- PKG_CHECK_MODULES(STICKYNOTES, gtksourceview-4,
- have_gtksourceview=yes, have_gtksourceview=no)
- if test "x$enable_stickynotes" = "xyes" -a "x$have_gtksourceview" = "xno"; then
- AC_MSG_ERROR([Stickynotes explicitly requested but gtksourceview not found])
- fi
-fi
-AM_CONDITIONAL(BUILD_STICKYNOTES_APPLET, test "x$have_gtksourceview" = "xyes")
+AM_CONDITIONAL(BUILD_STICKYNOTES_APPLET, test "x$enable_stickynotes" = "xyes")
dnl ***************************************************************************
dnl *** keyboard accessibility status applet check ***