Skip to content

Commit

Permalink
Remove GtkSourceView dependency as we no longer use it
Browse files Browse the repository at this point in the history
  • Loading branch information
lukefromdc committed Nov 22, 2024
1 parent 2e0685c commit 0ec86be
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 1 addition & 8 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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 ***
Expand Down
2 changes: 0 additions & 2 deletions stickynotes/stickynotes.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
#include <libwnck/libwnck.h>
#include <stickynotes_applet.h>

#include <gtksourceview/gtksource.h>

typedef struct
{
GtkWidget *w_window; /* Sticky Note window */
Expand Down

0 comments on commit 0ec86be

Please sign in to comment.