]> www.fi.muni.cz Git - evince.git/blob - configure.ac
41dd94a89d6729bacc370df84f266d9ce9dae50c
[evince.git] / configure.ac
1 # *****************************************************************************
2 # Versioning
3 # *****************************************************************************
4
5 m4_define([ev_major_version],[2])
6 m4_define([ev_minor_version],[27])
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])
10
11 # The evince API version
12 m4_define([ev_api_version], [2.25])
13
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)
20 #   change to C+1:0:0
21 # - If the interface is the same as the previous version, change to C:R+1:A
22
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)])
29
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)])
36
37 # Binary version for the document backends
38 m4_define([ev_binary_version],[ev_document_lt_current])
39
40 # *****************************************************************************
41
42 AC_PREREQ([2.57])
43 AC_INIT([Evince],[ev_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=evince],[evince])
44 AM_INIT_AUTOMAKE([1.9 dist-bzip2 no-dist-gzip])
45
46 AM_CONFIG_HEADER(config.h)
47 AC_CONFIG_MACRO_DIR(m4)
48
49 AM_MAINTAINER_MODE
50
51 AM_PROG_LIBTOOL
52
53 AC_ISC_POSIX
54 AC_PROG_CC
55 AM_PROG_CC_STDC
56 AM_PROG_CC_C_O
57 AC_PROG_CXX
58 AC_STDC_HEADERS
59 IT_PROG_INTLTOOL([0.35.0])
60 AC_PATH_PROG([GLIB_GENMARSHAL], [glib-genmarshal])
61 AC_PATH_PROG([GLIB_MKENUMS],[glib-mkenums])
62
63 GNOME_COMMON_INIT
64 GNOME_DOC_INIT
65 GNOME_MAINTAINER_MODE_DEFINES
66 GNOME_COMPILE_WARNINGS
67 GNOME_CXX_WARNINGS
68
69 GTK_DOC_CHECK(1.0)
70
71 GETTEXT_PACKAGE=evince
72 AC_SUBST(GETTEXT_PACKAGE)
73 AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[Gettext package])
74 AM_GLIB_GNU_GETTEXT
75
76 dnl check for win32 platform
77 AC_MSG_CHECKING([for Win32 platform])
78 case "$host" in
79   *-*-mingw*|*-*-cygwin*)
80     platform_win32=yes
81     AC_CHECK_TOOL(WINDRES, windres)
82     ;;
83   *)
84     platform_win32=no
85     ;;
86 esac
87 AC_MSG_RESULT([$platform_win32])
88 AM_CONDITIONAL(PLATFORM_WIN32, test "$platform_win32" = "yes")
89
90 AC_MSG_CHECKING([for native Win32])
91 case "$host" in
92   *-*-mingw*)
93     os_win32=yes
94     ;;
95   *)
96     os_win32=no
97     ;;
98 esac
99 AC_MSG_RESULT([$os_win32])
100 AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes")
101
102 dnl Check dependencies
103
104 # LIB_CFLAGS       for helpers and generic widgets. (libdocument, cut-and-paste)
105 # BACKEND_CFLAGS   for backend implementations.
106 # FRONTEND_CFLAGS  for frontend implementations. (properties, thumbnailer)
107 # FRONTEND_LIBS
108 # SHELL_CFLAGS     for shell implementation.
109 # SHELL_LIBS
110
111 DBUS_GLIB_REQUIRED=0.70
112 GTK_REQUIRED=2.14.0
113 GLIB_REQUIRED=2.18.0
114 KEYRING_REQUIRED=2.22.0
115 AC_SUBST([GLIB_REQUIRED])
116 AC_SUBST([GTK_REQUIRED])
117
118 GNOME_ICON_THEME_REQUIRED=2.17.1
119 LIBXML_REQUIRED=2.5.0
120
121 PKG_CHECK_MODULES(LIBDOCUMENT, gtk+-2.0 >= $GTK_REQUIRED gio-2.0 >= $GLIB_REQUIRED)
122 PKG_CHECK_MODULES(LIBVIEW, gtk+-2.0 >= $GTK_REQUIRED gthread-2.0 gio-2.0 >= $GLIB_REQUIRED)
123 PKG_CHECK_MODULES(BACKEND, gtk+-2.0 >= $GTK_REQUIRED)
124 PKG_CHECK_MODULES(FRONTEND_CORE, gtk+-2.0 >= $GTK_REQUIRED gthread-2.0 gio-2.0 >= $GLIB_REQUIRED)
125 PKG_CHECK_MODULES(PREVIEWER, gtk+-2.0 >= $GTK_REQUIRED gtk+-unix-print-2.0 >= $GTK_REQUIRED gthread-2.0 gio-2.0 >= $GLIB_REQUIRED)
126 PKG_CHECK_MODULES(SHELL_CORE, libxml-2.0 >= $LIBXML_REQUIRED gtk+-2.0 >= $GTK_REQUIRED gtk+-unix-print-2.0 >= $GTK_REQUIRED gio-2.0 >= $GLIB_REQUIRED gnome-icon-theme >= $GNOME_ICON_THEME_REQUIRED gthread-2.0)
127
128 if test "$os_win32" = no; then
129         PKG_CHECK_MODULES(SMCLIENT, gtk+-2.0 gthread-2.0 sm >= 1.0.0)
130 else
131         PKG_CHECK_MODULES(SMCLIENT, gtk+-2.0 gthread-2.0)
132 fi
133
134 AC_SUBST(SMCLIENT_CFLAGS)
135 AC_SUBST(SMCLIENT_LIBS)
136
137 BACKEND_LIBTOOL_FLAGS="-module -avoid-version -no-undefined -export-symbols \$(top_srcdir)/backend/backend.symbols"
138 AC_SUBST(BACKEND_LIBTOOL_FLAGS)
139
140 dnl ===== Check special functions
141 evince_save_LIBS=$LIBS
142 LIBS="$LIBS $BACKEND_LIBS"
143 AC_CHECK_FUNCS(cairo_format_stride_for_width)
144 LIBS=$evince_save_LIBS
145
146 dnl ========= Check for Keyring
147 AC_ARG_WITH(keyring,
148         AC_HELP_STRING([--without-keyring],[disable the use of gnome-keyring]),
149         [case "${withval}" in
150         yes) WITH_KEYRING=yes ;;
151         no) WITH_KEYRING=no ;;
152         *) AC_MSG_ERROR(bad value ${withval} for --with-keyring) ;;
153         esac],
154         [WITH_KEYRING=yes]) dnl Default value
155 AM_CONDITIONAL(WITH_KEYRING, test x$WITH_KEYRING = "xyes")
156
157 if test x$WITH_KEYRING = "xyes"; then
158         PKG_CHECK_MODULES(KEYRING, gnome-keyring-1 >= $KEYRING_REQUIRED)
159         AC_DEFINE([WITH_KEYRING],[1],[Define if KEYRING support is enabled])
160 fi
161
162 GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`  
163 AC_SUBST(GLIB_GENMARSHAL)
164
165 dnl ========= Check for DBUS
166 AC_ARG_ENABLE(dbus,
167         [AC_HELP_STRING([--enable-dbus], [Compile with support for dbus])],
168         enable_dbus="$enableval",enable_dbus=yes)
169 if test "x$enable_dbus" != "xno"; then
170         PKG_CHECK_MODULES([DBUS], [dbus-glib-1 >= $DBUS_GLIB_REQUIRED],
171         [enable_dbus=yes],[enable_dbus=no])
172
173         if test "x$enable_dbus" = "xno"; then
174            AC_MSG_WARN([DBUS support is disabled since dbus $DBUS_GLIB_REQUIRED or higher was not found])
175         fi         
176
177         if test "x$enable_dbus" = "xyes" ; then
178                 AC_PATH_PROG([DBUS_BINDING_TOOL], [dbus-binding-tool], [no])
179
180                 if test x$DBUS_BINDING_TOOL = "xno" ; then
181                         AC_MSG_ERROR([dbus-binding-tool executable not found in your path - should be installed with dbus glib bindings])
182                 fi                                            
183
184                 AC_DEFINE([ENABLE_DBUS],[1],[Define if DBUS support is enabled])
185         fi
186 fi
187
188 AC_SUBST([DBUS_CFLAGS])
189 AC_SUBST([DBUS_LIBS])
190
191 AM_CONDITIONAL([ENABLE_DBUS], [test "x$enable_dbus" = "xyes"])
192 AM_CONDITIONAL([DBUS_TOOL_NO_PREFIX], [test "x$DBUS_VERSION" = "x33"])
193
194 dnl ========= Check for GConf
195
196 AC_MSG_CHECKING([whether GConf support is requested])
197 AC_ARG_WITH([gconf],
198   [AS_HELP_STRING([--without-gconf],[disable the use of gconf])],
199   [],[with_gconf=check])
200 AC_MSG_RESULT([$with_gconf])
201
202 if test "x$with_gconf" != "xno"; then
203         PKG_CHECK_MODULES([GCONF],[gconf-2.0],
204                 with_gconf=yes,
205                 if test "x$with_gconf" = "xcheck"; then
206                         with_gconf=no
207                         AC_MSG_WARN(The use of GConf is disabled since required library gconf-2.0 was not found.)
208                 else
209                         AC_MSG_FAILURE(GConf test failed: $GCONF_PKG_ERRORS)
210                 fi
211         )
212 fi
213 if test "x$with_gconf" = "xyes"; then
214         AC_DEFINE([WITH_GCONF],[1],[Define if GConf support is enabled])
215 fi
216 AM_CONDITIONAL([WITH_GCONF],[test "$with_gconf" = "yes"])
217
218 AM_GCONF_SOURCE_2
219
220 AC_PATH_PROG([GCONFTOOL], [gconftool-2], [false])
221 if test "$with_gconf" = "yes" -a "$GCONFTOOL" = "false"; then
222   AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf])
223 fi
224
225 dnl Debug mode
226
227 AC_ARG_ENABLE([debug],
228         AC_HELP_STRING([--enable-debug],
229                         [Turn on evince debug mode]),,
230                 [enable_debug=no])
231                 
232 if test "x$enable_debug" = "xyes"; then
233    DEBUG_FLAGS="-DEV_ENABLE_DEBUG"
234 fi
235
236
237 LIBDOCUMENT_CFLAGS="$LIBDOCUMENT_CFLAGS $DEBUG_FLAGS"
238 LIBDOCUMENT_LIBS="$LIBDOCUMENT_LIBS"
239 AC_SUBST(LIBDOCUMENT_CFLAGS)
240 AC_SUBST(LIBDOCUMENT_LIBS)
241
242 LIBVIEW_CFLAGS="$LIBVIEW_CFLAGS $DEBUG_FLAGS"
243 LIBVIEW_LIBS="$LIBVIEW_LIBS"
244 AC_SUBST(LIBVIEW_CFLAGS)
245 AC_SUBST(LIBVIEW_LIBS)
246
247 BACKEND_CFLAGS="$BACKEND_CFLAGS -DGDK_MULTIHEAD_SAFE -DGTK_MULTIHEAD_SAFE $DEBUG_FLAGS"
248 AC_SUBST(BACKEND_CFLAGS)
249 AC_SUBST(BACKEND_LIBS)
250
251 SHELL_CFLAGS="$SHELL_CORE_CFLAGS $DBUS_CFLAGS $KEYRING_CFLAGS $GCONF_CFLAGS -DGDK_MULTIHEAD_SAFE -DGTK_MULTIHEAD_SAFE $DEBUG_FLAGS"
252 SHELL_LIBS="$SHELL_CORE_LIBS $DBUS_LIBS $KEYRING_LIBS $GCONF_LIBS -lz"
253 AC_SUBST(SHELL_CFLAGS)
254 AC_SUBST(SHELL_LIBS)
255
256 FRONTEND_CFLAGS="$FRONTEND_CORE_CFLAGS $DEBUG_FLAGS"
257 FRONTEND_LIBS="$FRONTEND_CORE_LIBS -lz"
258 AC_SUBST(FRONTEND_CFLAGS)
259 AC_SUBST(FRONTEND_LIBS)
260
261 dnl Check for Nautilus property page build
262 AC_ARG_ENABLE(nautilus,
263         AC_HELP_STRING([--enable-nautilus],[compile the nautilus plugin]),
264         [case "${enableval}" in
265         yes) ENABLE_NAUTILUS=yes ;;
266         no) ENABLE_NAUTILUS=no ;;
267         *) AC_MSG_ERROR(bad value ${enableval} for --enable-nautilus) ;;
268         esac],
269         [ENABLE_NAUTILUS=yes]) dnl Default value
270
271 if test x$ENABLE_NAUTILUS = "xyes" ; then
272         PKG_CHECK_MODULES(NAUTILUS, gtk+-x11-2.0 $MM gthread-2.0 libnautilus-extension,
273                         [HAVE_NAUTILUS=yes], [HAVE_NAUTILUS=no])
274         NAUTILUS_EXTENSION_DIR=`$PKG_CONFIG --variable=extensiondir libnautilus-extension`
275         AC_SUBST(NAUTILUS_EXTENSION_DIR)
276 fi
277
278 AC_SUBST(NAUTILUS_CFLAGS)
279 AC_SUBST(NAUTILUS_LIBS)
280 if test x$HAVE_NAUTILUS = "xyes"; then
281         AC_DEFINE(HAVE_NAUTILUS, 1, [defined if you build the nautilus plugin])
282 fi
283 AM_CONDITIONAL(HAVE_NAUTILUS, test x$HAVE_NAUTILUS = "xyes")
284
285
286 dnl Check for thumbnailer build
287 AC_ARG_ENABLE(thumbnailer,
288         AC_HELP_STRING([--disable-thumbnailer],[disable the GNOME thumbnailer]),
289         [case "${enableval}" in
290         yes) ENABLE_THUMBNAILER=yes ;;
291         no) ENABLE_THUMBNAILER=no ;;
292         *) AC_MSG_ERROR(bad value ${enableval} for --enable-thumbnailer) ;;
293         esac],
294         [ENABLE_THUMBNAILER=yes]) dnl Default value
295 AM_CONDITIONAL(ENABLE_THUMBNAILER, test x$ENABLE_THUMBNAILER = "xyes")
296
297 dnl Check for previewer build
298 AC_ARG_ENABLE(previewer,
299         AC_HELP_STRING([--disable-previewer],[disable the GNOME Document Previewer]),
300         [case "${enableval}" in
301         yes) ENABLE_PREVIEWER=yes ;;
302         no) ENABLE_PREVIEWER=no ;;
303         *) AC_MSG_ERROR(bad value ${enableval} for --enable-previewer) ;;
304         esac],
305         [ENABLE_PREVIEWER=yes]) dnl Default value
306 if test x$ENABLE_PREVIEWER = "xyes" ; then
307    PKG_CHECK_MODULES(PREVIEWER, gtk+-2.0 >= $GTK_REQUIRED gtk+-unix-print-2.0 >= $GTK_REQUIRED gthread-2.0 gio-2.0 >= $GLIB_REQUIRED,
308                      [ENABLE_PREVIEWER=yes],[ENABLE_PREVIEWER=no])
309    if test x$ENABLE_PREVIEWER = "xno" ; then
310       AC_MSG_WARN([Previewer support is disabled since gtk+-unix-print $GTK_REQUIRED or higher was not found])
311    fi
312 fi
313 AM_CONDITIONAL(ENABLE_PREVIEWER, test x$ENABLE_PREVIEWER = "xyes")
314 PREVIEWER_CFLAGS="$PREVIEWER_CFLAGS $DEBUG_FLAGS"
315 PREVIEWER_LIBS="$PREVIEWER_LIBS -lz"
316 AC_SUBST(PREVIEWER_CFLAGS)
317 AC_SUBST(PREVIEWER_LIBS)
318
319 # ***
320 # GIR
321 # ***
322
323 AC_MSG_CHECKING([whether GObject introspection is requested])
324 AC_ARG_ENABLE([introspection],
325         AS_HELP_STRING([--enable-introspection],[Enable GObject introspection]),
326         [],[enable_introspection=no])
327 AC_MSG_RESULT([$enable_introspection])
328
329 G_IR_SCANNER=
330 G_IR_COMPILER=
331 G_IR_GENERATE=
332 GIRDIR=
333 GIRTYPELIBDIR=
334
335 if test "$enable_introspection" = "yes"; then
336   GOBJECT_INTROSPECTION_REQUIRED=0.6
337   PKG_CHECK_MODULES([GOBJECT_INTROSPECTION],[gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED])
338
339   G_IR_SCANNER="$($PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0)"
340   G_IR_COMPILER="$($PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0)"
341   G_IR_GENERATE="$($PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0)"
342   GIRDIR="$($PKG_CONFIG --variable=girdir gobject-introspection-1.0)"
343   GIRTYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
344 fi
345
346 AC_SUBST([G_IR_SCANNER])
347 AC_SUBST([G_IR_COMPILER])
348 AC_SUBST([G_IR_GENERATE])
349 AC_SUBST([GIRDIR])
350 AC_SUBST([GIRTYPELIBDIR])
351
352 AM_CONDITIONAL([ENABLE_INTROSPECTION],[test "$enable_introspection" = "yes"])
353
354 dnl ================== portability checks ===========================================
355
356 dnl for backtrace()
357 AC_CHECK_HEADERS([execinfo.h])
358
359 AC_CHECK_DECL([_NL_MEASUREMENT_MEASUREMENT],[
360   AC_DEFINE([HAVE__NL_MEASUREMENT_MEASUREMENT],[1],[Define if _NL_MEASUREMENT_MEASUREMENT is available])
361   ],[],[#include <langinfo.h>])
362
363 dnl ================== pdf checks ===================================================
364 AC_ARG_ENABLE(pdf,
365               [AC_HELP_STRING([--enable-pdf], [Compile with pdf support])],enable_pdf="$enableval",enable_pdf=yes)
366
367 if test "x$enable_pdf" = "xyes"; then
368     POPPLER_REQUIRED=0.11.0
369     PKG_CHECK_MODULES(POPPLER, poppler-glib >= $POPPLER_REQUIRED libxml-2.0 >= $LIBXML_REQUIRED,enable_pdf=yes,enable_pdf=no)
370
371     if test "x$enable_pdf" = "xyes"; then
372             AC_DEFINE([ENABLE_PDF], [1], [Enable pdf support.])
373             SHELL_LIBS="$SHELL_LIBS $POPPLER_LIBS"
374             SHELL_CFLAGS="$SHELL_CFLAGS $POPPLER_CFLAGS"
375
376             evince_save_LIBS=$LIBS
377             LIBS="$LIBS $POPPLER_LIBS"
378             AC_CHECK_FUNCS(poppler_page_render)
379             AC_CHECK_FUNCS(poppler_page_get_image)
380             LIBS=$evince_save_LIBS
381
382             PKG_CHECK_MODULES(CAIRO_PDF, cairo-pdf, enable_cairo_pdf=yes, enable_cairo_pdf=no)
383             if test x$enable_cairo_pdf = xyes; then
384                     AC_DEFINE([HAVE_CAIRO_PDF], [1], [defined if cairo-pdf is available])
385             fi
386
387             PKG_CHECK_MODULES(CAIRO_PS, cairo-ps, enable_cairo_ps=yes, enable_cairo_ps=no)
388             if test x$enable_cairo_ps = xyes; then
389                     AC_DEFINE([HAVE_CAIRO_PS], [1], [defined if cairo-ps is available])
390             fi
391     else
392             AC_MSG_WARN("PDF support is disabled since poppler-glib library version $POPPLER_REQUIRED or newer not found")
393     fi 
394 fi
395
396 AM_CONDITIONAL(ENABLE_PDF, test x$enable_pdf = xyes)
397 dnl ================== end of pdf checks ============================================
398
399 dnl libspectre (used by ps and dvi backends)
400 SPECTRE_REQUIRED=0.2.0 
401 PKG_CHECK_MODULES(SPECTRE, libspectre >= $SPECTRE_REQUIRED,have_spectre=yes,have_spectre=no)
402 AM_CONDITIONAL(HAVE_SPECTRE, test x$have_spectre = xyes)
403 if test "x$have_spectre" = "xyes"; then
404    AC_DEFINE([HAVE_SPECTRE], [1], [Have libspectre])
405 fi
406
407 dnl ================== ps checks ====================================================
408 AC_ARG_ENABLE(ps,
409         [AC_HELP_STRING([--disable-ps], [Compile without PostScript backend])],enable_ps=$enableval,enable_ps="yes")
410
411 if test "x$enable_ps" = "xyes"; then
412    if test "x$have_spectre" = "xyes"; then
413       AC_DEFINE([ENABLE_PS], [1], [Enable support for PostScript files.])
414    else
415       enable_ps="no"
416       AC_MSG_WARN([PS support is disabled since libspectre (version >= $SPECTRE_REQUIRED) is needed])
417    fi
418 fi
419 AM_CONDITIONAL(ENABLE_PS, test x$enable_ps = xyes)
420 dnl ======================== End of ps checks ===================================
421
422 dnl ================== tiff checks ===================================================
423 AC_ARG_ENABLE(tiff,
424             [AC_HELP_STRING([--enable-tiff], [Compile with support of multipage tiff])],enable_tiff="$enableval",enable_tiff=yes)
425
426 if test "x$enable_tiff" = "xyes"; then
427     AC_CHECK_HEADERS([tiff.h],enable_tiff=yes,enable_tiff=no,)
428     if test "x$enable_tiff" = "xyes"; then
429         AC_CHECK_LIB([tiff],TIFFOpen,enable_tiff=yes,enable_tiff=no,"-lz")
430         AC_CHECK_LIB([tiff],TIFFReadRGBAImageOriented,enable_tiff=yes,enable_tiff=no,"-lz")
431     fi
432     if test "x$enable_tiff" = "xyes"; then
433             AC_DEFINE([ENABLE_TIFF], [1], [Enable multipage tiff support.])
434     else
435             AC_MSG_WARN("Tiff support is disabled since tiff library version 3.6 or newer not found")
436     fi 
437 fi
438
439 AM_CONDITIONAL(ENABLE_TIFF, test x$enable_tiff = xyes)
440 dnl ================== end of tiff checks ============================================
441
442 dnl ================== djvu checks ===================================================
443
444 AC_ARG_ENABLE(djvu,
445             [AC_HELP_STRING([--enable-djvu], [Compile with support of djvu viewer])],enable_djvu="$enableval",enable_djvu=yes)
446
447 if test "x$enable_djvu" = "xyes"; then
448     DJVULIBRE_REQUIRED=3.5.17
449     PKG_CHECK_MODULES(DJVU, ddjvuapi >= $DJVULIBRE_REQUIRED, enable_djvu=yes, enable_djvu=no)
450
451     if test "x$enable_djvu" = "xyes"; then
452         AC_DEFINE([ENABLE_DJVU], [1], [Enable djvu viewer support.])
453     else
454         AC_MSG_WARN([   
455 ** Djvu support is disabled since a recent version of the djvulibre 
456 ** library was not found. You need at least djvulibre-3.5.17 which 
457 ** can be found on http://djvulibre.djvuzone.org 
458 ])
459     fi 
460 fi
461
462 AM_CONDITIONAL(ENABLE_DJVU, test x$enable_djvu = xyes)
463
464 dnl ================== End of djvu checks ===================================================
465
466 dnl ================== dvi checks ===================================================
467
468 AC_ARG_ENABLE(dvi,
469             [AC_HELP_STRING([--enable-dvi], [Compile with support of dvi viewer])],enable_dvi="$enableval",enable_dvi=yes)
470
471 AC_ARG_ENABLE(t1lib,
472             [AC_HELP_STRING([--enable-t1lib], [Compile with support of t1lib for type1 fonts in dvi])],enable_type1_fonts="$enableval",enable_type1_fonts=no)
473
474 if test "x$enable_dvi" = "xyes"; then
475     AC_C_CONST
476     AC_C_INLINE
477     AC_TYPE_SIZE_T
478     AC_CHECK_SIZEOF(long, 4)
479     AC_CHECK_SIZEOF(int, 4)
480     AC_CHECK_SIZEOF(short, 2)
481     AC_CHECK_SIZEOF(void *, 4)
482     AC_CHECK_LIB([kpathsea],[kpse_init_prog],[enable_dvi=yes],[enable_dvi=no])
483
484     if test "x$enable_dvi" = "xyes"; then
485         AC_DEFINE([ENABLE_DVI], [1], [Enable dvi viewer support.])
486     else
487         AC_MSG_WARN("Dvi support is disabled since kpathsea library is not found. Check your TeX installation.")
488     fi
489 fi
490 AM_CONDITIONAL(ENABLE_DVI, test x$enable_dvi = xyes)
491
492 if test "x$enable_dvi" = "xyes"; then
493     if test "x$enable_type1_fonts" = "xyes"; then
494         AC_CHECK_LIB([t1],T1_InitLib,enable_type1_fonts=yes,enable_type1_fonts=no,[-lm])
495     fi
496
497     if test "x$enable_type1_fonts" = xyes; then
498         AC_DEFINE([WITH_TYPE1_FONTS], [1], [Enable t1lib support in dvi.])
499     fi
500 else 
501     enable_type1_fonts=no
502 fi
503 AM_CONDITIONAL(WITH_TYPE1_FONTS, test x$enable_type1_fonts = xyes)
504
505 dnl ================== End of dvi checks ===================================================
506
507 dnl ================== pixbuf checks ===================================================
508
509 AC_ARG_ENABLE(pixbuf,
510             [AC_HELP_STRING([--enable-pixbuf], [Compile with support of pixbuf])],enable_pixbuf="$enableval",enable_pixbuf=no)
511 if test "x$enable_pixbuf" = "xyes"; then
512         AC_DEFINE([ENABLE_PIXBUF], [1], [Enable pixbuf support.])
513 fi
514 AM_CONDITIONAL(ENABLE_PIXBUF, test x$enable_pixbuf = xyes)
515
516 dnl ================== End of pixbuf checks ===================================================
517
518 dnl ================== comic book checks ===================================================
519  
520 AC_ARG_ENABLE(comics,
521         [AC_HELP_STRING([--enable-comics], [Compile with support for comic book archives])],enable_comics="$enableval",enable_comics=yes)
522 if test "x$enable_comics" = "xyes"; then
523         if test "x$os_win32" = "xyes"; then
524                 # The comics backend is disabled on windows because:
525                 # 1) it uses unix functions from sys/wait.h.
526                 # 2) it uses external decompression tools not generally available on windows.
527                 enable_comics=no
528                 AC_MSG_WARN(The comics backend is not supported on windows.)
529         else
530                 AC_DEFINE([ENABLE_COMICS], [1], [Enable support for comics.])
531         fi
532 fi 
533 AM_CONDITIONAL(ENABLE_COMICS, test x$enable_comics = xyes)
534
535 dnl ================== End of comic book checks ============================================
536
537 dnl ================== impress book checks ===================================================
538
539 AC_ARG_ENABLE(impress,
540         [AC_HELP_STRING([--enable-impress], [Compile with support for impress presentations])],enable_impress="$enableval",enable_impress=no)
541 if test "x$enable_impress" = "xyes"; then
542         AC_DEFINE([ENABLE_IMPRESS], [1], [Enable support for impress.])
543 fi 
544 AM_CONDITIONAL(ENABLE_IMPRESS, test x$enable_impress = xyes)
545
546 dnl ================== End of impress book checks ============================================
547
548 dnl =================== Mime types list ====================================================
549
550 if test "x$enable_pdf" = "xyes" ; then
551         EVINCE_MIME_TYPES="application/pdf;application/x-bzpdf;application/x-gzpdf;"
552 fi
553 if test "x$enable_ps" = "xyes" ; then
554         EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}application/postscript;application/x-bzpostscript;application/x-gzpostscript;image/x-eps;image/x-bzeps;image/x-gzeps;"
555 fi
556 if test "x$enable_dvi" = "xyes"; then
557         EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}application/x-dvi;application/x-bzdvi;application/x-gzdvi;"
558 fi
559 if test "x$enable_djvu" = "xyes"; then
560         EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}image/vnd.djvu;"
561 fi
562 if test "x$enable_tiff" = "xyes"; then
563         EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}image/tiff;"
564 fi
565 if test "x$enable_comics" = "xyes"; then
566         EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}application/x-cbr;application/x-cbz;application/x-cb7;"
567 fi
568 if test "x$enable_pixbuf" = "xyes"; then
569         EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}image/*;"
570 fi
571 if test "x$enable_impress" = "xyes"; then
572         EVINCE_MIME_TYPES="${EVINCE_MIME_TYPES}application/vnd.sun.xml.impress;application/vnd.oasis.opendocument.presentation;"
573 fi
574 AC_SUBST(EVINCE_MIME_TYPES)
575
576 AC_CHECK_FUNC(localtime_r, AC_DEFINE(HAVE_LOCALTIME_R, 1, [Defines if localtime_r is available on your system]))
577
578 # Backends directory
579
580 AC_SUBST([backenddir],"\$(libdir)/evince/ev_binary_version/backends")
581
582 # Versioning
583
584 AC_SUBST([EV_MAJOR_VERSION],[ev_major_version])
585 AC_SUBST([EV_MINOR_VERSION],[ev_minor_version])
586 AC_SUBST([EV_MICRO_VERSION],[ev_micro_version])
587
588 AC_SUBST([EV_API_VERSION],[ev_api_version])
589 AC_SUBST([EV_BINARY_VERSION],[ev_binary_version])
590
591 AC_SUBST([EV_DOCUMENT_LT_VERSION_INFO],[ev_document_lt_version_info])
592 AC_SUBST([EV_DOCUMENT_LT_CURRENT_MINUS_AGE],[ev_document_lt_current_minus_age])
593 AC_SUBST([EV_VIEW_LT_VERSION_INFO],[ev_view_lt_version_info])
594 AC_SUBST([EV_VIEW_LT_CURRENT_MINUS_AGE],[ev_view_lt_current_minus_age])
595
596 # *****************************************************************************
597
598 SHAVE_INIT([.], [enable])
599
600 AC_CONFIG_FILES([
601 backend/Makefile
602 backend/comics/Makefile
603 backend/djvu/Makefile
604 backend/dvi/Makefile
605 backend/dvi/mdvi-lib/Makefile
606 backend/impress/Makefile
607 backend/pdf/Makefile
608 backend/pixbuf/Makefile
609 backend/ps/Makefile
610 backend/tiff/Makefile
611 cut-n-paste/Makefile
612 cut-n-paste/gedit-message-area/Makefile
613 cut-n-paste/gimpcellrenderertoggle/Makefile
614 cut-n-paste/smclient/Makefile
615 cut-n-paste/toolbar-editor/Makefile
616 cut-n-paste/zoom-control/Makefile
617 cut-n-paste/totem-screensaver/Makefile
618 data/evince.desktop.in
619 data/Makefile
620 data/icons/Makefile
621 data/icons/16x16/Makefile
622 data/icons/16x16/apps/Makefile
623 data/icons/16x16/actions/Makefile
624 data/icons/22x22/Makefile
625 data/icons/22x22/apps/Makefile
626 data/icons/22x22/actions/Makefile
627 data/icons/24x24/Makefile
628 data/icons/24x24/apps/Makefile
629 data/icons/24x24/actions/Makefile
630 data/icons/32x32/Makefile
631 data/icons/32x32/actions/Makefile
632 data/icons/48x48/Makefile
633 data/icons/48x48/apps/Makefile
634 data/icons/48x48/actions/Makefile
635 data/icons/scalable/Makefile
636 data/icons/scalable/apps/Makefile
637 help/Makefile
638 help/reference/Makefile
639 help/reference/libdocument/Makefile
640 help/reference/libdocument/version.xml
641 help/reference/libview/Makefile
642 help/reference/libview/version.xml
643 help/reference/shell/Makefile
644 help/reference/shell/version.xml
645 libdocument/Makefile
646 libdocument/ev-version.h
647 libmisc/Makefile
648 libview/Makefile
649 Makefile
650 po/Makefile.in
651 previewer/Makefile
652 properties/Makefile
653 shave
654 shave-libtool
655 shell/Makefile
656 test/Makefile
657 thumbnailer/Makefile
658 ])
659
660 AC_CONFIG_FILES(evince-document-[]ev_api_version[].pc:evince-document.pc.in)
661 AC_CONFIG_FILES(evince-view-[]ev_api_version[].pc:evince-view.pc.in)
662
663 AC_OUTPUT
664
665 echo "
666 Configure summary:
667         GConf Support......:  $with_gconf
668         Keyring Support....:  $WITH_KEYRING
669         DBUS Support.......:  $enable_dbus
670         Nautilus Plugin....:  $HAVE_NAUTILUS
671         Thumbnailer........:  $ENABLE_THUMBNAILER
672         Previewer..........:  $ENABLE_PREVIEWER
673         Gtk-Doc Support....:  $enable_gtk_doc
674         Debug mode.........:  $enable_debug
675         GObj. Introspection:  $enable_introspection
676
677         PDF Backend........:  $enable_pdf
678         PostScript Backend.:  $enable_ps
679         TIFF Backend.......:  $enable_tiff
680         DJVU Backend.......:  $enable_djvu
681         DVI Backend........:  $enable_dvi
682         Pixbuf Backend.....:  $enable_pixbuf
683         Comics Backend.....:  $enable_comics
684         Impress Backend....:  $enable_impress
685 "