1 dnl Process this file with autoconf to produce a configure script.
5 m4_define(anjuta_major_version, 2)
6 m4_define(anjuta_minor_version, 91)
7 m4_define(anjuta_micro_version, 3)
8 m4_define(anjuta_nano_version, 0)
9 m4_define(anjuta_version, anjuta_major_version.anjuta_minor_version.anjuta_micro_version.anjuta_nano_version)
13 [http://bugzilla.gnome.org/enter_bug.cgi?product=anjuta],
15 [http://www.anjuta.org/])
17 AC_CONFIG_HEADERS([config.h])
18 AC_CONFIG_SRCDIR([src/main.c])
19 AC_CONFIG_MACRO_DIR([m4])
22 AC_DEFINE(ANJUTA_MAJOR_VERSION, anjuta_major_version, [Anjuta major version])
23 AC_SUBST(ANJUTA_MAJOR_VERSION, anjuta_major_version)
24 AC_DEFINE(ANJUTA_MINOR_VERSION, anjuta_minor_version, [Anjuta minor version])
25 AC_SUBST(ANJUTA_MINOR_VERSION, anjuta_minor_version)
26 AC_DEFINE(ANJUTA_MICRO_VERSION, anjuta_micro_version, [Anjuta micro version])
27 AC_SUBST(ANJUTA_MICRO_VERSION, anjuta_micro_version)
28 AC_DEFINE(ANJUTA_VERSION, anjuta_version, [Anjuta version])
29 AC_SUBST(ANJUTA_VERSION)
31 ANJUTA_VERSION=anjuta_version
32 AC_SUBST(ANJUTA_VERSION)
37 GTHREAD_REQUIRED=2.22.0
38 GDK_PIXBUF_REQUIRED=2.0.0
41 LIBXML_REQUIRED=2.4.23
46 GTKSOURCEVIEW_REQUIRED=2.10.5
49 LIBDEVHELP_REQUIRED=2.90.6
52 GLADEUI_REQUIRED=3.7.1
61 LIBGRAPHVIZ_REQUIRED=1.0
68 SUBVERSION_REQUIRED=$SVN_MAJOR.$SVN_MINOR.$SVN_PATCH
70 AM_INIT_AUTOMAKE([1.10 dist-bzip2 no-dist-gzip])
71 AM_MAINTAINER_MODE([enable])
73 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
75 dnl Check for C Compiler
79 if [["$LEX" != "flex"]]; then
80 AC_MSG_ERROR(flex is required)
83 if [["$YACC" != "bison"]]; then
84 AC_MSG_ERROR(bison is required)
90 GNOME_COMPILE_WARNINGS([maximum])
91 AM_CFLAGS="$AM_CFLAGS $WARN_CFLAGS"
92 AM_CXXFLAGS="$AM_CXXFLAGS $WARN_CXXFLAGS"
94 dnl Enable debugging mode
96 AS_HELP_STRING([--enable-debug],[Enable debug messages]),
97 [if test "x$enableval" = "xyes"; then
98 AM_CFLAGS="$AM_CFLAGS -DDEBUG"
100 AM_CXXFLAGS="$AM_CXXFLAGS -DDEBUG")
102 AC_SUBST(AM_CXXFLAGS)
104 ANJUTA_LDFLAGS="-no-undefined"
105 ANJUTA_PLUGIN_LDFLAGS="-module -avoid-version -no-undefined"
106 AC_SUBST(ANJUTA_LDFLAGS)
107 AC_SUBST(ANJUTA_PLUGIN_LDFLAGS)
112 dnl Disable deprecated APIs
113 dnl if test x$MAINT = x; then
114 dnl DEPRECATED_FLAGS="-DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED"
115 dnl AC_SUBST(DEPRECATED_FLAGS)
118 dnl Check for pkg-config
119 PKG_PROG_PKG_CONFIG([0.22])
121 dnl Enable versioned user preferences directory
122 AC_ARG_WITH(pref-suffix,
123 AS_HELP_STRING([--with-pref-suffix=VALUE],[Suffix to add to user preferences dir.]),
124 PREF_SUFFIX="$withval")
126 AC_SUBST(PREF_SUFFIX)
127 AC_DEFINE_UNQUOTED(PREF_SUFFIX,
129 [Suffix to add to preferences directory])
133 LT_INIT([disable-static])
135 dnl ***************************************************************************
136 dnl Check for GObject-Introspection
137 dnl ***************************************************************************
138 m4_ifdef([GOBJECT_INTROSPECTION_CHECK], [GOBJECT_INTROSPECTION_CHECK([0.6.7])],
139 [AM_CONDITIONAL(HAVE_INTROSPECTION, false)])
141 dnl ***************************************************************************
143 dnl ***************************************************************************
144 gjsdir=`pkg-config --variable=jsdir gjs-1.0`
147 dnl Check base modules
149 PKG_CHECK_MODULES([ANJUTA],
150 [gthread-2.0 >= $GTHREAD_REQUIRED
151 glib-2.0 >= $GLIB_REQUIRED
152 gio-2.0 >= $GLIB_REQUIRED
153 gtk+-3.0 >= $GTK_REQUIRED
154 gdk-pixbuf-2.0 >= $GDK_PIXBUF_REQUIRED])
156 PKG_CHECK_MODULES([XML],
157 [libxml-2.0 >= $LIBXML_REQUIRED])
159 PKG_CHECK_MODULES([GDL],
160 [gdl-3.0 >= $GDL_REQUIRED])
162 PKG_CHECK_MODULES([GDA],
163 [libgda-4.0 >= $GDA_REQUIRED])
165 PKG_CHECK_MODULES([VTE],
166 [vte-2.90 >= $VTE_REQUIRED])
169 dnl Check for autogen
170 dnl -----------------
171 AC_PATH_PROG(AUTOGEN_PATH, autogen,no)
172 if test x$AUTOGEN_PATH = xno; then
173 AC_MSG_WARN([Couldn't find autogen. You will be able to build anjuta without autogen \
174 but several things won't work. You can get it from http://autogen.sourceforge.net/])
177 dnl Check for Devhelp
178 dnl -----------------
180 AC_ARG_ENABLE(plugin-devhelp,
181 AS_HELP_STRING([--disable-plugin-devhelp],[Disable devhelp plugin support in Anjuta.]),
182 [ if test "$enableval" = "no"; then
183 user_disabled_devhelp=1
185 [ user_disabled_devhelp=0 ] )
187 AC_MSG_CHECKING(if devhelp plugin is disabled)
188 if test "$user_disabled_devhelp" = 1; then
193 PKG_CHECK_MODULES(PLUGIN_DEVHELP,
194 [libdevhelp-3.0 >= $LIBDEVHELP_REQUIRED],
202 AM_CONDITIONAL(HAVE_PLUGIN_DEVHELP, [test x$devhelp_enabled = xyes])
205 dnl ---------------------
207 AC_ARG_ENABLE(plugin-glade,
208 AS_HELP_STRING([--disable-plugin-glade],[Disable glade plugin support in Anjuta.]),
209 [ if test "$enableval" = "no"; then
210 user_disabled_glade=1
212 [ user_disabled_glade=0 ] )
214 AC_MSG_CHECKING(if glade plugin is disabled)
215 if test "$user_disabled_glade" = 1; then
221 PKG_CHECK_MODULES(PLUGIN_GLADE, gladeui-3.0 >= $GLADEUI_REQUIRED,
229 AM_CONDITIONAL(HAVE_PLUGIN_GLADE, [test x$gladeui_found = xyes])
231 dnl Check for gtksourceview
232 dnl -------------------------------------------------------------
234 AC_ARG_ENABLE(plugin-sourceview,
235 AS_HELP_STRING([--disable-plugin-sourceview],[Disable gtksourceview based editor in Anjuta]),
236 [ if test "$enableval" = "no"; then
237 user_disabled_sourceview=1
239 [ user_disabled_sourceview=0 ])
241 AC_MSG_CHECKING(if sourceview plugin is disabled)
242 if test "$user_disabled_sourceview" = 1; then
248 PKG_CHECK_MODULES(PLUGIN_SOURCEVIEW,
249 [gtksourceview-3.0 >= $GTKSOURCEVIEW_REQUIRED])
252 AM_CONDITIONAL(HAVE_PLUGIN_SOURCEVIEW, [test x$sourceview = xyes])
255 dnl -------------------------------------------------------------
258 AC_HELP_STRING([--disable-vala],[Disable vala support]),
259 [ if test "$enableval" = "no"; then
262 [ user_disabled_vala=0 ])
264 AC_MSG_CHECKING(if vala support is disabled)
265 if test "$user_disabled_vala" = 1; then
271 PKG_CHECK_MODULES(VALA,
272 [libvala-0.12 >= $VALA_REQUIRED])
275 if test x$enable_vala = xyes; then
276 AC_PATH_PROGS(VALAC, [valac-0.12 valac], valac)
280 AM_CONDITIONAL(ENABLE_VALA, [test x$enable_vala = xyes])
283 dnl -------------------------------------------------------------
289 if test x$have_python = xyes; then
290 if test -x $PYTHON-config; then
291 PYTHON_CFLAGS=`$PYTHON-config --cflags`
292 PYTHON_LIBS=`$PYTHON-config --libs`
293 AC_SUBST(PYTHON_CFLAGS)
294 AC_SUBST(PYTHON_LIBS)
300 AM_CONDITIONAL(HAVE_PYTHON, [test x$have_python = xyes])
302 PKG_CHECK_MODULES(PLUGIN_SYMBOL_DB,
303 [libgda-4.0 >= $GDA_REQUIRED])
305 dnl Setup Anjuta Library flags
306 dnl --------------------------
307 LIBANJUTA_CFLAGS='$(ANJUTA_CFLAGS) $(GDL_CFLAGS) $(DEPRECATED_FLAGS) -I$(top_srcdir) -I$(top_builddir)/libanjuta -DPACKAGE_PIXMAPS_DIR=\""$(datadir)/pixmaps/$(PACKAGE)"\" -DPACKAGE_LIB_DIR=\""$(pkglibdir)"\" -DPACKAGE_DATA_DIR=\""$(datadir)/$(PACKAGE)"\"'
308 LIBANJUTA_LIBS='$(top_builddir)/libanjuta/libanjuta-3.la'
309 AC_SUBST(LIBANJUTA_CFLAGS)
310 AC_SUBST(LIBANJUTA_LIBS)
312 dnl Setup FooCanvas Library flags
313 dnl --------------------------
314 LIBFOOCANVAS_CFLAGS='-I$(top_srcdir)'
315 LIBFOOCANVAS_LIBS='$(top_builddir)/libfoocanvas/libanjuta-foocanvas.la'
316 AC_SUBST(LIBFOOCANVAS_CFLAGS)
317 AC_SUBST(LIBFOOCANVAS_LIBS)
319 dnl Checks for Xft/XRender for foocanvas
321 AC_CHECK_LIB(Xrender, XRenderFindFormat,
322 [AC_SUBST(RENDER_LIBS, "-lXrender -lXext")
323 AC_DEFINE(HAVE_RENDER, 1, [Define if libXrender is available.])],
324 [AC_SUBST(RENDER_LIBS, "")],
327 dnl Setup Plugin directories
328 dnl ------------------------
329 anjuta_plugin_dir='$(libdir)/anjuta'
330 anjuta_data_dir='$(datadir)/anjuta'
331 anjuta_ui_dir='$(datadir)/anjuta/ui'
332 anjuta_glade_dir='$(datadir)/anjuta/glade'
333 anjuta_image_dir='$(datadir)/pixmaps/anjuta'
334 AC_SUBST(anjuta_plugin_dir)
335 AC_SUBST(anjuta_data_dir)
336 AC_SUBST(anjuta_ui_dir)
337 AC_SUBST(anjuta_glade_dir)
338 AC_SUBST(anjuta_image_dir)
340 dnl ***************************************************************************
341 dnl Check for marshal and enum generators
342 dnl ***************************************************************************
343 GLIB_GENMARSHAL="`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`"
344 AC_SUBST(GLIB_GENMARSHAL)
345 GLIB_MKENUMS="`$PKG_CONFIG --variable=glib_mkenums glib-2.0`"
346 AC_SUBST(GLIB_MKENUMS)
348 dnl Set up Glade 3 catlog information
349 dnl ---------------------
350 GLADE_PLUGINS_PATH="`$PKG_CONFIG --variable=moduledir gladeui-1.0`"
351 AC_SUBST(GLADE_PLUGINS_PATH)
352 GLADE_CATALOG_PATH="`$PKG_CONFIG --variable=catalogdir gladeui-1.0`"
353 AC_SUBST(GLADE_CATALOG_PATH)
355 dnl ***************************************************************************
356 dnl Internatinalization
357 dnl ***************************************************************************
358 IT_PROG_INTLTOOL([0.40.1])
360 AM_GNU_GETTEXT([external])
361 AM_GNU_GETTEXT_VERSION([0.17])
363 GETTEXT_PACKAGE=anjuta
364 AC_SUBST(GETTEXT_PACKAGE)
365 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [GETTEXT package name])
369 dnl ***************************************************************************
370 dnl Check for gtk-doc.
371 dnl ***************************************************************************
374 dnl ***************************************************************************
376 dnl ***************************************************************************
377 GNOME_DOC_INIT([0.18])
379 dnl Define convenience macros
380 dnl -------------------------
381 dnl CHECK_HEADER_DEFINE(LABEL, HEADER [,ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND ] ])
382 AC_DEFUN([CHECK_HEADER_DEFINE],
384 AC_MSG_CHECKING("if $1 is defined in $2")
398 dnl Checks for header files.
399 AC_CHECK_HEADERS(dirent.h fcntl.h fnmatch.h stat.h stdlib.h string.h stdint.h)
400 AC_CHECK_HEADERS(time.h types.h unistd.h)
401 AC_CHECK_HEADERS(sys/dir.h sys/stat.h sys/times.h sys/types.h)
403 dnl Checks for typedefs, structures, and compiler characteristics.
409 *cygwin* ) CYGWIN=yes;;
410 *mingw32* ) MINGW32=yes;;
421 AC_MSG_CHECKING("for fpos_t")
422 AC_EGREP_HEADER(fpos_t, stdio.h, AC_MSG_RESULT(yes),
425 AC_DEFINE(fpos_t, long, [fpos_t is type long])
428 AC_MSG_CHECKING("for clock_t")
429 AC_EGREP_HEADER(clock_t, time.h, AC_MSG_RESULT(yes),
432 AC_DEFINE(clock_t, long, [clock_t is type long])
435 CHECK_HEADER_DEFINE(L_tmpnam, stdio.h,, AC_DEFINE(L_tmpnam, 20, [L_tmpname is 20]))
437 CHECK_HEADER_DEFINE(INT_MAX, limits.h,,
438 CHECK_HEADER_DEFINE(MAXINT, limits.h,
439 AC_DEFINE(INT_MAX, MAXINT, [Maximum int size]), AC_DEFINE(INT_MAX, 32767, [Maximum int size])))
441 AC_MSG_CHECKING(if struct stat contains st_ino)
443 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/stat.h>]], [[
448 ]])],[have_st_ino=yes],[have_st_ino=no])
449 AC_MSG_RESULT($have_st_ino)
450 if test yes = "$have_st_ino"; then
451 AC_DEFINE(HAVE_STAT_ST_INO,,[Have stat st_ino])
455 dnl Check for bind in libsocket (needed on Solaris)
456 AC_CHECK_LIB(socket, bind)
458 dnl Check for function forkpty and related headers
459 AC_SEARCH_LIBS(forkpty, util, , AC_DEFINE(EMULATE_FORKPTY, [], [Need to implement our own forkpty()]))
460 AC_CHECK_HEADERS(libutil.h util.h pty.h)
462 dnl Checks for library functions.
463 AC_CHECK_FUNCS(fnmatch)
464 AC_CHECK_FUNCS(strstr)
465 AC_CHECK_FUNCS(stricmp)
466 AC_CHECK_FUNCS(strnicmp)
467 AC_CHECK_FUNCS(getline)
469 dnl for libegg/egg-recent-model.c
470 AC_CHECK_DECLS([lockf])
471 AC_CHECK_FUNCS([lockf])
473 AC_CHECK_FUNCS(fgetpos, have_fgetpos=yes)
475 dnl SEEK_SET should be in stdio.h, but may be in unistd.h on SunOS 4.1.x
476 if test "$have_fgetpos" != yes ; then
477 CHECK_HEADER_DEFINE(SEEK_SET, stdio.h,,
478 CHECK_HEADER_DEFINE(SEEK_SET, unistd.h,,
479 AC_DEFINE(SEEK_SET, 0, [Seek set 0])))
482 AC_CHECK_FUNCS(mkstemp, have_mkstemp=yes)
483 if test "$have_mkstemp" != yes ; then
484 AC_CHECK_FUNCS(chmod)
485 if test "$tmpdir_specified" = yes ; then
486 AC_MSG_RESULT(use of tmpnam overrides temporary directory selection)
489 AC_MSG_CHECKING(directory to use for temporary files)
490 if test -z "$enable_tmpdir" -o "$enable_tmpdir" = no -o "$enable_tmpdir" = yes ;
492 else tmpdir="$enable_tmpdir"
494 if test -d $tmpdir ; then
495 AC_MSG_RESULT($tmpdir)
496 AC_DEFINE_UNQUOTED(TMPDIR, "$tmpdir", [Directory for temporary files])
498 AC_MSG_WARN($tmpdir does not exist)
502 AC_CHECK_FUNCS(strerror opendir)
503 AC_CHECK_FUNCS(clock times, break)
504 AC_CHECK_FUNCS(remove, have_remove=yes,
505 CHECK_HEADER_DEFINE(remove, unistd.h,, AC_DEFINE(remove, unlink, [Remove is unlink])))
507 AC_CHECK_FUNCS(truncate, have_truncate=yes)
508 dnl === Cannot nest AC_CHECK_FUNCS() calls
509 if test "$have_truncate" != yes ; then
510 AC_CHECK_FUNCS(ftruncate, have_ftruncate=yes)
511 if test "$have_ftruncate" != yes ; then
512 AC_CHECK_FUNCS(chsize)
516 AC_CHECK_FUNCS(setenv, have_setenv=yes)
517 dnl === Cannot nest AC_CHECK_FUNCS() calls
518 if test "$have_setenv" != yes ; then
519 AC_CHECK_FUNCS(putenv, have_putenv=yes)
520 if test "$have_putenv" = yes ; then
521 AC_EGREP_HEADER(putenv, stdlib.h, have_putenv_prototype=yes)
522 if test "$have_putenv_prototype" = yes ; then
523 AC_MSG_CHECKING("putenv prototype")
524 AC_EGREP_HEADER([[^A-Za-zo-9_]putenv[ ]*\(.*const.*\)[ ]*;],
525 stdlib.h, AC_MSG_RESULT(correct),
527 AC_MSG_RESULT(no const)
528 AC_DEFINE(NON_CONST_PUTENV_PROTOTYPE,,[putenv has non constant prototype])
534 dnl -----------------------------
535 dnl Checks for FreeBSD Build
536 dnl -----------------------------
537 AC_MSG_CHECKING(if building on FreeBSD)
539 if test `uname -s` = "FreeBSD" ; then
541 FREEBSD_BUILD=-DFREEBSD
542 AC_SUBST(FREEBSD_BUILD)
543 AC_PATH_PROG(GMAKE, gmake, no)
544 if test "x$GMAKE" = "xno"; then
545 AC_MSG_ERROR(You need gmake installed to build Anjuta!)
554 dnl Checks for missing prototypes
555 dnl -----------------------------
556 AC_MSG_NOTICE([checking for missing prototypes...])
558 AC_DEFUN([CHECK_PROTO], [AC_EGREP_HEADER([[^A-Za-z0-9_]$1([ ]+[A-Za-z0-9_]*)?\(], $2,, AC_DEFINE(patsubst([NEED_PROTO_NAME], [NAME], translit($1, [a-z], [A-Z])),,[Do not know]) AC_MSG_RESULT(adding prototype for $1))])
560 if test "$have_remove" = yes ; then
561 CHECK_PROTO(remove, stdio.h)
563 CHECK_PROTO(unlink, unistd.h)
565 CHECK_PROTO(malloc, stdlib.h)
566 CHECK_PROTO(getenv, stdlib.h)
567 CHECK_PROTO(stat, sys/stat.h)
568 CHECK_PROTO(lstat, sys/stat.h)
569 if test "$have_fgetpos" = yes ; then
570 CHECK_PROTO(fgetpos, stdio.h)
572 if test "$have_truncate" = yes ; then
573 CHECK_PROTO(truncate, unistd.h)
575 if test "$have_ftruncate" = yes ; then
576 CHECK_PROTO(ftruncate, unistd.h)
579 dnl **********************************************************
580 dnl check if we have svn libraries to build subversion plugin
581 dnl (stolen from kdevelop ;-)
582 dnl **********************************************************
584 AC_MSG_CHECKING(for Subversion svn-config)
585 AC_ARG_WITH(subversion-dir,
586 AS_HELP_STRING([--with-subversion-dir=DIR],[Where Subversion is installed ]),
588 SVNCONFIG="$withval/bin/svn-config"
591 if test -z "$SVNCONFIG"; then
592 _SVNCONFIG="`svn-config --prefix 2> /dev/null`"
593 if test -n "$_SVNCONFIG"; then
594 SVNCONFIG="$_SVNCONFIG/bin/svn-config"
599 if test -x "$SVNCONFIG"; then
600 SVNLD="`$SVNCONFIG --ldflags 2> /dev/null`"
601 SVN_LIB="`$SVNCONFIG --libs --cflags 2> /dev/null` -lsvn_client-1 -lsvn_subr-1"
602 dnl ugly hack for subversion svn-config problems in 0.14.x, to be removed when svn-config is fixed
603 SVN_INCLUDE="`$SVNCONFIG --includes 2> /dev/null` -I$_SVNCONFIG/include/subversion-1/"
606 AC_MSG_RESULT(not found)
608 dnl just a fallback to debian's config so that it works for me :)
609 AC_ARG_WITH(svn-include,
610 [[ --with-svn-include=DIR Use the given path to the subversion headers.]],
612 if test "$withval" != "yes" -a "$withval" != ""; then
613 SVN_INCLUDES=$withval
616 if test -z "$SVN_INCLUDES"; then
617 SVN_INCLUDES="/usr/local/include /usr/include"
619 AC_MSG_CHECKING([for Subversion headers])
621 for VALUE in $SVN_INCLUDES ; do
622 if test -f $VALUE/subversion-1/svn_types.h ; then
623 SVN_INCLUDE=$VALUE/subversion-1
626 if test -f $VALUE/svn_types.h ; then
631 if test $SVN_INCLUDE ; then
632 AC_MSG_RESULT([found])
634 AC_MSG_RESULT([not found])
636 SVN_LIBS="/usr/local/lib64 /usr/local/lib /usr/lib64 /usr/lib"
638 [[ --with-svn-lib=DIR Use the given path to the subversion libraries.]],
640 if test "$withval" != "yes" -a "$withval" != ""; then
644 AC_MSG_CHECKING([for Subversion libraries])
646 for VALUE in $SVN_LIBS ; do
647 if ls $VALUE/libsvn_client-1.* 1>/dev/null 2>&1; then
652 if test $SVN_LIB ; then
653 AC_MSG_RESULT([found])
655 AC_MSG_RESULT([not found])
659 dnl ******************************************************************
660 dnl Check for extra libs required by subversion.
661 dnl FIXME: This should actually be done by subversion and not by us.
662 dnl ******************************************************************
664 AC_ARG_ENABLE(plugin-subversion,
665 AS_HELP_STRING([--disable-plugin-subversion],[Disable subversion support in Anjuta.]),
666 [ if test "$enableval" = "no"; then
667 user_disabled_subversion=1
669 [ user_disabled_subversion=0 ] )
671 AC_MSG_CHECKING(if subversion support is disabled)
672 if test "$user_disabled_subversion" = 1; then
680 if test -n "$SVN_INCLUDE" ; then
681 dnl ------------------------------------
682 dnl APR. Required by subversion (devel)
683 dnl ------------------------------------
685 PKG_CHECK_MODULES(APR, \
686 apr-1, have_apr=yes, have_apr=no)
687 if test x"$have_apr" = "xno"; then
691 dnl -----------------------------------------
692 dnl APR util. Required by subversion (devel)
693 dnl------------------------------------------
695 PKG_CHECK_MODULES(APR_UTILS, \
696 apr-util-1, have_apr_util=yes, have_apr_util=no)
697 if test x"$have_apr_util" = "xno"; then
701 dnl -----------------------------------------
702 dnl NEON. Required by subversion (devel)
703 dnl------------------------------------------
705 PKG_CHECK_MODULES(NEON, \
706 neon, have_neon=yes, have_neon=no)
707 if test x"$have_neon" = "xno"; then
711 dnl Make sure our SVN version is high enough
712 dnl Eww, eww, eww, this is dirty
713 AC_MSG_CHECKING([for subversion >= $SUBVERSION_REQUIRED])
715 dnl Temporarily set CFLAGS so that include dirs are found
717 CFLAGS="-I$SVN_INCLUDE $APR_CFLAGS"
719 [AC_LANG_PROGRAM([[#include <svn_version.h>]],
721 #if (SVN_VER_MAJOR < $SVN_MAJOR) || (SVN_VER_MINOR < $SVN_MINOR) || (SVN_VER_PATCH < $SVN_PATCH)
722 # error "Version too low"
724 ]])], AC_MSG_RESULT(yes), have_svn_version=no)
725 if test x"$have_svn_version" = "xno"; then
732 dnl ------------------------------------------
733 dnl Finally prepare subversion build flags
734 dnl ------------------------------------------
736 if test -n "$SVN_INCLUDE" ; then
737 SVN_INCLUDE="-I$SVN_INCLUDE"
738 if test x != "x$SVN_LIB" ; then
739 SVN_LIB="-L$SVN_LIB $APR_LIBS $APR_UTILS_LIBS $NEON_LIBS -lsvn_client-1 -lsvn_subr-1"
741 SVN_LIB="$APR_LIBS $APR_UTILS_LIBS $NEON_LIBS -lsvn_client-1 -lsvn_subr-1"
743 SVN_CFLAGS="$APR_CFLAGS $APR_UTILS_CFLAGS $NEON_CFLAGS"
746 AM_CONDITIONAL(BUILD_SVN, [test -n "$SVN_INCLUDE"])
747 AC_SUBST(SVN_INCLUDE)
751 dnl ------------------------------------------
752 dnl Symbol-db shared memory checks
753 dnl ------------------------------------------
755 SYMBOL_DB_SHM="/dev/shm"
757 AC_MSG_CHECKING(for symbol-db shared memory)
758 AC_ARG_WITH(symbol-db-shm,
759 AS_HELP_STRING([--with-symbol-db-shm=DIR],[Where shared memory is placed ]),
762 SYMBOL_DB_SHM="$withval"
764 if test "$user_specified_shm" = 1; then
770 AC_SUBST(SYMBOL_DB_SHM)
773 dnl Check for graphviz (class inheritance and profiler plugins)
774 AC_ARG_ENABLE(graphviz,
775 AS_HELP_STRING([--disable-graphviz],[Disable GraphViz support in Anjuta]),
776 [ if test "$enableval" = "no"; then
777 user_disabled_graphviz=1
779 [ user_disabled_graphviz=0 ])
781 AC_MSG_CHECKING(if GraphViz support is disabled)
782 if test "$user_disabled_graphviz" = 1; then
784 libgraphviz_found="no"
787 PKG_CHECK_MODULES(GRAPHVIZ,
788 [libgvc >= $LIBGRAPHVIZ_REQUIRED libgraph >= $LIBGRAPHVIZ_REQUIRED],
789 [libgraphviz_found="yes"],
790 [libgraphviz_found="no"])
793 AM_CONDITIONAL(HAVE_GRAPHVIZ, [test x$libgraphviz_found = xyes])
795 dnl Test using autotest
796 dnl -----------------------------
797 AC_CONFIG_TESTDIR(plugins/am-project/tests)
798 AM_MISSING_PROG([AUTOM4TE], [autom4te])
804 libanjuta/libanjuta-3.0.pc
805 libanjuta/anjuta-version.h
806 libanjuta/interfaces/Makefile
809 pixmaps/16x16/Makefile
810 pixmaps/22x22/Makefile
811 pixmaps/24x24/Makefile
812 pixmaps/32x32/Makefile
813 pixmaps/48x48/Makefile
814 pixmaps/scalable/Makefile
818 doc/anjuta-launcher.1
823 plugins/class-gen/Makefile
824 plugins/class-gen/templates/Makefile
825 plugins/code-analyzer/Makefile
826 plugins/patch/Makefile
827 plugins/document-manager/Makefile
828 plugins/document-manager/images/Makefile
829 plugins/search/Makefile
830 plugins/message-view/Makefile
832 plugins/gdb/images/Makefile
833 plugins/debug-manager/Makefile
834 plugins/debug-manager/images/Makefile
835 plugins/devhelp/Makefile
836 plugins/glade/Makefile
837 plugins/js-debugger/Makefile
838 plugins/file-manager/Makefile
839 plugins/file-loader/Makefile
840 plugins/file-wizard/Makefile
841 plugins/build-basic-autotools/Makefile
842 plugins/project-manager/Makefile
843 plugins/symbol-db/benchmark/Makefile
844 plugins/symbol-db/benchmark/symbol-db/Makefile
845 plugins/symbol-db/benchmark/libgda/Makefile
846 plugins/symbol-db/benchmark/sqlite/Makefile
847 plugins/symbol-db/images/Makefile
848 plugins/symbol-db/Makefile
849 plugins/symbol-db/anjuta-tags/Makefile
850 plugins/project-wizard/Makefile
851 plugins/snippets-manager/Makefile
852 plugins/cvs-plugin/Makefile
853 plugins/subversion/Makefile
855 plugins/sourceview/Makefile
856 plugins/terminal/Makefile
857 plugins/tools/Makefile
858 plugins/tools/scripts/Makefile
859 plugins/language-manager/Makefile
860 plugins/project-import/Makefile
861 plugins/project-wizard/templates/Makefile
862 plugins/project-wizard/templates/mkfile/Makefile
863 plugins/project-wizard/templates/mkfile/src/Makefile
864 plugins/project-wizard/templates/mkfile/po/Makefile
865 plugins/project-wizard/templates/minimal/Makefile
866 plugins/project-wizard/templates/js_minimal/Makefile
867 plugins/project-wizard/templates/js_minimal/src/Makefile
868 plugins/project-wizard/templates/terminal/Makefile
869 plugins/project-wizard/templates/terminal/src/Makefile
870 plugins/project-wizard/templates/terminal/po/Makefile
871 plugins/project-wizard/templates/cpp/Makefile
872 plugins/project-wizard/templates/cpp/src/Makefile
873 plugins/project-wizard/templates/cpp/po/Makefile
874 plugins/project-wizard/templates/gtk/Makefile
875 plugins/project-wizard/templates/gtk/src/Makefile
876 plugins/project-wizard/templates/gtk/po/Makefile
877 plugins/project-wizard/templates/gtkapplication/Makefile
878 plugins/project-wizard/templates/gtkapplication/src/Makefile
879 plugins/project-wizard/templates/gtkapplication/po/Makefile
880 plugins/project-wizard/templates/anjuta-plugin/Makefile
881 plugins/project-wizard/templates/anjuta-plugin/src/Makefile
882 plugins/project-wizard/templates/anjuta-plugin/po/Makefile
883 plugins/project-wizard/templates/gtkmm/Makefile
884 plugins/project-wizard/templates/gtkmm/src/Makefile
885 plugins/project-wizard/templates/gtkmm/po/Makefile
886 plugins/project-wizard/templates/gcj/Makefile
887 plugins/project-wizard/templates/gcj/src/Makefile
888 plugins/project-wizard/templates/java/Makefile
889 plugins/project-wizard/templates/java/src/Makefile
890 plugins/project-wizard/templates/java/po/Makefile
891 plugins/project-wizard/templates/python/Makefile
892 plugins/project-wizard/templates/python/src/Makefile
893 plugins/project-wizard/templates/python/po/Makefile
894 plugins/project-wizard/templates/pygtk/Makefile
895 plugins/project-wizard/templates/pygtk/src/Makefile
896 plugins/project-wizard/templates/pygtk/po/Makefile
897 plugins/project-wizard/templates/pygtk/data/Makefile
898 plugins/project-wizard/templates/vala-gtk/Makefile
899 plugins/project-wizard/templates/vala-gtk/src/Makefile
900 plugins/project-wizard/templates/wxwin/Makefile
901 plugins/project-wizard/templates/wxwin/src/Makefile
902 plugins/project-wizard/templates/wxwin/po/Makefile
903 plugins/project-wizard/templates/xlib/Makefile
904 plugins/project-wizard/templates/xlib/src/Makefile
905 plugins/project-wizard/templates/xlib/po/Makefile
906 plugins/project-wizard/templates/xlib-dock/Makefile
907 plugins/project-wizard/templates/xlib-dock/src/Makefile
908 plugins/project-wizard/templates/xlib-dock/po/Makefile
909 plugins/project-wizard/templates/sdl/Makefile
910 plugins/project-wizard/templates/sdl/src/Makefile
911 plugins/project-wizard/templates/sdl/po/Makefile
912 plugins/project-wizard/templates/licenses/Makefile
913 plugins/project-wizard/templates/library/Makefile
914 plugins/project-wizard/templates/library/src/Makefile
915 plugins/project-wizard/templates/library/po/Makefile
916 plugins/project-wizard/templates/directory/Makefile
917 plugins/project-wizard/templates/m4/Makefile
918 plugins/am-project/Makefile
919 plugins/am-project/tests/atlocal
920 plugins/am-project/tests/Makefile
921 plugins/dir-project/Makefile
922 plugins/language-support-cpp-java/Makefile
923 plugins/language-support-cpp-java/cxxparser/Makefile
924 plugins/run-program/Makefile
925 plugins/starter/Makefile
926 plugins/language-support-js/Makefile
927 plugins/language-support-vala/Makefile
928 plugins/language-support-python/Makefile
929 plugins/python-loader/Makefile
932 manuals/reference/Makefile
933 manuals/reference/libanjuta/Makefile
934 manuals/reference/libanjuta/version.xml
935 manuals/anjuta-manual/Makefile
936 manuals/anjuta-faqs/Makefile
937 manuals/anjuta-build-tutorial/Makefile
942 echo "-------------------------------------------------------------------"
943 echo "Conditionally built plugins:"
944 echo "-------------------------------------------------------------------"
945 if [ test -n "$SVN_INCLUDE" ]; then
946 echo "Building subversion plugin: ............................YES"
948 echo "Building subversion plugin: ............................NO"
949 echo " Requires apr (>= 0.9.4); http://subversion.org"
950 echo " Requires apr-util (>= 0.9.4); http://subversion.org"
951 echo " Requires neon (>= 0.28.2); http://subversion.org"
952 echo " Requires subversion (>= 1.5); http://subversion.org"
955 if [ test x$gladeui_found = xyes ]; then
956 echo "Building glade plugin: .................................YES"
958 echo "Building glade plugin: .................................NO"
959 echo " Requires glade-3 (>= $GLADEUI_REQUIRED)"
962 if [ test x$devhelp_enabled = xyes ]; then
963 echo "Building devhelp plugin: ...............................YES"
965 echo "Building devhelp plugin: ...............................NO"
966 echo " Requires libdevhelp-3.0 (>= $LIBDEVHELP_REQUIRED)"
969 if [ test x$sourceview = xyes ]; then
970 echo "Building GtkSourceView based editor: ...................YES"
972 echo "Building GtkSourceView based editor: ...................NO"
974 if [ test x$enable_vala = xyes ]; then
975 echo "Building Vala support: .................................YES"
977 echo "Building Vala support: .................................NO"
978 echo " Requires libvala (>= $VALA_REQUIRED)"
980 if [ test x$libgraphviz_found = xyes ]; then
981 echo "Building class inheritance plugin: .....................YES"
983 echo "Building class inheritance plugin: .....................NO"
984 echo " Requires graphviz (>= 2.6.0); http://graphviz.org"
986 echo "-------------------------------------------------------------------"
987 echo "AM_CFLAGS = $AM_CFLAGS"
988 echo "AM_CXXFLAGS = $AM_CXXFLAGS"