[gtranslator] Kill plugins dependencies



commit 17091c762606f3f92cf1339986855c3120d68e3f
Author: Seán de Búrca <leftmostcat gmail com>
Date:   Wed Sep 4 15:41:29 2013 -0600

    Kill plugins dependencies

 configure.ac    |   63 -------------------------------------------------------
 src/Makefile.am |    2 -
 2 files changed, 0 insertions(+), 65 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 7570e47..f0aa013 100644
--- a/configure.ac
+++ b/configure.ac
@@ -149,69 +149,6 @@ else
 fi
 
 dnl -------------------------------------------------------------------
-dnl Check for gtkspell >= 3.0 and use it if found
-dnl -------------------------------------------------------------------
-have_gtkspell=no
-AC_ARG_WITH(gtkspell,
-            AS_HELP_STRING([--with-gtkspell],[Build with spell support]),,
-            with_gtkspell=auto)
-
-if test x"$with_gtkspell" != "xno"
-then
-        PKG_CHECK_MODULES([GTKSPELL], [
-                gtkspell3-3.0 >= $GTKSPELL_OPTIONAL
-        ], have_gtkspell=yes, have_gtkspell=no)
-
-        if test x"$have_gtkspell" = "xyes"
-        then
-                AC_DEFINE([HAVE_GTKSPELL], 1, [A usable GtkSpell library was found])
-        fi
-
-fi
-
-AM_CONDITIONAL(USE_GTKSPELL, test x"$have_gtkspell" = "xyes")
-
-AC_SUBST(GTKSPELL_CFLAGS)
-AC_SUBST(GTKSPELL_LIBS)
-
-dnl -------------------------------------------------------------------
-dnl Check for json-glib, needed for Open-tran
-dnl -------------------------------------------------------------------
-if test "x$enable_opentran" != "xno"; then
-       PKG_CHECK_MODULES(JSON_GLIB, [
-               json-glib-1.0 >= $JSON_GLIB_OPTIONAL
-               ], have_json_glib=yes, have_json_glib=no)
-       if test x"$have_json_glib" = "xyes"; then
-               AC_DEFINE(LIBJSON_GLIB_1_0, 1, [Define if libjson-glib support is enabled])
-       fi
-fi
-
-AM_CONDITIONAL(USE_LIBJSON_GLIB, test x"$have_json_glib" = "xyes")
-
-# ================================================================
-# gdict
-# ================================================================
-have_gdict=no
-AC_ARG_WITH(dictionary,
-           AS_HELP_STRING([--with-dictionary],[Build with dictionary support]),,
-           with_dictionary=auto)
-
-if test x"$with_dictionary" != "xno"
-then
-       PKG_CHECK_MODULES([DICTIONARY], [
-               gdict-1.0 >= $GDICT_OPTIONAL
-       ], have_gdict=yes, have_gdict=no)
-       
-       if test x"$have_gdict" = "xyes"
-       then
-               AC_DEFINE([HAVE_DICTIONARY], 1, [Have gdict])
-       fi
-
-fi
-
-AM_CONDITIONAL(USE_DICTIONARY, test x"$have_gdict" = "xyes")
-
-dnl -------------------------------------------------------------------
 dnl Enable debug builds.
 dnl -------------------------------------------------------------------
 AC_ARG_ENABLE(debug,
diff --git a/src/Makefile.am b/src/Makefile.am
index df65ab8..8bbf42b 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -13,7 +13,6 @@ INCLUDES = \
        -I$(top_srcdir)/src/toolbareditor                       \
        -I$(top_builddir)/src                                   \
        $(GTRANSLATOR_CFLAGS)                                   \
-       $(GTKSPELL_CFLAGS)                                      \
        $(WARN_CFLAGS)                                          \
        $(DISABLE_DEPRECATED_CFLAGS)                            \
        $(INTROSPECTION_CFLAGS)                                 \
@@ -29,7 +28,6 @@ gtranslator_LDADD =                   \
        libgtranslator.la               \
        libgtranslator-private.la       \
        $(GTRANSLATOR_LIBS)             \
-       $(GTKSPELL_LIBS)                \
        $(INTLLIBS)                     \
        $(INTROSPECTION_LIBS)           \
        $(GETTEXT_LIBS)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]