2011-11-07 13:46:58 -06:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
|
|
|
|
AC_PREREQ(2.63.2)
|
|
|
|
|
2016-02-04 03:20:42 -06:00
|
|
|
m4_define(xed_major_version, 1)
|
2016-11-02 10:56:01 -05:00
|
|
|
m4_define(xed_minor_version, 2)
|
2016-12-12 06:44:11 -06:00
|
|
|
m4_define(xed_micro_version, 2)
|
2016-02-04 03:20:42 -06:00
|
|
|
m4_define(xed_version, xed_major_version.xed_minor_version.xed_micro_version)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-02-04 03:20:42 -06:00
|
|
|
AC_INIT([xed], [xed_version],
|
|
|
|
[https://github.com/linuxmint/xed/issues],
|
|
|
|
[xed], [http://github.com/linuxmint/xed])
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
AC_CONFIG_HEADERS(config.h)
|
2016-02-04 03:20:42 -06:00
|
|
|
AC_CONFIG_SRCDIR(xed/xed.c)
|
2011-11-07 13:46:58 -06:00
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
|
|
|
2016-02-04 03:20:42 -06:00
|
|
|
AC_DEFINE(XED_MAJOR_VERSION, xed_major_version, [Xed major version])
|
|
|
|
AC_SUBST(XED_MAJOR_VERSION, xed_major_version)
|
|
|
|
AC_DEFINE(XED_MINOR_VERSION, xed_minor_version, [Xed minor version])
|
|
|
|
AC_SUBST(XED_MINOR_VERSION, xed_minor_version)
|
|
|
|
AC_DEFINE(XED_MICRO_VERSION, xed_micro_version, [Xed micro version])
|
|
|
|
AC_SUBST(XED_MICRO_VERSION, xed_micro_version)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2014-02-17 03:39:03 -06:00
|
|
|
AM_INIT_AUTOMAKE([1.10 dist-xz no-dist-gzip -Wno-portability check-news])
|
2011-11-07 13:46:58 -06:00
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
|
|
|
|
|
|
|
|
# Checks for programs
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_PROG_MAKE_SET
|
|
|
|
AC_SYS_LARGEFILE
|
|
|
|
PKG_PROG_PKG_CONFIG
|
|
|
|
|
|
|
|
# Initialize libtool
|
|
|
|
LT_PREREQ([2.2.6])
|
|
|
|
LT_INIT(disable-static)
|
|
|
|
|
|
|
|
GTK_DOC_CHECK([1.0],[--flavour=no-tmpl])
|
|
|
|
|
|
|
|
AC_CHECK_FUNC(sigaction)
|
|
|
|
AC_CHECK_LIB(m, floor)
|
|
|
|
|
|
|
|
dnl make sure we keep ACLOCAL_FLAGS around for maintainer builds to work
|
|
|
|
AC_SUBST(ACLOCAL_AMFLAGS, "$ACLOCAL_FLAGS -I m4")
|
|
|
|
|
2013-01-24 14:05:07 -06:00
|
|
|
dnl toolbar style for GSettings schemas
|
2016-02-04 03:20:42 -06:00
|
|
|
TOOLBAR_STYLE="XED_TOOLBAR_SYSTEM"
|
2011-11-07 13:46:58 -06:00
|
|
|
AC_SUBST(TOOLBAR_STYLE)
|
|
|
|
|
2015-09-08 10:19:35 -05:00
|
|
|
# GLib min/max required versions
|
|
|
|
AC_DEFINE([GLIB_VERSION_MAX_ALLOWED], [GLIB_VERSION_2_36],
|
|
|
|
[Warn on use of APIs added after GLib 2.36])
|
|
|
|
AC_DEFINE([GLIB_VERSION_MIN_REQUIRED], [GLIB_VERSION_2_36],
|
|
|
|
[Warn on use of APIs deprecated before GLib 2.36])
|
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
dnl ===============================================================
|
|
|
|
dnl Expanded dirs
|
|
|
|
dnl ===============================================================
|
|
|
|
|
|
|
|
# This macro expands DIR and assigns it to RET.
|
|
|
|
# If DIR is NONE, then it's replaced by DEFAULT.
|
|
|
|
# Based on AC_DEFINE_DIR
|
2016-02-04 03:20:42 -06:00
|
|
|
AC_DEFUN([XED_FULLPATH], [
|
2011-11-07 13:46:58 -06:00
|
|
|
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
|
|
|
|
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
|
|
|
ac_expand=[$]$1
|
|
|
|
test "x$ac_expand" = xNONE && ac_expand="[$]$2"
|
|
|
|
ac_expand=`eval echo [$]ac_expand`
|
|
|
|
$3=`eval echo [$]ac_expand`
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl ================================================================
|
|
|
|
dnl Gettext stuff.
|
|
|
|
dnl ================================================================
|
|
|
|
|
2015-06-15 17:56:55 -05:00
|
|
|
IT_PROG_INTLTOOL([0.50.1])
|
2016-02-04 03:20:42 -06:00
|
|
|
GETTEXT_PACKAGE=xed
|
2014-01-01 12:38:07 -06:00
|
|
|
AC_SUBST([GETTEXT_PACKAGE])
|
2011-11-07 13:46:58 -06:00
|
|
|
AM_GLIB_GNU_GETTEXT
|
2014-01-01 12:38:07 -06:00
|
|
|
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Define to the Gettext package name])
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
dnl ================================================================
|
|
|
|
dnl Use gvfs metadata or the old xml file store.
|
|
|
|
dnl ================================================================
|
|
|
|
|
|
|
|
AC_ARG_ENABLE([gvfs-metadata],
|
|
|
|
AS_HELP_STRING([--enable-gvfs-metadata], [Enable using gvfs to store metadata]),
|
|
|
|
[enable_gvfs_metadata=$enableval],
|
2015-08-25 06:40:58 -05:00
|
|
|
[enable_gvfs_metadata=yes])
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
AM_CONDITIONAL(ENABLE_GVFS_METADATA, test "x$enable_gvfs_metadata" != "xno")
|
|
|
|
|
|
|
|
if test "x$enable_gvfs_metadata" != "xno"; then
|
|
|
|
AC_DEFINE([ENABLE_GVFS_METADATA], [1], [Define to enable using gvfs metadata])
|
|
|
|
fi
|
|
|
|
|
|
|
|
dnl ================================================================
|
|
|
|
dnl spell plugins checks: enchant and iso-codes
|
|
|
|
dnl ================================================================
|
|
|
|
|
|
|
|
ENCHANT_REQUIRED=1.2.0
|
|
|
|
ISO_CODES_REQUIRED=0.35
|
|
|
|
|
|
|
|
AC_ARG_ENABLE([spell],
|
|
|
|
AS_HELP_STRING([--disable-spell],[Disable spell plugin (default: enabled)]),
|
|
|
|
[enable_enchant=$enableval],
|
|
|
|
[enable_enchant=yes])
|
|
|
|
|
|
|
|
if test "x$enable_enchant" = "xyes" ; then
|
|
|
|
|
|
|
|
PKG_CHECK_MODULES(ENCHANT, enchant >= $ENCHANT_REQUIRED, \
|
|
|
|
have_enchant=yes, have_enchant=no)
|
|
|
|
|
|
|
|
if test "x$have_enchant" = "xyes"; then
|
|
|
|
|
|
|
|
PKG_CHECK_EXISTS([iso-codes >= $ISO_CODES_REQUIRED],
|
|
|
|
[have_iso_codes=yes],[have_iso_codes=no])
|
|
|
|
|
|
|
|
if test "x$have_iso_codes" = "xyes"; then
|
|
|
|
AC_MSG_CHECKING([whether iso-codes has iso-639 and iso-3166 domains])
|
|
|
|
if $PKG_CONFIG --variable=domains iso-codes | grep 639 > /dev/null && \
|
|
|
|
$PKG_CONFIG --variable=domains iso-codes | grep 3166 > /dev/null ; then
|
|
|
|
result=yes
|
|
|
|
else
|
|
|
|
result=no
|
|
|
|
have_iso_codes=no
|
|
|
|
fi
|
|
|
|
AC_MSG_RESULT([$result])
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "x$have_iso_codes" = "xyes"; then
|
|
|
|
AC_DEFINE_UNQUOTED([ISO_CODES_PREFIX],["`$PKG_CONFIG --variable=prefix iso-codes`"],[ISO codes prefix])
|
|
|
|
AC_DEFINE([HAVE_ISO_CODES],[1],[Define if you have the iso-codes package])
|
|
|
|
else
|
|
|
|
AC_MSG_ERROR([iso-codes is required to build the spell plugin. Use --disable-spell to build without spell plugin.])
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
enable_enchant=no
|
|
|
|
AC_MSG_ERROR([Enchant library not found or too old. Use --disable-spell to build without spell plugin.])
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
AM_CONDITIONAL(ENABLE_ENCHANT, test x"$enable_enchant" = "xyes")
|
|
|
|
|
|
|
|
dnl ================================================================
|
|
|
|
dnl Start of pkg-config checks
|
|
|
|
dnl ================================================================
|
|
|
|
|
2012-05-15 20:54:49 -05:00
|
|
|
PKG_CHECK_MODULES(GMODULE,gmodule-2.0,[GMODULE_ADD="gmodule-2.0"],[GMODULE_ADD=""])
|
2016-02-04 03:20:42 -06:00
|
|
|
PKG_CHECK_MODULES(XED, [
|
2011-11-07 13:46:58 -06:00
|
|
|
libxml-2.0 >= 2.5.0
|
2014-12-16 06:05:53 -06:00
|
|
|
glib-2.0 >= 2.36.0
|
2013-10-29 18:54:14 -05:00
|
|
|
$GMODULE_ADD
|
2011-11-07 13:46:58 -06:00
|
|
|
gthread-2.0 >= 2.13.0
|
2013-01-24 14:05:07 -06:00
|
|
|
gio-2.0 >= 2.26.0
|
2016-07-20 02:50:32 -05:00
|
|
|
gtk+-3.0 >= 3.10.0
|
|
|
|
gtksourceview-3.0 >= 2.9.7
|
2016-12-26 14:53:23 -06:00
|
|
|
libpeas-1.0 >= 1.12.0
|
|
|
|
libpeas-gtk-1.0 >= 1.12.0
|
2011-11-07 13:46:58 -06:00
|
|
|
])
|
|
|
|
|
2015-08-25 06:40:58 -05:00
|
|
|
PKG_CHECK_MODULES(X11, [x11])
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-02-04 03:20:42 -06:00
|
|
|
XED_CFLAGS="$XED_CFLAGS $X11_CFLAGS"
|
|
|
|
XED_LIBS="$XED_LIBS $X11_LIBS"
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-02-04 03:20:42 -06:00
|
|
|
AC_SUBST(XED_CFLAGS)
|
|
|
|
AC_SUBST(XED_LIBS)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2015-08-25 06:40:58 -05:00
|
|
|
PKG_CHECK_MODULES(EGG_SMCLIENT, [sm >= 1.0.0])
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
AC_SUBST(EGG_SMCLIENT_CFLAGS)
|
|
|
|
AC_SUBST(EGG_SMCLIENT_LIBS)
|
|
|
|
|
2016-12-26 12:56:42 -06:00
|
|
|
# Introspection
|
|
|
|
GOBJECT_INTROSPECTION_CHECK([0.9.3])
|
|
|
|
|
|
|
|
if test "$found_introspection" = "yes"; then
|
|
|
|
have_introspection=yes
|
|
|
|
AC_DEFINE([HAVE_INTROSPECTION], [1], [Define to enable GObject Introspection])
|
|
|
|
else
|
|
|
|
have_introspection=no
|
|
|
|
fi
|
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
dnl ================================================================
|
2013-01-24 14:05:07 -06:00
|
|
|
dnl GSettings related settings
|
2011-11-07 13:46:58 -06:00
|
|
|
dnl ================================================================
|
|
|
|
|
2013-01-24 14:05:07 -06:00
|
|
|
GLIB_GSETTINGS
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
dnl ================================================================
|
|
|
|
dnl Misc
|
|
|
|
dnl ================================================================
|
|
|
|
AC_PATH_PROG(GLIB_GENMARSHAL, glib-genmarshal)
|
|
|
|
AC_PATH_PROG(GLIB_MKENUMS, glib-mkenums)
|
|
|
|
|
2016-02-08 21:01:04 -06:00
|
|
|
GNOME_COMPILE_WARNINGS(yes)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(deprecations,
|
|
|
|
[AS_HELP_STRING([--enable-deprecations],
|
|
|
|
[warn about deprecated usages [default=no]])],,
|
|
|
|
[enable_deprecations=no])
|
|
|
|
|
|
|
|
if test "x$enable_deprecations" = "xyes"; then
|
|
|
|
DISABLE_DEPRECATED_CFLAGS="\
|
|
|
|
-DG_DISABLE_DEPRECATED \
|
|
|
|
-DGDK_DISABLE_DEPRECATED \
|
|
|
|
-DGTK_DISABLE_DEPRECATED \
|
|
|
|
-DGDK_PIXBUF_DISABLE_DEPRECATED \
|
2016-02-08 21:01:04 -06:00
|
|
|
-DGNOME_DISABLE_DEPRECATED"
|
2011-11-07 13:46:58 -06:00
|
|
|
AC_SUBST(DISABLE_DEPRECATED_CFLAGS)
|
|
|
|
fi
|
|
|
|
|
2015-09-29 05:38:04 -05:00
|
|
|
AC_ARG_ENABLE([tests],
|
|
|
|
AS_HELP_STRING([--enable-tests], [Enable the tests]),
|
|
|
|
[enable_tests=$enableval],
|
|
|
|
[enable_tests=yes])
|
|
|
|
|
|
|
|
AM_CONDITIONAL(ENABLE_TESTS, test x$enable_tests = xyes)
|
|
|
|
|
2015-08-25 06:40:58 -05:00
|
|
|
PLUGIN_LIBTOOL_FLAGS="-module -avoid-version"
|
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
AC_SUBST(PLUGIN_LIBTOOL_FLAGS)
|
|
|
|
|
2016-02-04 03:20:42 -06:00
|
|
|
XED_PLUGINS_DATA_DIR="$datadir/xed/plugins"
|
|
|
|
AC_SUBST(XED_PLUGINS_DATA_DIR)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-02-04 03:20:42 -06:00
|
|
|
XED_PLUGINS_LIBS_DIR="$libdir/xed/plugins"
|
|
|
|
AC_SUBST(XED_PLUGINS_LIBS_DIR)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2013-08-02 16:54:44 -05:00
|
|
|
YELP_HELP_INIT
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
AC_CONFIG_FILES([
|
|
|
|
Makefile
|
2016-02-04 03:20:42 -06:00
|
|
|
data/xed.desktop.in
|
|
|
|
data/xed-bugreport.sh
|
|
|
|
data/xed.pc
|
2016-01-25 08:13:49 -06:00
|
|
|
data/org.x.editor.gschema.xml
|
2011-11-07 13:46:58 -06:00
|
|
|
data/Makefile
|
|
|
|
docs/Makefile
|
|
|
|
docs/reference/Makefile
|
2016-02-04 03:20:42 -06:00
|
|
|
xed/dialogs/Makefile
|
|
|
|
xed/smclient/Makefile
|
|
|
|
xed/Makefile
|
2011-11-07 13:46:58 -06:00
|
|
|
help/Makefile
|
|
|
|
pixmaps/Makefile
|
|
|
|
plugins/Makefile
|
|
|
|
plugins/changecase/Makefile
|
|
|
|
plugins/docinfo/Makefile
|
|
|
|
plugins/filebrowser/Makefile
|
2016-01-25 08:13:49 -06:00
|
|
|
plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml
|
2011-11-07 13:46:58 -06:00
|
|
|
plugins/modelines/Makefile
|
|
|
|
plugins/sort/Makefile
|
|
|
|
plugins/spell/Makefile
|
2016-01-25 08:13:49 -06:00
|
|
|
plugins/spell/org.x.editor.plugins.spell.gschema.xml
|
2011-11-07 13:46:58 -06:00
|
|
|
plugins/taglist/Makefile
|
|
|
|
plugins/time/Makefile
|
2016-01-25 08:13:49 -06:00
|
|
|
plugins/time/org.x.editor.plugins.time.gschema.xml
|
2015-08-28 04:42:37 -05:00
|
|
|
plugins/trailsave/Makefile
|
2011-11-07 13:46:58 -06:00
|
|
|
po/Makefile.in
|
|
|
|
tests/Makefile
|
2015-08-25 06:40:58 -05:00
|
|
|
])
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
AC_OUTPUT
|
|
|
|
|
|
|
|
echo "
|
|
|
|
|
|
|
|
Configuration:
|
|
|
|
|
|
|
|
Source code location: ${srcdir}
|
2016-12-25 16:24:00 -06:00
|
|
|
Compiler: ${CC}
|
2011-11-07 13:46:58 -06:00
|
|
|
Spell Plugin enabled: $enable_enchant
|
|
|
|
Gvfs metadata enabled: $enable_gvfs_metadata
|
2016-12-26 12:56:42 -06:00
|
|
|
GObject Introspection: ${have_introspection}
|
2016-12-25 16:24:00 -06:00
|
|
|
Tests enabled: $enable_tests
|
2011-11-07 13:46:58 -06:00
|
|
|
"
|