diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 146 |
1 files changed, 74 insertions, 72 deletions
diff --git a/configure.ac b/configure.ac index 76a34cd83..663306638 100644 --- a/configure.ac +++ b/configure.ac @@ -5,6 +5,17 @@ AC_COPYRIGHT([ Copyright (C) 2007 Collabora Ltd. ]) +AC_CONFIG_AUX_DIR(.) + +AM_CONFIG_HEADER(config.h) +AM_INIT_AUTOMAKE(1.9 dist-bzip2 no-define) + +AM_MAINTAINER_MODE + +AC_ISC_POSIX +AC_PROG_CC +AC_HEADER_STDC + # LT Version numbers, remember to change them just *before* a release. # (Interfaces removed: CURRENT++, AGE=0, REVISION=0) # (Interfaces added: CURRENT++, AGE++, REVISION=0) @@ -24,7 +35,18 @@ AC_SUBST(LIBEMPATHY_GTK_CURRENT) AC_SUBST(LIBEMPATHY_GTK_AGE) AC_SUBST(LIBEMPATHY_GTK_REVISION) -# Minimal version required +AM_PROG_LIBTOOL +AM_PATH_GLIB_2_0 +AC_PATH_XTRA + +AC_PATH_PROG(DBUS_BINDING_TOOL, dbus-binding-tool) +AC_PATH_PROG(GCONFTOOL, gconftool-2) +AM_GCONF_SOURCE_2 + +IT_PROG_INTLTOOL([0.35.0]) + +GTK_DOC_CHECK([1.3]) + GLIB_REQUIRED=2.14.0 GTK_REQUIRED=2.12.0 GCONF_REQUIRED=1.2.0 @@ -34,34 +56,37 @@ TELEPATHY_REQUIRED=0.3.1 TELEPATHY_GLIB_REQUIRED=0.7.0 MISSION_CONTROL_REQUIRED=4.37 -# Uncomment that to build without deprecated symbols -# AC_DEFINE(GTK_DISABLE_DEPRECATED, 1, [Disable deprecated GTK symbols]) -# AC_DEFINE(G_DISABLE_DEPRECATED, 1, [Disable deprecated GLib symbols]) -# AC_DEFINE(LIBTELEPATHY_DISABLE_DEPRECATED, 1, [Disable deprecated libtelepathy symbols]) - -AC_CONFIG_MACRO_DIR([m4]) -AC_CONFIG_AUX_DIR(.) -AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(1.9 dist-bzip2 no-define) -AM_MAINTAINER_MODE -AC_ISC_POSIX -AC_PROG_CC -AC_HEADER_STDC -AM_PROG_LIBTOOL -AM_PATH_GLIB_2_0 -AC_PATH_XTRA -IT_PROG_INTLTOOL([0.35.0]) -GTK_DOC_CHECK([1.3]) IDT_COMPILE_WARNINGS -AC_PATH_PROG(DBUS_BINDING_TOOL, dbus-binding-tool) -AC_PATH_PROG(GCONFTOOL, gconftool-2) -AM_GCONF_SOURCE_2 + +dnl Uncomment that to build without deprecated symbols +dnl AC_DEFINE(GTK_DISABLE_DEPRECATED, 1, [Disable deprecated GTK symbols]) +dnl AC_DEFINE(G_DISABLE_DEPRECATED, 1, [Disable deprecated GLib symbols]) +dnl AC_DEFINE(LIBTELEPATHY_DISABLE_DEPRECATED, 1, [Disable deprecated libtelepathy symbols]) + GLIB_GENMARSHAL=`$PKG_CONFIG glib-2.0 --variable=glib_genmarshal` AC_SUBST(GLIB_GENMARSHAL) -# ----------------------------------------------------------- -# Pkg-Config dependency checks -# ----------------------------------------------------------- +dnl ----------------------------------------------------------- +dnl SVN for ChangeLog generation +dnl ----------------------------------------------------------- + +AC_SUBST([SVN_ROOT],[http://svn.gnome.org/svn]) +AC_SUBST([SVN_MODULE],[empathy]) +AC_SUBST([SVN_BRANCH],["trunk"]) + +dnl ----------------------------------------------------------- +dnl Language Support +dnl ----------------------------------------------------------- + +GETTEXT_PACKAGE=empathy +AC_SUBST(GETTEXT_PACKAGE) +AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name]) + +AM_GLIB_GNU_GETTEXT + +dnl ----------------------------------------------------------- +dnl Pkg-Config dependency checks +dnl ----------------------------------------------------------- PKG_CHECK_MODULES(LIBEMPATHY, [ @@ -90,19 +115,9 @@ PKG_CHECK_MODULES(EMPATHY, libebook-1.2 ]) -# ----------------------------------------------------------- -# Language Support -# ----------------------------------------------------------- - -GETTEXT_PACKAGE=empathy -AC_SUBST(GETTEXT_PACKAGE) -AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name]) - -AM_GLIB_GNU_GETTEXT - -# ----------------------------------------------------------- -# ISO codes, used for aspell support -# ----------------------------------------------------------- +dnl ----------------------------------------------------------- +dnl ISO codes, used for aspell support +dnl ----------------------------------------------------------- AC_MSG_CHECKING([whether iso-codes exists and has iso-639 domain]) if $PKG_CONFIG --variable=domains iso-codes | grep -q 639 ; then AC_MSG_RESULT([yes]) @@ -118,9 +133,9 @@ fi AC_DEFINE_UNQUOTED([ISO_CODES_PREFIX],["$iso_codes_prefix"],[ISO codes prefix]) -# ----------------------------------------------------------- -# ASpell -# ----------------------------------------------------------- +dnl ----------------------------------------------------------- +dnl ASpell +dnl ----------------------------------------------------------- AC_ARG_ENABLE(aspell, AS_HELP_STRING([--enable-aspell=@<:@no/yes/auto@:>@], [compile with aspell support]), , @@ -148,9 +163,9 @@ if test "x$enable_aspell" = "xyes" -a "x$have_aspell" != "xyes"; then fi -# ----------------------------------------------------------- -# Megaphone -# ----------------------------------------------------------- +dnl ----------------------------------------------------------- +dnl Megaphone +dnl ----------------------------------------------------------- AC_ARG_ENABLE(megaphone, AS_HELP_STRING([--enable-megaphone=@<:@no/yes/auto@:>@], [build megaphone applet]), , @@ -178,9 +193,9 @@ fi AM_CONDITIONAL(HAVE_MEGAPHONE, test "x$have_megaphone" = "xyes") -# ----------------------------------------------------------- -# Nothere -# ----------------------------------------------------------- +dnl ----------------------------------------------------------- +dnl Nothere +dnl ----------------------------------------------------------- AC_ARG_ENABLE(nothere, AS_HELP_STRING([--enable-nothere=@<:@no/yes/auto@:>@], [build nothere applet]), , @@ -207,32 +222,19 @@ fi AM_CONDITIONAL(HAVE_NOTHERE, test "x$have_nothere" = "xyes") -# ----------------------------------------------------------- -# Tests -# ----------------------------------------------------------- +dnl ----------------------------------------------------------- +dnl Tests +dnl ----------------------------------------------------------- AC_ARG_ENABLE(tests, - AS_HELP_STRING([--enable-tests=@<:@no/yes/auto@:>@], + AS_HELP_STRING([--enable-tests=@<:@no/yes@:>@], [build tests]), , enable_tests=no) -if test "x$enable_tests" != "xno"; then - PKG_CHECK_MODULES(CHECK, - [ - check >= 0.9.4 - ], have_check="yes", have_check="no") -else - have_check=no -fi - -if test "x$enable_tests" = "xyes" -a "x$have_check" != "xyes"; then - AC_MSG_ERROR([Couldn't find check dependencies.]) -fi - -AM_CONDITIONAL(HAVE_TESTS, test "x$have_check" = "xyes") +AM_CONDITIONAL(HAVE_TESTS, test "x$enable_tests" = "xyes") -# ----------------------------------------------------------- -# Python Bindings -# ----------------------------------------------------------- +dnl ----------------------------------------------------------- +dnl Python Bindings +dnl ----------------------------------------------------------- AC_ARG_ENABLE(python, AS_HELP_STRING([--enable-python=@<:@no/yes/auto@:>@], [build python bindings to libempathy and libempathy-gtk]), , @@ -267,9 +269,9 @@ fi AM_CONDITIONAL(HAVE_PYTHON, test "x$have_python" = "xyes") -# ----------------------------------------------------------- -# VoIP support -# ----------------------------------------------------------- +dnl ----------------------------------------------------------- +dnl VoIP support +dnl ----------------------------------------------------------- AC_ARG_ENABLE(voip, AS_HELP_STRING([--enable-voip=@<:@no/yes@:>@], [Add support for Voice and Video call]), , @@ -281,7 +283,7 @@ fi AM_CONDITIONAL(HAVE_VOIP, test "x$enable_voip" = "xyes") -# ----------------------------------------------------------- +dnl ----------------------------------------------------------- AC_OUTPUT([ Makefile |