Added missing hg source to windows makefile
[geanyvc.git] / configure.in
blobc46d0bd9c44b70179531c21ea371592a92aaab11
1 dnl Process this file with autoconf to produce a configure script.
3 AC_PREREQ(2.59)
5 AC_INIT([geanyvc], [0.3], [yurand2@gmail.com])
7 AM_INIT_AUTOMAKE([1.9 foreign])
9 AM_CONFIG_HEADER(config.h)
11 AC_PROG_CC
12 AC_PROG_LIBTOOL
14 PKG_CHECK_MODULES(GEANY, [geany >= 0.14])
15 AC_SUBST(GEANY_CFLAGS)
16 AC_SUBST(GEANY_LIBS)
18 dnl Check for GtkSpell support
19 AC_MSG_CHECKING([whether to use GtkSpell])
20 AC_ARG_ENABLE(gtkspell,
21         [  --disable-gtkspell      Do not use GtkSpell in editor],
22         [ac_cv_enable_gtkspell=$enableval], [ac_cv_enable_gtkspell=yes])
23 if test "$ac_cv_enable_gtkspell" = yes; then
24         AC_MSG_RESULT(yes)
25         AC_MSG_CHECKING([whether GtkSpell is available])
26         if $PKG_CONFIG gtkspell-2.0 ; then
27                 AC_MSG_RESULT(yes)
28                 CFLAGS="$CFLAGS `$PKG_CONFIG --cflags gtkspell-2.0`"
29                 LIBS="$LIBS `$PKG_CONFIG --libs gtkspell-2.0`"
30                 AC_DEFINE(USE_GTKSPELL, 1, Use GtkSpell in editor)
31         else
32                 AC_MSG_RESULT(no)
33                 ac_cv_enable_gtkspell=no
34         fi
35 else
36         AC_MSG_RESULT(no)
40 AC_CONFIG_FILES([Makefile])
41 AC_OUTPUT
44 echo "----------------------------------------"
45 echo "Building with GtkSpell support : ${ac_cv_enable_gtkspell}"
46 echo ""
47 echo "Configuration is done OK."
48 echo ""