1 # *****************************************************************************
3 # *****************************************************************************
5 m4_define([ev_major_version],[2])
6 m4_define([ev_minor_version],[27])
7 m4_define([ev_micro_version],[90])
8 m4_define([ev_extra_version],[])
9 m4_define([ev_version],[ev_major_version.ev_minor_version.ev_micro_version()ev_extra_version])
11 # The evince API version
12 m4_define([ev_api_version], [2.25])
14 # Libtool versioning. The backend and view libraries have separate versions.
15 # Before making a release, the libtool version should be modified.
16 # The string is of the form C:R:A.
17 # - If interfaces have been changed or added, but binary compatibility has
18 # been preserved, change to C+1:0:A+1
19 # - If binary compatibility has been broken (eg removed or changed interfaces)
21 # - If the interface is the same as the previous version, change to C:R+1:A
23 # Libtool version of the backend library
24 m4_define([ev_document_lt_current],[1])
25 m4_define([ev_document_lt_revision],[0])
26 m4_define([ev_document_lt_age],[0])
27 m4_define([ev_document_lt_version_info],[ev_document_lt_current:ev_document_lt_revision:ev_document_lt_age])
28 m4_define([ev_document_lt_current_minus_age],[m4_eval(ev_document_lt_current - ev_document_lt_age)])
30 # Libtool version of the view library
31 m4_define([ev_view_lt_current],[1])
32 m4_define([ev_view_lt_revision],[0])
33 m4_define([ev_view_lt_age],[0])
34 m4_define([ev_view_lt_version_info],[ev_view_lt_current:ev_view_lt_revision:ev_view_lt_age])
35 m4_define([ev_view_lt_current_minus_age],[m4_eval(ev_view_lt_current - ev_view_lt_age)])
37 # Binary version for the document backends
38 m4_define([ev_binary_version],[ev_document_lt_current])
40 # *****************************************************************************
43 AC_INIT([Evince],[ev_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=evince],[evince])
44 AM_INIT_AUTOMAKE([1.9 foreign dist-bzip2 no-dist-gzip])
46 AC_CONFIG_HEADERS([config.h])
47 AC_CONFIG_MACRO_DIR([m4])
49 if test -z "$enable_maintainer_mode"; then
50 enable_maintainer_mode=yes
52 AM_MAINTAINER_MODE([enable])
54 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
66 AC_PATH_PROG([GLIB_GENMARSHAL], [glib-genmarshal])
67 AC_PATH_PROG([GLIB_MKENUMS],[glib-mkenums])
71 GNOME_MAINTAINER_MODE_DEFINES
72 GNOME_COMPILE_WARNINGS
77 IT_PROG_INTLTOOL([0.35.0])
79 GETTEXT_PACKAGE=evince
80 AC_SUBST(GETTEXT_PACKAGE)
81 AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[Gettext package])
84 m4_pattern_allow([AM_V_GEN])dnl Make autoconf not complain about the rule below
85 EV_INTLTOOL_EVINCE_BACKEND_RULE='%.evince-backend: %.evince-backend.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(AM_V_GEN) LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
86 AC_SUBST([EV_INTLTOOL_EVINCE_BACKEND_RULE])
88 # Check which platform to use
90 AC_MSG_CHECKING([for which platform to build])
91 AC_ARG_WITH([platform],
92 [AS_HELP_STRING([--with-platform=gnome|win32|hildon (default: gnome)])],
94 gnome|win32|hildon) ;;
95 *) AC_MSG_ERROR([invalid argument "$withval" for --with-platform]) ;;
98 *-*-mingw*|*-*-cygwin*) with_platform="win32" ;;
99 *) with_platform=gnome ;;
102 AC_MSG_RESULT([$with_platform])
104 if test "$with_platform" = "win32"; then
105 AC_CHECK_TOOL([WINDRES],[windres])
106 AC_MSG_CHECKING([for native Win32])
115 AC_MSG_RESULT([$os_win32])
118 AM_CONDITIONAL([PLATFORM_HILDON],[test "$with_platform" = "hildon"])
119 AM_CONDITIONAL([PLATFORM_WIN32],[test "$with_platform" = "win32"])
121 dnl Specify required versions of dependencies
122 DBUS_GLIB_REQUIRED=0.70
125 KEYRING_REQUIRED=2.22.0
126 AC_SUBST([GLIB_REQUIRED])
127 AC_SUBST([GTK_REQUIRED])
129 GNOME_ICON_THEME_REQUIRED=2.17.1
130 LIBXML_REQUIRED=2.5.0
132 dnl Check dependencies
134 # LIB_CFLAGS for helpers and generic widgets. (libdocument, cut-and-paste)
135 # BACKEND_CFLAGS for backend implementations.
136 # FRONTEND_CFLAGS for frontend implementations. (properties, thumbnailer)
138 # SHELL_CFLAGS for shell implementation.
141 PKG_CHECK_MODULES(LIBDOCUMENT, gtk+-2.0 >= $GTK_REQUIRED gio-2.0 >= $GLIB_REQUIRED)
142 PKG_CHECK_MODULES(LIBVIEW, gtk+-2.0 >= $GTK_REQUIRED gthread-2.0 gio-2.0 >= $GLIB_REQUIRED)
143 PKG_CHECK_MODULES(BACKEND, gtk+-2.0 >= $GTK_REQUIRED)
144 PKG_CHECK_MODULES(FRONTEND_CORE, gtk+-2.0 >= $GTK_REQUIRED gthread-2.0 gio-2.0 >= $GLIB_REQUIRED)
145 PKG_CHECK_MODULES(PREVIEWER, gtk+-2.0 >= $GTK_REQUIRED gthread-2.0 gio-2.0 >= $GLIB_REQUIRED)
148 case "$with_platform" in
149 hildon) AC_DEFINE([PLATFORM_HILDON],[1],[Define if building for the hildon platform])
150 SHELL_PLATFORM_PKGS="hildon-1 hildon-fm-2 libosso"
152 *) SHELL_PLATFORM_PKGS="gnome-icon-theme >= $GNOME_ICON_THEME_REQUIRED"
156 PKG_CHECK_MODULES([SHELL_CORE],[libxml-2.0 >= $LIBXML_REQUIRED gtk+-2.0 >= $GTK_REQUIRED gio-2.0 >= $GLIB_REQUIRED gthread-2.0 $SHELL_PLATFORM_PKGS])
162 GDK_TARGET="$($PKG_CONFIG --variable target gdk-2.0)"
165 AC_MSG_CHECKING([which smclient backend to use])
166 AC_ARG_WITH([smclient],
167 [AS_HELP_STRING([--with-smclient-backend],[which smclient backend to use (no|xsmp|win32|quartz)])],
169 [case "$GDK_TARGET" in
170 x11) case "$with_platform" in
171 gnome) with_smclient=xsmp SMCLIENT_PKGS="sm >= 1.0.0" ;;
172 *) with_smclient=no ;;
174 win32|quartz) with_smclient=$GDK_TARGET ;;
175 *) with_smclient=no ;;
177 AC_MSG_RESULT([$with_smclient])
179 if test "$with_smclient" != "no"; then
180 AC_DEFINE([WITH_SMCLIENT],[1],[Define if smclient is enabled])
182 PKG_CHECK_MODULES([SMCLIENT],[gtk+-2.0 gthread-2.0 $SMCLIENT_PKGS])
183 AC_SUBST([SMCLIENT_CFLAGS])
184 AC_SUBST([SMCLIENT_LIBS])
187 AM_CONDITIONAL([WITH_SMCLIENT],[test "$with_smclient" != "no"])
188 AM_CONDITIONAL([WITH_SMCLIENT_XSMP],[test "$with_smclient" = "xsmp"])
189 AM_CONDITIONAL([WITH_SMCLIENT_WIN32],[test "$with_smclient" = "win32"])
190 AM_CONDITIONAL([WITH_SMCLIENT_QUARTZ],[test "$with_smclient" = "quartz"])
194 BACKEND_LIBTOOL_FLAGS="-module -avoid-version -no-undefined -export-symbols \$(top_srcdir)/backend/backend.symbols"
195 AC_SUBST(BACKEND_LIBTOOL_FLAGS)
197 dnl ===== Check special functions
198 evince_save_LIBS=$LIBS
199 LIBS="$LIBS $BACKEND_LIBS"
200 AC_CHECK_FUNCS(cairo_format_stride_for_width)
201 AC_CHECK_FUNCS(gtk_print_operation_get_n_pages_to_print)
202 LIBS=$evince_save_LIBS
208 AC_MSG_CHECKING([whether gtk+-unix-print support is requested])
209 AC_ARG_WITH([gtk-unix-print],
210 [AS_HELP_STRING([--without-gtk-unix-print],[disable the use of gtk-unix-print])],
211 [],[case "$os_win32" in
212 yes) with_gtk_unix_print=no ;;
213 *) with_gtk_unix_print=yes ;;
215 AC_MSG_RESULT([$with_gtk_unix_print])
217 if test "$with_gtk_unix_print" = "yes"; then
218 PKG_CHECK_MODULES(GTKUNIXPRINT, [gtk+-unix-print-2.0 >= $GTK_REQUIRED])
219 AC_DEFINE([GTKUNIXPRINT_ENABLED], [1], [Define if gtk+-unix-print is enabled.])
222 # *********************
223 # GNOME Keyring support
224 # *********************
227 [AS_HELP_STRING([--without-keyring],[disable the use of gnome-keyring])],
229 [case "$with_platform" in
230 gnome) with_keyring=yes ;;
231 hildon|win32) with_keyring=no ;;
234 AM_CONDITIONAL([WITH_KEYRING],[test "$with_keyring" = "yes"])
236 if test "$with_keyring" = "yes"; then
237 PKG_CHECK_MODULES(KEYRING, gnome-keyring-1 >= $KEYRING_REQUIRED)
238 AC_DEFINE([WITH_KEYRING],[1],[Define if KEYRING support is enabled])
241 GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`
242 AC_SUBST(GLIB_GENMARSHAL)
248 AC_ARG_ENABLE([dbus],
249 [AS_HELP_STRING([--enable-dbus], [Compile with support for dbus])],
251 [case "$with_platform" in
252 gnome) enable_dbus=yes ;;
253 hildon) enable_dbus=no ;;
256 if test "$enable_dbus" = "yes"; then
257 PKG_CHECK_MODULES([DBUS],[dbus-glib-1 >= $DBUS_GLIB_REQUIRED],[],
258 [AC_MSG_ERROR([DBUS not found; use --disable-dbus to disable DBUS support])])
260 AC_PATH_PROG([DBUS_BINDING_TOOL], [dbus-binding-tool], [no])
261 if test x$DBUS_BINDING_TOOL = "xno" ; then
262 AC_MSG_ERROR([dbus-binding-tool executable not found in your path - should be installed with dbus glib bindings])
265 AC_DEFINE([ENABLE_DBUS],[1],[Define if DBUS support is enabled])
268 AC_SUBST([DBUS_CFLAGS])
269 AC_SUBST([DBUS_LIBS])
271 AM_CONDITIONAL([ENABLE_DBUS], [test "$enable_dbus" = "yes"])
273 if test "$enable_dbus" = "yes"; then
274 PKG_CHECK_MODULES([EV_DAEMON], [gthread-2.0 gio-2.0 >= $GLIB_REQUIRED dbus-glib-1 >= $DBUS_GLIB_REQUIRED])
277 dnl ========= Check for GConf
279 AC_MSG_CHECKING([whether GConf support is requested])
281 [AS_HELP_STRING([--without-gconf],[disable the use of gconf])],
284 yes) with_gconf=no ;;
287 AC_MSG_RESULT([$with_gconf])
289 AM_CONDITIONAL([WITH_GCONF],[test "$with_gconf" = "yes"])
291 if test "$with_gconf" = "yes"; then
292 PKG_CHECK_MODULES([GCONF],[gconf-2.0])
293 AC_DEFINE([WITH_GCONF],[1],[Define if GConf support is enabled])
297 AC_PATH_PROG([GCONFTOOL], [gconftool-2], [false])
298 if test "$GCONFTOOL" = "false"; then
299 AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf])
302 AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL],false)
307 AC_ARG_ENABLE([debug],
308 AC_HELP_STRING([--enable-debug],
309 [Turn on evince debug mode]),,
312 if test "x$enable_debug" = "xyes"; then
313 DEBUG_FLAGS="-DEV_ENABLE_DEBUG"
316 AC_ARG_ENABLE([tests],
317 AC_HELP_STRING([--enable-tests], [Disable tests]),
318 enable_tests="$enableval",
321 AM_CONDITIONAL(ENABLE_TESTS, test x$enable_tests = xyes)
323 LIBDOCUMENT_CFLAGS="$LIBDOCUMENT_CFLAGS $DEBUG_FLAGS"
324 LIBDOCUMENT_LIBS="$LIBDOCUMENT_LIBS"
325 AC_SUBST(LIBDOCUMENT_CFLAGS)
326 AC_SUBST(LIBDOCUMENT_LIBS)
328 LIBVIEW_CFLAGS="$LIBVIEW_CFLAGS $DEBUG_FLAGS"
329 LIBVIEW_LIBS="$LIBVIEW_LIBS"
330 AC_SUBST(LIBVIEW_CFLAGS)
331 AC_SUBST(LIBVIEW_LIBS)
333 BACKEND_CFLAGS="$BACKEND_CFLAGS -DGDK_MULTIHEAD_SAFE -DGTK_MULTIHEAD_SAFE $DEBUG_FLAGS"
334 AC_SUBST(BACKEND_CFLAGS)
335 AC_SUBST(BACKEND_LIBS)
337 SHELL_CFLAGS="$SHELL_CORE_CFLAGS $GTKUNIXPRINT_CFLAGS $DBUS_CFLAGS $KEYRING_CFLAGS $GCONF_CFLAGS -DGDK_MULTIHEAD_SAFE -DGTK_MULTIHEAD_SAFE $DEBUG_FLAGS"
338 SHELL_LIBS="$SHELL_CORE_LIBS $GTKUNIXPRINT_CFLAGS $DBUS_LIBS $KEYRING_LIBS $GCONF_LIBS -lz"
339 AC_SUBST(SHELL_CFLAGS)
342 FRONTEND_CFLAGS="$FRONTEND_CORE_CFLAGS $DEBUG_FLAGS"
343 FRONTEND_LIBS="$FRONTEND_CORE_LIBS -lz"
344 AC_SUBST(FRONTEND_CFLAGS)
345 AC_SUBST(FRONTEND_LIBS)
347 EV_DAEMON_CFLAGS="$EV_DAEMON_CFLAGS $DEBUG_FLAGS"
348 AC_SUBST([EV_DAEMON_CFLAGS])
349 AC_SUBST([EV_DAEMON_LIBS])
351 # Check for Nautilus property page build
352 AC_ARG_ENABLE([nautilus],
353 [AS_HELP_STRING([--disable-nautilus],[Build the nautilus extensions])],
355 [case "$with_platform" in
356 gnome) enable_nautilus=yes ;;
357 *) enable_nautilus=no ;;
360 if test "$enable_nautilus" = "yes" ; then
361 PKG_CHECK_MODULES([NAUTILUS],[gtk+-x11-2.0 $MM gthread-2.0 libnautilus-extension],
362 [],[AC_MSG_ERROR([libnautilus-extension not found; use --disable-nautilus to disable the nautilus extensions])])
363 NAUTILUS_EXTENSION_DIR=`$PKG_CONFIG --variable=extensiondir libnautilus-extension`
364 AC_SUBST([nautilusextensiondir],[$NAUTILUS_EXTENSION_DIR])
365 AC_SUBST(NAUTILUS_CFLAGS)
366 AC_SUBST(NAUTILUS_LIBS)
368 AC_DEFINE([HAVE_NAUTILUS],[1], [defined if you build the nautilus plugin])
371 AM_CONDITIONAL([ENABLE_NAUTILUS],[test "$enable_nautilus" = "yes"])
373 # Check for thumbnailer build
375 AC_ARG_ENABLE([thumbnailer],
376 [AS_HELP_STRING([--disable-thumbnailer],[disable the GNOME thumbnailer])],
378 [case "$with_platform" in
379 gnome) enable_thumbnailer=yes ;;
380 *) enable_thumbnailer=no ;;
383 AM_CONDITIONAL([ENABLE_THUMBNAILER],[test "$enable_thumbnailer" = "yes"])
389 AC_ARG_ENABLE([previewer],
390 [AS_HELP_STRING([--disable-previewer],[disable the GNOME Document Previewer])],
392 [case "$with_platform" in
393 gnome) enable_previewer=yes ;;
394 *) enable_previewer=no ;;
397 if test x$enable_previewer = "xyes" ; then
398 PKG_CHECK_MODULES([PREVIEWER],[gtk+-2.0 >= $GTK_REQUIRED gtk+-unix-print-2.0 >= $GTK_REQUIRED gthread-2.0 gio-2.0 >= $GLIB_REQUIRED])
401 AM_CONDITIONAL([ENABLE_PREVIEWER],[test "$enable_previewer" = "yes"])
402 PREVIEWER_CFLAGS="$PREVIEWER_CFLAGS $GTKUNIXPRINT_CFLAGS $DEBUG_FLAGS"
403 PREVIEWER_LIBS="$PREVIEWER_LIBS $GTKUNIXPRINT_LIBS -lz"
404 AC_SUBST(PREVIEWER_CFLAGS)
405 AC_SUBST(PREVIEWER_LIBS)
411 AC_MSG_CHECKING([whether GObject introspection is requested])
412 AC_ARG_ENABLE([introspection],
413 AS_HELP_STRING([--enable-introspection],[Enable GObject introspection]),
414 [],[enable_introspection=no])
415 AC_MSG_RESULT([$enable_introspection])
423 if test "$enable_introspection" = "yes"; then
424 GOBJECT_INTROSPECTION_REQUIRED=0.6
425 PKG_CHECK_MODULES([GOBJECT_INTROSPECTION],[gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED])
427 G_IR_SCANNER="$($PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0)"
428 G_IR_COMPILER="$($PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0)"
429 G_IR_GENERATE="$($PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0)"
430 GIRDIR="$($PKG_CONFIG --variable=girdir gobject-introspection-1.0)"
431 GIRTYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
434 AC_SUBST([G_IR_SCANNER])
435 AC_SUBST([G_IR_COMPILER])
436 AC_SUBST([G_IR_GENERATE])
438 AC_SUBST([GIRTYPELIBDIR])
440 AM_CONDITIONAL([ENABLE_INTROSPECTION],[test "$enable_introspection" = "yes"])
442 dnl ================== portability checks ===========================================
445 AC_CHECK_HEADERS([execinfo.h])
447 AC_CHECK_DECL([_NL_MEASUREMENT_MEASUREMENT],[
448 AC_DEFINE([HAVE__NL_MEASUREMENT_MEASUREMENT],[1],[Define if _NL_MEASUREMENT_MEASUREMENT is available])
449 ],[],[#include <langinfo.h>])
451 dnl ================== pdf checks ===================================================
453 [AC_HELP_STRING([--enable-pdf], [Compile with pdf support])],enable_pdf="$enableval",enable_pdf=yes)
455 if test "x$enable_pdf" = "xyes"; then
456 POPPLER_REQUIRED=0.12.0
457 PKG_CHECK_MODULES(POPPLER, poppler-glib >= $POPPLER_REQUIRED libxml-2.0 >= $LIBXML_REQUIRED,enable_pdf=yes,enable_pdf=no)
459 if test "x$enable_pdf" = "xyes"; then
460 AC_DEFINE([ENABLE_PDF], [1], [Enable pdf support.])
461 SHELL_LIBS="$SHELL_LIBS $POPPLER_LIBS"
462 SHELL_CFLAGS="$SHELL_CFLAGS $POPPLER_CFLAGS"
464 evince_save_LIBS=$LIBS
465 LIBS="$LIBS $POPPLER_LIBS"
466 AC_CHECK_FUNCS(poppler_page_render)
467 AC_CHECK_FUNCS(poppler_page_get_image)
468 LIBS=$evince_save_LIBS
470 PKG_CHECK_MODULES(CAIRO_PDF, cairo-pdf, enable_cairo_pdf=yes, enable_cairo_pdf=no)
471 if test x$enable_cairo_pdf = xyes; then
472 AC_DEFINE([HAVE_CAIRO_PDF], [1], [defined if cairo-pdf is available])
475 PKG_CHECK_MODULES(CAIRO_PS, cairo-ps, enable_cairo_ps=yes, enable_cairo_ps=no)
476 if test x$enable_cairo_ps = xyes; then
477 AC_DEFINE([HAVE_CAIRO_PS], [1], [defined if cairo-ps is available])
480 AC_MSG_WARN("PDF support is disabled since poppler-glib library version $POPPLER_REQUIRED or newer not found")
484 AM_CONDITIONAL(ENABLE_PDF, test x$enable_pdf = xyes)
485 dnl ================== end of pdf checks ============================================
487 dnl libspectre (used by ps and dvi backends)
488 SPECTRE_REQUIRED=0.2.0
489 PKG_CHECK_MODULES(SPECTRE, libspectre >= $SPECTRE_REQUIRED,have_spectre=yes,have_spectre=no)
490 AM_CONDITIONAL(HAVE_SPECTRE, test x$have_spectre = xyes)
491 if test "x$have_spectre" = "xyes"; then
492 AC_DEFINE([HAVE_SPECTRE], [1], [Have libspectre])
495 dnl ================== ps checks ====================================================
497 [AC_HELP_STRING([--disable-ps], [Compile without PostScript backend])],enable_ps=$enableval,enable_ps="yes")
499 if test "x$enable_ps" = "xyes"; then
500 if test "x$have_spectre" = "xyes"; then
501 AC_DEFINE([ENABLE_PS], [1], [Enable support for PostScript files.])
504 AC_MSG_WARN([PS support is disabled since libspectre (version >= $SPECTRE_REQUIRED) is needed])
507 AM_CONDITIONAL(ENABLE_PS, test x$enable_ps = xyes)
508 dnl ======================== End of ps checks ===================================
510 dnl ================== tiff checks ===================================================
512 [AC_HELP_STRING([--enable-tiff], [Compile with support of multipage tiff])],enable_tiff="$enableval",enable_tiff=yes)
514 if test "x$enable_tiff" = "xyes"; then
515 AC_CHECK_HEADERS([tiff.h],enable_tiff=yes,enable_tiff=no,)
516 if test "x$enable_tiff" = "xyes"; then
517 AC_CHECK_LIB([tiff],TIFFOpen,enable_tiff=yes,enable_tiff=no,"-lz")
518 AC_CHECK_LIB([tiff],TIFFReadRGBAImageOriented,enable_tiff=yes,enable_tiff=no,"-lz")
520 if test "x$enable_tiff" = "xyes"; then
521 AC_DEFINE([ENABLE_TIFF], [1], [Enable multipage tiff support.])
523 AC_MSG_WARN("Tiff support is disabled since tiff library version 3.6 or newer not found")
527 AM_CONDITIONAL(ENABLE_TIFF, test x$enable_tiff = xyes)
528 dnl ================== end of tiff checks ============================================
530 dnl ================== djvu checks ===================================================
533 [AC_HELP_STRING([--enable-djvu], [Compile with support of djvu viewer])],enable_djvu="$enableval",enable_djvu=yes)
535 if test "x$enable_djvu" = "xyes"; then
536 DJVULIBRE_REQUIRED=3.5.17
537 PKG_CHECK_MODULES(DJVU, ddjvuapi >= $DJVULIBRE_REQUIRED, enable_djvu=yes, enable_djvu=no)
539 if test "x$enable_djvu" = "xyes"; then
540 AC_DEFINE([ENABLE_DJVU], [1], [Enable djvu viewer support.])
543 ** Djvu support is disabled since a recent version of the djvulibre
544 ** library was not found. You need at least djvulibre-3.5.17 which
545 ** can be found on http://djvulibre.djvuzone.org
550 AM_CONDITIONAL(ENABLE_DJVU, test x$enable_djvu = xyes)
552 dnl ================== End of djvu checks ===================================================
554 dnl ================== dvi checks ===================================================
557 [AC_HELP_STRING([--enable-dvi], [Compile with support of dvi viewer])],enable_dvi="$enableval",enable_dvi=yes)
560 [AC_HELP_STRING([--enable-t1lib], [Compile with support of t1lib for type1 fonts in dvi])],enable_type1_fonts="$enableval",enable_type1_fonts=no)
562 if test "x$enable_dvi" = "xyes"; then
566 AC_CHECK_SIZEOF(long, 4)
567 AC_CHECK_SIZEOF(int, 4)
568 AC_CHECK_SIZEOF(short, 2)
569 AC_CHECK_SIZEOF(void *, 4)
570 AC_CHECK_LIB([kpathsea],[kpse_init_prog],[enable_dvi=yes],[enable_dvi=no])
572 if test "x$enable_dvi" = "xyes"; then
573 AC_DEFINE([ENABLE_DVI], [1], [Enable dvi viewer support.])
575 AC_MSG_WARN("Dvi support is disabled since kpathsea library is not found. Check your TeX installation.")
578 AM_CONDITIONAL(ENABLE_DVI, test x$enable_dvi = xyes)
580 if test "x$enable_dvi" = "xyes"; then
581 if test "x$enable_type1_fonts" = "xyes"; then
582 AC_CHECK_LIB([t1],T1_InitLib,enable_type1_fonts=yes,enable_type1_fonts=no,[-lm])
585 if test "x$enable_type1_fonts" = xyes; then
586 AC_DEFINE([WITH_TYPE1_FONTS], [1], [Enable t1lib support in dvi.])
589 enable_type1_fonts=no
591 AM_CONDITIONAL(WITH_TYPE1_FONTS, test x$enable_type1_fonts = xyes)
593 dnl ================== End of dvi checks ===================================================
595 dnl ================== pixbuf checks ===================================================
597 AC_ARG_ENABLE(pixbuf,
598 [AC_HELP_STRING([--enable-pixbuf], [Compile with support of pixbuf])],enable_pixbuf="$enableval",enable_pixbuf=no)
599 if test "x$enable_pixbuf" = "xyes"; then
600 AC_DEFINE([ENABLE_PIXBUF], [1], [Enable pixbuf support.])
602 AM_CONDITIONAL(ENABLE_PIXBUF, test x$enable_pixbuf = xyes)
604 dnl ================== End of pixbuf checks ===================================================
606 dnl ================== comic book checks ===================================================
608 AC_ARG_ENABLE(comics,
609 [AC_HELP_STRING([--enable-comics], [Compile with support for comic book archives])],enable_comics="$enableval",enable_comics=yes)
610 if test "x$enable_comics" = "xyes"; then
611 if test "x$os_win32" = "xyes"; then
612 # The comics backend is disabled on windows because:
613 # 1) it uses unix functions from sys/wait.h.
614 # 2) it uses external decompression tools not generally available on windows.
616 AC_MSG_WARN(The comics backend is not supported on windows.)
618 AC_DEFINE([ENABLE_COMICS], [1], [Enable support for comics.])
621 AM_CONDITIONAL(ENABLE_COMICS, test x$enable_comics = xyes)
623 dnl ================== End of comic book checks ============================================
625 dnl ================== impress book checks ===================================================
627 AC_ARG_ENABLE(impress,
628 [AC_HELP_STRING([--enable-impress], [Compile with support for impress presentations])],enable_impress="$enableval",enable_impress=no)
629 if test "x$enable_impress" = "xyes"; then
630 AC_DEFINE([ENABLE_IMPRESS], [1], [Enable support for impress.])
632 AM_CONDITIONAL(ENABLE_IMPRESS, test x$enable_impress = xyes)
634 dnl ================== End of impress book checks ============================================
636 dnl =================== Mime types list ====================================================
638 if test "x$enable_pdf" = "xyes" ; then
639 EVINCE_MIME_TYPES="application/pdf;application/x-bzpdf;application/x-gzpdf;"
641 if test "x$enable_ps" = "xyes" ; then
642 EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}application/postscript;application/x-bzpostscript;application/x-gzpostscript;image/x-eps;image/x-bzeps;image/x-gzeps;"
644 if test "x$enable_dvi" = "xyes"; then
645 EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}application/x-dvi;application/x-bzdvi;application/x-gzdvi;"
647 if test "x$enable_djvu" = "xyes"; then
648 EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}image/vnd.djvu;"
650 if test "x$enable_tiff" = "xyes"; then
651 EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}image/tiff;"
653 if test "x$enable_comics" = "xyes"; then
654 EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}application/x-cbr;application/x-cbz;application/x-cb7;"
656 if test "x$enable_pixbuf" = "xyes"; then
657 EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}image/*;"
659 if test "x$enable_impress" = "xyes"; then
660 EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}application/vnd.sun.xml.impress;application/vnd.oasis.opendocument.presentation;"
662 AC_SUBST(EVINCE_MIME_TYPES)
664 AC_CHECK_FUNC(localtime_r, AC_DEFINE(HAVE_LOCALTIME_R, 1, [Defines if localtime_r is available on your system]))
668 AC_SUBST([backenddir],"\$(libdir)/evince/ev_binary_version/backends")
669 AC_SUBST([backend_binary_version],"ev_binary_version")
673 AC_SUBST([EV_MAJOR_VERSION],[ev_major_version])
674 AC_SUBST([EV_MINOR_VERSION],[ev_minor_version])
675 AC_SUBST([EV_MICRO_VERSION],[ev_micro_version])
677 AC_SUBST([EV_API_VERSION],[ev_api_version])
678 AC_SUBST([EV_BINARY_VERSION],[ev_binary_version])
680 AC_SUBST([EV_DOCUMENT_LT_VERSION_INFO],[ev_document_lt_version_info])
681 AC_SUBST([EV_DOCUMENT_LT_CURRENT_MINUS_AGE],[ev_document_lt_current_minus_age])
682 AC_SUBST([EV_VIEW_LT_VERSION_INFO],[ev_view_lt_version_info])
683 AC_SUBST([EV_VIEW_LT_CURRENT_MINUS_AGE],[ev_view_lt_current_minus_age])
685 # *****************************************************************************
689 backend/comics/Makefile
690 backend/djvu/Makefile
692 backend/dvi/mdvi-lib/Makefile
693 backend/impress/Makefile
695 backend/pixbuf/Makefile
697 backend/tiff/Makefile
699 cut-n-paste/evinfobar/Makefile
700 cut-n-paste/gimpcellrenderertoggle/Makefile
701 cut-n-paste/smclient/Makefile
702 cut-n-paste/toolbar-editor/Makefile
703 cut-n-paste/zoom-control/Makefile
704 cut-n-paste/totem-screensaver/Makefile
705 data/evince.desktop.in
708 data/icons/16x16/Makefile
709 data/icons/16x16/apps/Makefile
710 data/icons/16x16/actions/Makefile
711 data/icons/22x22/Makefile
712 data/icons/22x22/apps/Makefile
713 data/icons/22x22/actions/Makefile
714 data/icons/24x24/Makefile
715 data/icons/24x24/apps/Makefile
716 data/icons/24x24/actions/Makefile
717 data/icons/32x32/Makefile
718 data/icons/32x32/actions/Makefile
719 data/icons/48x48/Makefile
720 data/icons/48x48/apps/Makefile
721 data/icons/48x48/actions/Makefile
722 data/icons/scalable/Makefile
723 data/icons/scalable/apps/Makefile
725 help/reference/Makefile
726 help/reference/libdocument/Makefile
727 help/reference/libdocument/version.xml
728 help/reference/libview/Makefile
729 help/reference/libview/version.xml
730 help/reference/shell/Makefile
731 help/reference/shell/version.xml
733 libdocument/ev-version.h
745 AC_CONFIG_FILES(evince-document-[]ev_api_version[].pc:evince-document.pc.in)
746 AC_CONFIG_FILES(evince-view-[]ev_api_version[].pc:evince-view.pc.in)
752 Platform...........: $with_platform
753 GConf Support......: $with_gconf
754 GTK+ Unix Print....: $with_gtk_unix_print
755 Keyring Support....: $with_keyring
756 DBUS Support.......: $enable_dbus
757 SM client support..: $with_smclient
758 Nautilus Plugin....: $enable_nautilus
759 Thumbnailer........: $enable_thumbnailer
760 Previewer..........: $enable_previewer
761 Gtk-Doc Support....: $enable_gtk_doc
762 Debug mode.........: $enable_debug
763 GObj. Introspection: $enable_introspection
764 Tests..............: $enable_tests
766 PDF Backend........: $enable_pdf
767 PostScript Backend.: $enable_ps
768 TIFF Backend.......: $enable_tiff
769 DJVU Backend.......: $enable_djvu
770 DVI Backend........: $enable_dvi
771 Pixbuf Backend.....: $enable_pixbuf
772 Comics Backend.....: $enable_comics
773 Impress Backend....: $enable_impress