1 # *****************************************************************************
3 # *****************************************************************************
5 m4_define([ev_major_version],[2])
6 m4_define([ev_minor_version],[29])
7 m4_define([ev_micro_version],[1])
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.29])
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],[2])
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],[2])
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],
93 [Setting platform (default: gnome)])],
95 gnome|win32|hildon) ;;
96 *) AC_MSG_ERROR([invalid argument "$withval" for --with-platform]) ;;
99 *-*-mingw*|*-*-cygwin*) with_platform="win32" ;;
100 *) with_platform=gnome ;;
103 AC_MSG_RESULT([$with_platform])
105 if test "$with_platform" = "win32"; then
106 AC_CHECK_TOOL([WINDRES],[windres])
107 AC_MSG_CHECKING([for native Win32])
116 AC_MSG_RESULT([$os_win32])
119 AM_CONDITIONAL([PLATFORM_HILDON],[test "$with_platform" = "hildon"])
120 AM_CONDITIONAL([PLATFORM_WIN32],[test "$with_platform" = "win32"])
122 dnl Specify required versions of dependencies
123 DBUS_GLIB_REQUIRED=0.70
126 KEYRING_REQUIRED=2.22.0
127 AC_SUBST([GLIB_REQUIRED])
128 AC_SUBST([GTK_REQUIRED])
130 GNOME_ICON_THEME_REQUIRED=2.17.1
131 LIBXML_REQUIRED=2.5.0
133 dnl Check dependencies
135 # LIB_CFLAGS for helpers and generic widgets. (libdocument, cut-and-paste)
136 # BACKEND_CFLAGS for backend implementations.
137 # FRONTEND_CFLAGS for frontend implementations. (properties, thumbnailer)
139 # SHELL_CFLAGS for shell implementation.
142 PKG_CHECK_MODULES(LIBDOCUMENT, gtk+-2.0 >= $GTK_REQUIRED gio-2.0 >= $GLIB_REQUIRED)
143 PKG_CHECK_MODULES(LIBVIEW, gtk+-2.0 >= $GTK_REQUIRED gthread-2.0 gio-2.0 >= $GLIB_REQUIRED)
144 PKG_CHECK_MODULES(BACKEND, gtk+-2.0 >= $GTK_REQUIRED)
145 PKG_CHECK_MODULES(FRONTEND_CORE, gtk+-2.0 >= $GTK_REQUIRED gthread-2.0 gio-2.0 >= $GLIB_REQUIRED)
146 PKG_CHECK_MODULES(PREVIEWER, gtk+-2.0 >= $GTK_REQUIRED gthread-2.0 gio-2.0 >= $GLIB_REQUIRED)
149 case "$with_platform" in
150 hildon) AC_DEFINE([PLATFORM_HILDON],[1],[Define if building for the hildon platform])
151 SHELL_PLATFORM_PKGS="hildon-1 hildon-fm-2 libosso"
153 *) SHELL_PLATFORM_PKGS="gnome-icon-theme >= $GNOME_ICON_THEME_REQUIRED"
157 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])
163 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=no|xsmp|win32|quartz],
168 [Setting smclient backend (default:auto)])],
170 [case "$GDK_TARGET" in
171 x11) case "$with_platform" in
172 gnome) with_smclient=xsmp ;;
173 *) with_smclient=no ;;
175 win32|quartz) with_smclient=$GDK_TARGET ;;
176 *) with_smclient=no ;;
179 AC_MSG_RESULT([$with_smclient])
181 if test "$with_smclient" != "no"; then
182 AC_DEFINE([WITH_SMCLIENT],[1],[Define if smclient is enabled])
184 case "$with_smclient" in
185 xsmp) SMCLIENT_PKGS="sm >= 1.0.0" ;;
186 *) SMCLIENT_PKGS="" ;;
189 PKG_CHECK_MODULES([SMCLIENT],[gtk+-2.0 gthread-2.0 $SMCLIENT_PKGS])
190 AC_SUBST([SMCLIENT_CFLAGS])
191 AC_SUBST([SMCLIENT_LIBS])
194 AM_CONDITIONAL([WITH_SMCLIENT],[test "$with_smclient" != "no"])
195 AM_CONDITIONAL([WITH_SMCLIENT_XSMP],[test "$with_smclient" = "xsmp"])
196 AM_CONDITIONAL([WITH_SMCLIENT_WIN32],[test "$with_smclient" = "win32"])
197 AM_CONDITIONAL([WITH_SMCLIENT_QUARTZ],[test "$with_smclient" = "quartz"])
201 BACKEND_LIBTOOL_FLAGS="-module -avoid-version -no-undefined -export-symbols \$(top_srcdir)/backend/backend.symbols"
202 AC_SUBST(BACKEND_LIBTOOL_FLAGS)
204 dnl ===== Check special functions
205 evince_save_LIBS=$LIBS
206 LIBS="$LIBS $BACKEND_LIBS"
207 AC_CHECK_FUNCS(cairo_format_stride_for_width)
208 AC_CHECK_FUNCS(gtk_print_operation_get_n_pages_to_print)
209 LIBS=$evince_save_LIBS
215 AC_MSG_CHECKING([whether gtk+-unix-print support is requested])
216 AC_ARG_WITH([gtk-unix-print],
217 [AS_HELP_STRING([--without-gtk-unix-print],
218 [Disable the use of gtk-unix-print])],
219 [],[case "$os_win32" in
220 yes) with_gtk_unix_print=no ;;
221 *) with_gtk_unix_print=yes ;;
224 AC_MSG_RESULT([$with_gtk_unix_print])
226 if test "$with_gtk_unix_print" = "yes"; then
227 PKG_CHECK_MODULES(GTKUNIXPRINT, [gtk+-unix-print-2.0 >= $GTK_REQUIRED])
228 AC_DEFINE([GTKUNIXPRINT_ENABLED], [1], [Define if gtk+-unix-print is enabled.])
231 # *********************
232 # GNOME Keyring support
233 # *********************
236 [AS_HELP_STRING([--without-keyring],
237 [Disable the use of gnome-keyring])],
239 [case "$with_platform" in
240 gnome) with_keyring=yes ;;
241 hildon|win32) with_keyring=no ;;
244 AM_CONDITIONAL([WITH_KEYRING],[test "$with_keyring" = "yes"])
246 if test "$with_keyring" = "yes"; then
247 PKG_CHECK_MODULES(KEYRING, gnome-keyring-1 >= $KEYRING_REQUIRED)
248 AC_DEFINE([WITH_KEYRING],[1],[Define if KEYRING support is enabled])
251 GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`
252 AC_SUBST(GLIB_GENMARSHAL)
258 AC_ARG_ENABLE([dbus],
259 [AS_HELP_STRING([--disable-dbus], [Disable support for dbus])],
261 [case "$with_platform" in
262 gnome) enable_dbus=yes ;;
263 hildon) enable_dbus=no ;;
266 if test "$enable_dbus" = "yes"; then
267 PKG_CHECK_MODULES([DBUS],[dbus-glib-1 >= $DBUS_GLIB_REQUIRED],[],
268 [AC_MSG_ERROR([DBUS not found; use --disable-dbus to disable DBUS support])])
270 AC_PATH_PROG([DBUS_BINDING_TOOL], [dbus-binding-tool], [no])
271 if test x$DBUS_BINDING_TOOL = "xno" ; then
272 AC_MSG_ERROR([dbus-binding-tool executable not found in your path - should be installed with dbus glib bindings])
275 AC_DEFINE([ENABLE_DBUS],[1],[Define if DBUS support is enabled])
278 AC_SUBST([DBUS_CFLAGS])
279 AC_SUBST([DBUS_LIBS])
281 AM_CONDITIONAL([ENABLE_DBUS], [test "$enable_dbus" = "yes"])
283 if test "$enable_dbus" = "yes"; then
284 PKG_CHECK_MODULES([EV_DAEMON], [gthread-2.0 gio-2.0 >= $GLIB_REQUIRED dbus-glib-1 >= $DBUS_GLIB_REQUIRED])
287 dnl ========= Check for GConf
289 AC_MSG_CHECKING([whether GConf support is requested])
291 [AS_HELP_STRING([--without-gconf],
292 [Disable the use of gconf])],
295 yes) with_gconf=no ;;
298 AC_MSG_RESULT([$with_gconf])
300 AM_CONDITIONAL([WITH_GCONF],[test "$with_gconf" = "yes"])
302 if test "$with_gconf" = "yes"; then
303 PKG_CHECK_MODULES([GCONF],[gconf-2.0])
304 AC_DEFINE([WITH_GCONF],[1],[Define if GConf support is enabled])
308 AC_PATH_PROG([GCONFTOOL], [gconftool-2], [false])
309 if test "$GCONFTOOL" = "false"; then
310 AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf])
313 AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL],false)
318 AC_ARG_ENABLE([debug],
319 AS_HELP_STRING([--enable-debug],
320 [Turn on evince debug mode]),
321 [enable_debug=$enableval],
324 if test "x$enable_debug" = "xyes"; then
325 DEBUG_FLAGS="-DEV_ENABLE_DEBUG"
328 AC_ARG_ENABLE([tests],
329 AS_HELP_STRING([--enable-tests], [Enable the tests]),
330 [enable_tests=$enableval],
333 AM_CONDITIONAL(ENABLE_TESTS, test x$enable_tests = xyes)
335 LIBDOCUMENT_CFLAGS="$LIBDOCUMENT_CFLAGS $DEBUG_FLAGS"
336 LIBDOCUMENT_LIBS="$LIBDOCUMENT_LIBS"
337 AC_SUBST(LIBDOCUMENT_CFLAGS)
338 AC_SUBST(LIBDOCUMENT_LIBS)
340 LIBVIEW_CFLAGS="$LIBVIEW_CFLAGS $DEBUG_FLAGS"
341 LIBVIEW_LIBS="$LIBVIEW_LIBS"
342 AC_SUBST(LIBVIEW_CFLAGS)
343 AC_SUBST(LIBVIEW_LIBS)
345 BACKEND_CFLAGS="$BACKEND_CFLAGS -DGDK_MULTIHEAD_SAFE -DGTK_MULTIHEAD_SAFE $DEBUG_FLAGS"
346 AC_SUBST(BACKEND_CFLAGS)
347 AC_SUBST(BACKEND_LIBS)
349 SHELL_CFLAGS="$SHELL_CORE_CFLAGS $GTKUNIXPRINT_CFLAGS $DBUS_CFLAGS $KEYRING_CFLAGS $GCONF_CFLAGS -DGDK_MULTIHEAD_SAFE -DGTK_MULTIHEAD_SAFE $DEBUG_FLAGS"
350 SHELL_LIBS="$SHELL_CORE_LIBS $GTKUNIXPRINT_CFLAGS $DBUS_LIBS $KEYRING_LIBS $GCONF_LIBS -lz"
351 AC_SUBST(SHELL_CFLAGS)
354 FRONTEND_CFLAGS="$FRONTEND_CORE_CFLAGS $DEBUG_FLAGS"
355 FRONTEND_LIBS="$FRONTEND_CORE_LIBS -lz"
356 AC_SUBST(FRONTEND_CFLAGS)
357 AC_SUBST(FRONTEND_LIBS)
359 EV_DAEMON_CFLAGS="$EV_DAEMON_CFLAGS $DEBUG_FLAGS"
360 AC_SUBST([EV_DAEMON_CFLAGS])
361 AC_SUBST([EV_DAEMON_LIBS])
363 # Check for Nautilus property page build
364 AC_ARG_ENABLE([nautilus],
365 [AS_HELP_STRING([--disable-nautilus],
366 [Disable build of nautilus extensions])],
368 [case "$with_platform" in
369 gnome) enable_nautilus=yes ;;
370 *) enable_nautilus=no ;;
373 if test "$enable_nautilus" = "yes" ; then
374 PKG_CHECK_MODULES([NAUTILUS],[gtk+-x11-2.0 $MM gthread-2.0 libnautilus-extension],
375 [],[AC_MSG_ERROR([libnautilus-extension not found; use --disable-nautilus to disable the nautilus extensions])])
376 NAUTILUS_EXTENSION_DIR=`$PKG_CONFIG --variable=extensiondir libnautilus-extension`
377 AC_SUBST([nautilusextensiondir],[$NAUTILUS_EXTENSION_DIR])
378 AC_SUBST(NAUTILUS_CFLAGS)
379 AC_SUBST(NAUTILUS_LIBS)
381 AC_DEFINE([HAVE_NAUTILUS],[1], [defined if you build the nautilus plugin])
384 AM_CONDITIONAL([ENABLE_NAUTILUS],[test "$enable_nautilus" = "yes"])
386 # Check for thumbnailer build
388 AC_ARG_ENABLE([thumbnailer],
389 [AS_HELP_STRING([--disable-thumbnailer],
390 [Disable GNOME thumbnailer])],
392 [case "$with_platform" in
393 gnome) enable_thumbnailer=yes ;;
394 *) enable_thumbnailer=no ;;
397 AM_CONDITIONAL([ENABLE_THUMBNAILER],[test "$enable_thumbnailer" = "yes"])
403 AC_ARG_ENABLE([previewer],
404 [AS_HELP_STRING([--disable-previewer],
405 [Disable the GNOME Document Previewer])],
407 [case "$with_platform" in
408 gnome) enable_previewer=yes ;;
409 *) enable_previewer=no ;;
412 if test x$enable_previewer = "xyes" ; then
413 PKG_CHECK_MODULES([PREVIEWER],[gtk+-2.0 >= $GTK_REQUIRED gtk+-unix-print-2.0 >= $GTK_REQUIRED gthread-2.0 gio-2.0 >= $GLIB_REQUIRED])
416 AM_CONDITIONAL([ENABLE_PREVIEWER],[test "$enable_previewer" = "yes"])
417 PREVIEWER_CFLAGS="$PREVIEWER_CFLAGS $GTKUNIXPRINT_CFLAGS $DEBUG_FLAGS"
418 PREVIEWER_LIBS="$PREVIEWER_LIBS $GTKUNIXPRINT_LIBS -lz"
419 AC_SUBST(PREVIEWER_CFLAGS)
420 AC_SUBST(PREVIEWER_LIBS)
426 AC_MSG_CHECKING([whether GObject introspection is requested])
427 AC_ARG_ENABLE([introspection],
428 AS_HELP_STRING([--enable-introspection],
429 [Enable GObject introspection]),
430 [enable_introspection=$enableval],
431 [enable_introspection=no])
432 AC_MSG_RESULT([$enable_introspection])
440 if test "$enable_introspection" = "yes"; then
441 GOBJECT_INTROSPECTION_REQUIRED=0.6
442 PKG_CHECK_MODULES([GOBJECT_INTROSPECTION],[gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED])
444 G_IR_SCANNER="$($PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0)"
445 G_IR_COMPILER="$($PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0)"
446 G_IR_GENERATE="$($PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0)"
447 GIRDIR="$($PKG_CONFIG --variable=girdir gobject-introspection-1.0)"
448 GIRTYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
451 AC_SUBST([G_IR_SCANNER])
452 AC_SUBST([G_IR_COMPILER])
453 AC_SUBST([G_IR_GENERATE])
455 AC_SUBST([GIRTYPELIBDIR])
457 AM_CONDITIONAL([ENABLE_INTROSPECTION],[test "$enable_introspection" = "yes"])
459 dnl ================== portability checks ===========================================
462 AC_CHECK_HEADERS([execinfo.h])
464 AC_CHECK_DECL([_NL_MEASUREMENT_MEASUREMENT],[
465 AC_DEFINE([HAVE__NL_MEASUREMENT_MEASUREMENT],[1],[Define if _NL_MEASUREMENT_MEASUREMENT is available])
466 ],[],[#include <langinfo.h>])
468 dnl ================== pdf checks ===================================================
470 [AS_HELP_STRING([--disable-pdf],
471 [Disable the PDF support])],
472 [enable_pdf=$enableval],
475 if test "x$enable_pdf" = "xyes"; then
476 POPPLER_REQUIRED=0.12.0
477 PKG_CHECK_MODULES(POPPLER, poppler-glib >= $POPPLER_REQUIRED libxml-2.0 >= $LIBXML_REQUIRED,enable_pdf=yes,enable_pdf=no)
479 if test "x$enable_pdf" = "xyes"; then
480 AC_DEFINE([ENABLE_PDF], [1], [Enable pdf support.])
481 SHELL_LIBS="$SHELL_LIBS $POPPLER_LIBS"
482 SHELL_CFLAGS="$SHELL_CFLAGS $POPPLER_CFLAGS"
484 evince_save_LIBS=$LIBS
485 LIBS="$LIBS $POPPLER_LIBS"
486 AC_CHECK_FUNCS(poppler_page_render)
487 AC_CHECK_FUNCS(poppler_page_get_image)
488 LIBS=$evince_save_LIBS
490 PKG_CHECK_MODULES(CAIRO_PDF, cairo-pdf, enable_cairo_pdf=yes, enable_cairo_pdf=no)
491 if test x$enable_cairo_pdf = xyes; then
492 AC_DEFINE([HAVE_CAIRO_PDF], [1], [defined if cairo-pdf is available])
495 PKG_CHECK_MODULES(CAIRO_PS, cairo-ps, enable_cairo_ps=yes, enable_cairo_ps=no)
496 if test x$enable_cairo_ps = xyes; then
497 AC_DEFINE([HAVE_CAIRO_PS], [1], [defined if cairo-ps is available])
500 AC_MSG_WARN("PDF support is disabled since poppler-glib library version $POPPLER_REQUIRED or newer not found")
504 AM_CONDITIONAL(ENABLE_PDF, test x$enable_pdf = xyes)
505 dnl ================== end of pdf checks ============================================
507 dnl libspectre (used by ps and dvi backends)
508 SPECTRE_REQUIRED=0.2.0
509 PKG_CHECK_MODULES(SPECTRE, libspectre >= $SPECTRE_REQUIRED,have_spectre=yes,have_spectre=no)
510 AM_CONDITIONAL(HAVE_SPECTRE, test x$have_spectre = xyes)
511 if test "x$have_spectre" = "xyes"; then
512 AC_DEFINE([HAVE_SPECTRE], [1], [Have libspectre])
515 dnl ================== ps checks ====================================================
517 [AS_HELP_STRING([--disable-ps],
518 [Disable the PostScript backend])],
519 [enable_ps=$enableval],
522 if test "x$enable_ps" = "xyes"; then
523 if test "x$have_spectre" = "xyes"; then
524 AC_DEFINE([ENABLE_PS], [1], [Enable support for PostScript files.])
527 AC_MSG_WARN([PS support is disabled since libspectre (version >= $SPECTRE_REQUIRED) is needed])
530 AM_CONDITIONAL(ENABLE_PS, test x$enable_ps = xyes)
531 dnl ======================== End of ps checks ===================================
533 dnl ================== tiff checks ===================================================
535 [AS_HELP_STRING([--disable-tiff],
536 [Disable the support of multipage tiff])],
537 [enable_tiff=$enableval],
540 if test "x$enable_tiff" = "xyes"; then
541 AC_CHECK_HEADERS([tiff.h],enable_tiff=yes,enable_tiff=no,)
542 if test "x$enable_tiff" = "xyes"; then
543 AC_CHECK_LIB([tiff],TIFFOpen,enable_tiff=yes,enable_tiff=no,"-lz")
544 AC_CHECK_LIB([tiff],TIFFReadRGBAImageOriented,enable_tiff=yes,enable_tiff=no,"-lz")
546 if test "x$enable_tiff" = "xyes"; then
547 AC_DEFINE([ENABLE_TIFF], [1], [Enable multipage tiff support.])
549 AC_MSG_WARN("Tiff support is disabled since tiff library version 3.6 or newer not found")
553 AM_CONDITIONAL(ENABLE_TIFF, test x$enable_tiff = xyes)
554 dnl ================== end of tiff checks ============================================
556 dnl ================== djvu checks ===================================================
559 [AS_HELP_STRING([--disable-djvu],
560 [Disable the support of djvu viewer])],
561 [enable_djvu=$enableval],
564 if test "x$enable_djvu" = "xyes"; then
565 DJVULIBRE_REQUIRED=3.5.17
566 PKG_CHECK_MODULES(DJVU, ddjvuapi >= $DJVULIBRE_REQUIRED, enable_djvu=yes, enable_djvu=no)
568 if test "x$enable_djvu" = "xyes"; then
569 AC_DEFINE([ENABLE_DJVU], [1], [Enable djvu viewer support.])
572 ** Djvu support is disabled since a recent version of the djvulibre
573 ** library was not found. You need at least djvulibre-3.5.17 which
574 ** can be found on http://djvulibre.djvuzone.org
579 AM_CONDITIONAL(ENABLE_DJVU, test x$enable_djvu = xyes)
581 dnl ================== End of djvu checks ===================================================
583 dnl ================== dvi checks ===================================================
586 [AS_HELP_STRING([--disable-dvi],
587 [Disable the support of dvi viewer])],
588 [enable_dvi=$enableval],
592 [AS_HELP_STRING([--enable-t1lib],
593 [Compile with support of t1lib for type1 fonts in dvi])],
594 [enable_type1_fonts=$enableval],
595 [enable_type1_fonts=no])
597 if test "x$enable_dvi" = "xyes"; then
601 AC_CHECK_SIZEOF(long, 4)
602 AC_CHECK_SIZEOF(int, 4)
603 AC_CHECK_SIZEOF(short, 2)
604 AC_CHECK_SIZEOF(void *, 4)
605 AC_CHECK_LIB([kpathsea],[kpse_init_prog],[enable_dvi=yes],[enable_dvi=no])
607 if test "x$enable_dvi" = "xyes"; then
608 AC_DEFINE([ENABLE_DVI], [1], [Enable dvi viewer support.])
610 AC_MSG_WARN("Dvi support is disabled since kpathsea library is not found. Check your TeX installation.")
613 AM_CONDITIONAL(ENABLE_DVI, test x$enable_dvi = xyes)
615 if test "x$enable_dvi" = "xyes"; then
616 if test "x$enable_type1_fonts" = "xyes"; then
617 AC_CHECK_LIB([t1],T1_InitLib,enable_type1_fonts=yes,enable_type1_fonts=no,[-lm])
620 if test "x$enable_type1_fonts" = xyes; then
621 AC_DEFINE([WITH_TYPE1_FONTS], [1], [Enable t1lib support in dvi.])
624 enable_type1_fonts=no
626 AM_CONDITIONAL(WITH_TYPE1_FONTS, test x$enable_type1_fonts = xyes)
628 dnl ================== End of dvi checks ===================================================
630 dnl ================== pixbuf checks ===================================================
632 AC_ARG_ENABLE(pixbuf,
633 [AS_HELP_STRING([--enable-pixbuf],
634 [Compile with support of pixbuf])],
635 [enable_pixbuf=$enableval],
638 if test "x$enable_pixbuf" = "xyes"; then
639 AC_DEFINE([ENABLE_PIXBUF], [1], [Enable pixbuf support.])
642 AM_CONDITIONAL(ENABLE_PIXBUF, test x$enable_pixbuf = xyes)
644 dnl ================== End of pixbuf checks ===================================================
646 dnl ================== comic book checks ===================================================
648 AC_ARG_ENABLE(comics,
649 [AS_HELP_STRING([--enable-comics],
650 [Compile with support for comic book archives])],
651 [enable_comics=$enableval],
654 if test "x$enable_comics" = "xyes"; then
655 if test "x$os_win32" = "xyes"; then
656 # The comics backend is disabled on windows because:
657 # 1) it uses unix functions from sys/wait.h.
658 # 2) it uses external decompression tools not generally available on windows.
660 AC_MSG_WARN(The comics backend is not supported on windows.)
662 AC_DEFINE([ENABLE_COMICS], [1], [Enable support for comics.])
665 AM_CONDITIONAL(ENABLE_COMICS, test x$enable_comics = xyes)
667 dnl ================== End of comic book checks ============================================
669 dnl ================== impress book checks ===================================================
671 AC_ARG_ENABLE(impress,
672 [AS_HELP_STRING([--enable-impress],
673 [Compile with support for impress presentations])],
674 [enable_impress=$enableval],
677 if test "x$enable_impress" = "xyes"; then
678 AC_DEFINE([ENABLE_IMPRESS], [1], [Enable support for impress.])
680 AM_CONDITIONAL(ENABLE_IMPRESS, test x$enable_impress = xyes)
682 dnl ================== End of impress book checks ============================================
684 dnl =================== Mime types list ====================================================
686 if test "x$enable_pdf" = "xyes" ; then
687 EVINCE_MIME_TYPES="application/pdf;application/x-bzpdf;application/x-gzpdf;"
689 if test "x$enable_ps" = "xyes" ; then
690 EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}application/postscript;application/x-bzpostscript;application/x-gzpostscript;image/x-eps;image/x-bzeps;image/x-gzeps;"
692 if test "x$enable_dvi" = "xyes"; then
693 EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}application/x-dvi;application/x-bzdvi;application/x-gzdvi;"
695 if test "x$enable_djvu" = "xyes"; then
696 EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}image/vnd.djvu;"
698 if test "x$enable_tiff" = "xyes"; then
699 EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}image/tiff;"
701 if test "x$enable_comics" = "xyes"; then
702 EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}application/x-cbr;application/x-cbz;application/x-cb7;"
704 if test "x$enable_pixbuf" = "xyes"; then
705 EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}image/*;"
707 if test "x$enable_impress" = "xyes"; then
708 EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}application/vnd.sun.xml.impress;application/vnd.oasis.opendocument.presentation;"
710 AC_SUBST(EVINCE_MIME_TYPES)
712 AC_CHECK_FUNC(localtime_r, AC_DEFINE(HAVE_LOCALTIME_R, 1, [Defines if localtime_r is available on your system]))
716 AC_SUBST([backenddir],"\$(libdir)/evince/ev_binary_version/backends")
717 AC_SUBST([backend_binary_version],"ev_binary_version")
721 AC_SUBST([EV_MAJOR_VERSION],[ev_major_version])
722 AC_SUBST([EV_MINOR_VERSION],[ev_minor_version])
723 AC_SUBST([EV_MICRO_VERSION],[ev_micro_version])
725 AC_SUBST([EV_API_VERSION],[ev_api_version])
726 AC_SUBST([EV_BINARY_VERSION],[ev_binary_version])
728 AC_SUBST([EV_DOCUMENT_LT_VERSION_INFO],[ev_document_lt_version_info])
729 AC_SUBST([EV_DOCUMENT_LT_CURRENT_MINUS_AGE],[ev_document_lt_current_minus_age])
730 AC_SUBST([EV_VIEW_LT_VERSION_INFO],[ev_view_lt_version_info])
731 AC_SUBST([EV_VIEW_LT_CURRENT_MINUS_AGE],[ev_view_lt_current_minus_age])
733 # *****************************************************************************
737 backend/comics/Makefile
738 backend/djvu/Makefile
740 backend/dvi/mdvi-lib/Makefile
741 backend/impress/Makefile
743 backend/pixbuf/Makefile
745 backend/tiff/Makefile
747 cut-n-paste/evinfobar/Makefile
748 cut-n-paste/gimpcellrenderertoggle/Makefile
749 cut-n-paste/smclient/Makefile
750 cut-n-paste/toolbar-editor/Makefile
751 cut-n-paste/zoom-control/Makefile
752 cut-n-paste/totem-screensaver/Makefile
753 data/evince.desktop.in
756 data/icons/16x16/Makefile
757 data/icons/16x16/apps/Makefile
758 data/icons/16x16/actions/Makefile
759 data/icons/22x22/Makefile
760 data/icons/22x22/apps/Makefile
761 data/icons/22x22/actions/Makefile
762 data/icons/24x24/Makefile
763 data/icons/24x24/apps/Makefile
764 data/icons/24x24/actions/Makefile
765 data/icons/32x32/Makefile
766 data/icons/32x32/actions/Makefile
767 data/icons/48x48/Makefile
768 data/icons/48x48/apps/Makefile
769 data/icons/48x48/actions/Makefile
770 data/icons/scalable/Makefile
771 data/icons/scalable/apps/Makefile
773 help/reference/Makefile
774 help/reference/libdocument/Makefile
775 help/reference/libdocument/version.xml
776 help/reference/libview/Makefile
777 help/reference/libview/version.xml
778 help/reference/shell/Makefile
779 help/reference/shell/version.xml
781 libdocument/ev-version.h
793 AC_CONFIG_FILES(evince-document-[]ev_api_version[].pc:evince-document.pc.in)
794 AC_CONFIG_FILES(evince-view-[]ev_api_version[].pc:evince-view.pc.in)
800 Platform...........: $with_platform
801 GConf Support......: $with_gconf
802 GTK+ Unix Print....: $with_gtk_unix_print
803 Keyring Support....: $with_keyring
804 DBUS Support.......: $enable_dbus
805 SM client support..: $with_smclient
806 Nautilus Plugin....: $enable_nautilus
807 Thumbnailer........: $enable_thumbnailer
808 Previewer..........: $enable_previewer
809 Gtk-Doc Support....: $enable_gtk_doc
810 Debug mode.........: $enable_debug
811 GObj. Introspection: $enable_introspection
812 Tests..............: $enable_tests
814 PDF Backend........: $enable_pdf
815 PostScript Backend.: $enable_ps
816 TIFF Backend.......: $enable_tiff
817 DJVU Backend.......: $enable_djvu
818 DVI Backend........: $enable_dvi
819 Pixbuf Backend.....: $enable_pixbuf
820 Comics Backend.....: $enable_comics
821 Impress Backend....: $enable_impress