1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
|
m4_define([tny_major_version], [0])
m4_define([tny_minor_version], [0])
m4_define([tny_micro_version], [9])
m4_define([tny_version],
[tny_major_version.tny_minor_version.tny_micro_version])
m4_define([tny_interface_age], [0])
m4_define([tny_binary_age],
[m4_eval(100 * tny_minor_version + tny_micro_version)])
m4_define([tny_api_version], [1.0])
m4_define([lt_current], [m4_eval(100 * tny_minor_version + tny_micro_version - tny_interface_age)])
m4_define([lt_revision], [tny_interface_age])
m4_define([lt_age], [m4_eval(tny_binary_age - tny_interface_age)])
AC_INIT([libtinymail], [tny_version], [http://tinymail.org/trac/tinymail])
m4_pattern_allow([^AC_TNY_])
AC_CONFIG_SRCDIR(libtinymail/tny-folder.c)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
AC_CONFIG_MACRO_DIR([m4])
AC_SUBST(ACLOCAL_AMFLAGS, "$ACLOCAL_FLAGS -I m4")
AC_CONFIG_HEADERS(config.h)
LT_VERSION_INFO="lt_current:lt_revision:lt_age"
LT_CURRENT_MINUS_AGE=m4_eval(lt_current - lt_age)
AC_SUBST(LT_VERSION_INFO)
AC_SUBST(LT_CURRENT_MINUS_AGE)
dnl ### Don't export functions that start with _ ##
LIBTOOL_EXPORT_OPTIONS='-export-symbols-regex "^[[^_]].*"'
AC_SUBST(LIBTOOL_EXPORT_OPTIONS)
GETTEXT_PACKAGE=tinymail
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Package name for gettext])
AM_GLIB_DEFINE_LOCALEDIR([TNY_LOCALE_DIR])
ALL_LINGUAS=""
AM_GLIB_GNU_GETTEXT
API_VERSION=tny_api_version
AC_SUBST(API_VERSION)
if test x$prefix = xNONE; then
prefix=/usr/local
fi
AC_SUBST(prefix)
AC_PROG_CC
AC_PROG_CXX
AM_PROG_CC_STDC
AC_HEADER_STDC
AC_PROG_LIBTOOL
AC_PATH_PROG(VALAC, valac, valac)
AC_SUBST(VALAC)
dnl ### default values (will get overwritten)
build_acap=false
build_gnome=true
build_uigtk=true
build_demoui=true
build_mozembed=false
build_webkit=false
build_gtkhtml=false
build_doxygen=false
build_tests=false
build_unittests=false
build_tp=false
have_conic=false
PLATFORMDIR=libtinymail-gnome-desktop
PLATFORMSPECIFICNAME=Gnome
PLATFORM=1
dnl ### Select the platform library ##
AC_ARG_WITH(platform,
AC_HELP_STRING([--with-platform=gnome-desktop],
[Platform to compile (gnome-desktop, maemo, olpc or gpe)]),
[case "${with_platform}" in
gnome-desktop)
PLATFORMDIR=libtinymail-gnome-desktop
PLATFORMSPECIFICNAME=Gnome
build_uigtk=true
build_demoui=true
PLATFORM=1
;;
maemo)
PLATFORMDIR=libtinymail-maemo
PLATFORMSPECIFICNAME=Maemo
build_gtkhtml=false
build_mozembed=false
build_gnome=false
build_maemo=true
build_uigtk=true
build_demoui=true
PLATFORM=2
;;
gpe)
PLATFORMDIR=libtinymail-gpe
PLATFORMSPECIFICNAME=Gpe
build_uigtk=true
build_demoui=true
PLATFORM=3
;;
olpc)
PLATFORMDIR=libtinymail-olpc
PLATFORMSPECIFICNAME=Olpc
build_gtkhtml=false
build_mozembed=false
build_gnome=false
with_html_component=none
build_uigtk=true
build_demoui=true
PLATFORM=4
;;
*)
PLATFORMDIR=${with_platform}
PLATFORMSPECIFICNAME=
build_uigtk=false
build_demoui=false
PLATFORM=0
esac], [PLATFORMDIR=libtinymail-gnome-desktop
with_platform=gnome-desktop])
AC_SUBST(PLATFORMDIR)
AC_SUBST(PLATFORM)
AC_SUBST(PLATFORMSPECIFICNAME)
dnl ### Select the html component ##
AC_ARG_WITH(html-component,
AC_HELP_STRING([--with-html-component],
[Set which html component to use (mozembed, gtkhtml, webkit, none)]),
[case "$with_html_component" in
webkit)
build_gtkhtml=false
build_mozembed=false
build_webkit=true
;;
mozembed)
build_webkit=false
build_mozembed=true
build_gtkhtml=false
build_demoui=true
;;
gtkhtml)
build_webkit=false
build_mozembed=false
build_gtkhtml=true
build_demoui=true
;;
none)
with_html_component=none
build_mozembed=false
build_gtkhtml=false
build_webkit=false
;;
*) AC_MSG_ERROR(bad value ${with_html_component} for --with-html-component) ;;
esac], [build_mozembed=false
build_webkit=false
build_gtkhtml=false
with_html_component=none])
AM_CONDITIONAL(BUILD_MOZEMBED, test x$build_mozembed = xtrue)
AM_CONDITIONAL(BUILD_GTKHTML, test x$build_gtkhtml = xtrue)
AM_CONDITIONAL(BUILD_WEBKIT, test x$build_webkit = xtrue)
dnl ### Enable demoui ##
AC_ARG_ENABLE(demoui,
AC_HELP_STRING([--enable-demoui],
[Build the demo user interface (yes, no)]),
[case "${enableval}" in
yes)
build_demoui=true
build_uigtk=true
;;
no) build_demoui=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-demoui) ;;
esac],[build_demoui=$build_demoui])
AM_CONDITIONAL(BUILD_DEMOUI, test x$build_demoui = xtrue)
dnl ### Enable IMAP part-fetch feature ##
AC_ARG_ENABLE(imap-part-fetch,
AC_HELP_STRING([--enable-imap-part-fetch],
[Build using imap part fetch]),
[case "${enableval}" in
yes)
build_imapp=true
;;
no) build_imapp=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-part-fetch) ;;
esac],[build_imapp=$build_imapp])
AM_CONDITIONAL(BUILD_IMAPP, test x$build_imapp = xtrue)
dnl ### Enable gnome features ##
AC_ARG_ENABLE(gnome,
AC_HELP_STRING([--enable-gnome],
[Build using gnome features]),
[case "${enableval}" in
yes)
build_gnome=true
build_uigtk=true
;;
no) build_gnome=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-gnome) ;;
esac],[build_gnome=$build_gnome])
AM_CONDITIONAL(BUILD_GNOME, test x$build_gnome = xtrue)
dnl ### Enable acap features ##
AC_ARG_ENABLE(acap,
AC_HELP_STRING([--enable-acap],
[Build using acap features]),
[case "${enableval}" in
yes) build_acap=true ;;
no) build_acap=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-acap) ;;
esac],[build_acap=$build_acap])
AM_CONDITIONAL(BUILD_ACAP, test x$build_acap = xtrue)
dnl ### Enable building the unit tests ##
AC_ARG_ENABLE(unit-tests,
AC_HELP_STRING([--enable-unit-tests],
[Build unit tests (no, yes)]),
[case "${enableval}" in
yes)
build_tests=true
build_unittests=true
build_uigtk=true
;;
no) build_unittests=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-unit-tests) ;;
esac],[build_unittests=$build_unittests])
AM_CONDITIONAL(BUILD_UNITTESTS, test x$build_unittests = xtrue)
dnl ### Enable building the tests ##
AC_ARG_ENABLE(tests,
AC_HELP_STRING([--enable-tests],
[Build tests (no, yes)]),
[case "${enableval}" in
yes)
build_tests=true
build_uigtk=true
;;
no) build_tests=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-tests) ;;
esac],[build_tests=$build_tests])
AM_CONDITIONAL(BUILD_TESTS, test x$build_tests = xtrue)
dnl ### Enable uigtk ##
AC_ARG_ENABLE(uigtk,
AC_HELP_STRING([--enable-uigtk],
[Build the gtk+ implementation for the ui components (yes, no)]),
[case "${enableval}" in
yes) build_uigtk=true ;;
no) build_uigtk=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-uigtk) ;;
esac],[build_uigtk=$build_uigtk])
AM_CONDITIONAL(BUILD_UIGTK, test x$build_uigtk = xtrue)
dnl ### Enable GMail support ##
AC_ARG_ENABLE(tp,
AC_HELP_STRING([--enable-tp],
[Build the integration with telepathy (yes, no)]),
[case "${enableval}" in
yes) build_tp=true ;;
no) build_tp=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-tp) ;;
esac],[build_tp=$build_tp])
AM_CONDITIONAL(BUILD_TP, test x$build_tp = xtrue)
dnl ### Enable the python language bindings ##
AC_ARG_ENABLE(python-bindings,
AC_HELP_STRING([--enable-python-bindings],
[Build python bindings (no, yes)]),
[case "${enableval}" in
yes) build_pytinymail=true ;;
no) build_pytinymail=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-python-bindings) ;;
esac],[build_pytinymail=false])
AM_CONDITIONAL(BUILD_PYTINYMAIL, test x$build_pytinymail = xtrue)
dnl ### Enable the Vala language bindings ##
AC_ARG_ENABLE(vala-bindings,
AC_HELP_STRING([--enable-vala-bindings],
[Build vala bindings (no, yes)]),
[case "${enableval}" in
yes) build_vala_bindings=true ;;
no) build_vala_bindings=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-vala-bindings) ;;
esac],[build_vala_bindings=false])
AM_CONDITIONAL(BUILD_VALA_BINDINGS, test x$build_vala_bindings = xtrue)
dnl ### Enable the .NET language bindings ##
AC_ARG_ENABLE(dotnet-bindings,
AC_HELP_STRING([--enable-dotnet-bindings],
[Build .NET bindings (no, yes)]),
[case "${enableval}" in
yes) build_net_bindings=true ;;
no) build_net_bindings=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-dotnet-bindings) ;;
esac],[build_net_bindings=false])
AC_TNY_DOTNET_CHECK
AM_CONDITIONAL(BUILD_NET_BINDINGS, test x$build_net_bindings = xtrue)
dnl ### doxygen
AC_ARG_ENABLE(doxygen,
AC_HELP_STRING([--enable-doxygen],
[Build doxygen docs (no, yes)]),
[case "${enableval}" in
yes) build_doxygen=true ;;
no) build_doxygen=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-doxygen) ;;
esac],[build_doxygen=false])
AM_CONDITIONAL(BUILD_DOXYGEN, test x$build_doxygen = xtrue)
if test x$build_doxygen = xtrue; then
AC_CHECK_PROGS(DOXYGEN,doxygen, [You need doxygen])
AC_CHECK_PROGS(PERL,perl, [You need perl])
fi
dnl ### gtk-doc
GTK_DOC_CHECK([1.0])
dnl ### libtinymail, the abstraction library ##
PKG_CHECK_MODULES(LIBTINYMAIL, glib-2.0 >= 2.8 gobject-2.0)
AC_SUBST(LIBTINYMAIL_CFLAGS)
AC_SUBST(LIBTINYMAIL_LIBS)
dnl ### libtinymailui, the ui abstraction library ##
PKG_CHECK_MODULES(LIBTINYMAILUI, glib-2.0 >= 2.8 gobject-2.0)
AC_SUBST(LIBTINYMAILUI_CFLAGS)
AC_SUBST(LIBTINYMAILUI_LIBS)
dnl ### libtinymail-camel, a camel implementation of libtinymail ##
PKG_CHECK_MODULES(LIBTINYMAIL_CAMEL, glib-2.0 >= 2.8 gobject-2.0)
AC_SUBST(LIBTINYMAIL_CAMEL_CFLAGS)
AC_SUBST(LIBTINYMAIL_CAMEL_LIBS)
dnl ### libtinymail-tp, integration with telepathy
if test x$build_tp = xtrue; then
PKG_CHECK_MODULES(LIBTINYMAIL_TP, telepathy-glib)
else
LIBTINYMAIL_TP_CFLAGS=
LIBTINYMAIL_TP_LIBS=
fi
AC_SUBST(LIBTINYMAIL_TP_CFLAGS)
AC_SUBST(LIBTINYMAIL_TP_LIBS)
dnl ### libtinymail-gnomevfs, a tnystreamiface for gnome-vfs ##
if test x$build_gnome = xtrue; then
extragtkpkgs="libgnomeui-2.0 gnome-keyring-1"
extratnypkgs="gnome-vfs-2.0"
PKG_CHECK_MODULES(LIBTINYMAIL_GNOMEVFS, glib-2.0 >= 2.8 gobject-2.0 gnome-vfs-2.0)
elif test x$build_maemo = xtrue; then
extragtkpkgs=
extratnypkgs="gnome-vfs-2.0"
PKG_CHECK_MODULES(LIBTINYMAIL_GNOMEVFS, glib-2.0 >= 2.8 gobject-2.0 gnome-vfs-2.0)
else
LIBTINYMAIL_GNOMEVFS_CFLAGS=
LIBTINYMAIL_GNOMEVFS_LIBS=
extragtkpkgs=
extratnypkgs=
fi
AC_SUBST(LIBTINYMAIL_GNOMEVFS_CFLAGS)
AC_SUBST(LIBTINYMAIL_GNOMEVFS_LIBS)
dnl ### libtinymailui-gtk, a gtk+ implementation of libtinymail-ui ##
PKG_CHECK_MODULES(LIBTINYMAILUI_GTK, glib-2.0 >= 2.8 gobject-2.0 $extragtkpkgs gtk+-2.0)
AC_SUBST(LIBTINYMAILUI_GTK_CFLAGS)
AC_SUBST(LIBTINYMAILUI_GTK_LIBS)
dnl ### libtinymailui-mozembed, a library that wraps the gtkmozembed widget ##
if test x$build_mozembed = xtrue; then
AC_TNY_MOZ_CHECK
if test x$mozilla_xpcom = xno; then
AC_MSG_ERROR("You need Mozilla's XPCOM")
fi
if test x$mozilla_gtkmozembed = xno; then
AC_MSG_ERROR("You need Mozilla's GtkMozEmbed")
fi
extraplatpkgs="$mozilla_xpcom $mozilla_gtkmozembed"
extratnypkgs="$extratnypkgs $extraplatpkgs"
PKG_CHECK_MODULES(LIBTINYMAILUI_MOZEMBED, $extraplatpkgs glib-2.0 >= 2.8 gobject-2.0 gtk+-2.0 $extragtkpkgs)
MOZILLA_HOME="$mozilla_home"
AC_DEFINE_UNQUOTED(MOZILLA_HOME,"$mozilla_home",["The path of the mozilla engine"])
else
LIBTINYMAILUI_MOZEMBED_CFLAGS=
LIBTINYMAILUI_MOZEMBED_LIBS=
MOZILLA_HOME=
AM_CONDITIONAL([HAVE_MOZILLA_1_8],[test "0" = "1"])
AM_CONDITIONAL([HAVE_MOZILLA_1_9],[test "0" = "1"])
fi
AC_SUBST([MOZILLA_HOME])
dnl ### libtinymailui-gtkhtml, a library that wraps the GtkHtml widget ##
if test x$build_gtkhtml = xtrue; then
extraplatpkgs="libgtkhtml-3.8"
extratnypkgs="$extratnypkgs $extraplatpkgs"
PKG_CHECK_MODULES(LIBTINYMAILUI_GTKHTML, $extraplatpkgs glib-2.0 >= 2.8 gobject-2.0 gtk+-2.0 $extragtkpkgs)
else
LIBTINYMAILUI_GTKHTML_CFLAGS=
LIBTINYMAILUI_GTKHTML_LIBS=
fi
dnl ### libtinymail-gnome-desktop, a GNOME platform library implementation ##
if test x$PLATFORMDIR = xlibtinymail-gnome-desktop; then
PKG_CHECK_MODULES(LIBTINYMAIL_GNOME_DESKTOP, gconf-2.0 $extraplatpkgs libnm_glib glib-2.0 >= 2.8 gobject-2.0 gtk+-2.0 $extragtkpkgs)
else
LIBTINYMAIL_GNOME_DESKTOP_CFLAGS=
LIBTINYMAIL_GNOME_DESKTOP_LIBS=
fi
AC_SUBST(LIBTINYMAIL_GNOME_DESKTOP_CFLAGS)
AC_SUBST(LIBTINYMAIL_GNOME_DESKTOP_LIBS)
dnl ### libtinymail-olpc, a platform library implementation for the One Laptop Per Child device ##
if test x$PLATFORMDIR = xlibtinymail-olpc; then
PKG_CHECK_MODULES(LIBTINYMAIL_OLPC, glib-2.0 >= 2.8 gobject-2.0 gtk+-2.0)
else
LIBTINYMAIL_OLPC_CFLAGS=
LIBTINYMAIL_OLPC_LIBS=
fi
AC_SUBST(LIBTINYMAIL_OLPC_CFLAGS)
AC_SUBST(LIBTINYMAIL_OLPC_LIBS)
AC_DEFUN([ARMEL_TARGET],
[if sb-conf cu | grep -i 'armel' >/dev/null 2>&1; then
armel_target=yes])
dnl ### libtinymail-maemo, a platform library implementation for the maemo platform ##
if test x$PLATFORMDIR = xlibtinymail-maemo; then
PKG_CHECK_MODULES(LIBTINYMAIL_MAEMO, glib-2.0 >= 2.8 gobject-2.0 gconf-2.0 gtk+-2.0)
if $PKG_CONFIG --exists conic; then
PKG_CHECK_MODULES(LIBTINYMAIL_MAEMO_CONIC,conic,HAVE_CONIC=yes,HAVE_CONIC=no)
AC_MSG_RESULT(conic)
AC_SUBST(LIBYINYMAIL_MAEMO_CONIC_CFLAGS)
AC_SUBST(LIBTINYMAIL_MAEMO_CONIC_LIBS)
dnl HACK: unless we are building for arm, make the device a 'dummy' assuming it is always online
dnl this is because scratcbhox-Conic does not support ethernet, and will therefore never consider
dnl itself 'online'
if test -z "`sb-conf show -c | grep arm`"; then
use_conic_device_dummy=1
AC_DEFINE_UNQUOTED(MAEMO_CONIC_DUMMY,1,["Whether to hack the TnyMaemoConicDevice to somewhat work in sbox"])
fi
else
AC_DEFINE_UNQUOTED(LIBTINYMAIL_MAEMO_WITHOUT_CONIC,1,["whether the dummy libconic should be built"])
fi
AC_SUBST(LIBTINYMAIL_MAEMO_CFLAGS)
AC_SUBST(LIBTINYMAIL_MAEMO_LIBS)
fi
AM_CONDITIONAL(MAEMO_CONIC_DEVICE_DUMMY, test -n "$use_conic_device_dummy")
AM_CONDITIONAL(MAEMO_CONIC_HAVE_CONIC, test "x$HAVE_CONIC" = "xyes")
AM_CONDITIONAL(BUILD_MAEMO, test x$build_maemo = xtrue)
dnl ### libtinymail-gpe, a platform library implementation for the GPE platform ##
if test x$PLATFORMDIR = xlibtinymail-gpe; then
PKG_CHECK_MODULES(LIBTINYMAIL_GPE, glib-2.0 >= 2.8 gobject-2.0 gconf-2.0 gtk+-2.0)
else
LIBTINYMAIL_GPE_CFLAGS=
LIBTINYMAIL_GPE_LIBS=
fi
AC_SUBST(LIBTINYMAIL_GPE_CFLAGS)
AC_SUBST(LIBTINYMAIL_GPE_LIBS)
AC_SUBST(extraplatpkgs)
AC_SUBST(extragtkpkgs)
dnl ### libtinymail-test, a library for testing purposes ##
if test x$build_unittests = xtrue; then
PKG_CHECK_MODULES(CHECK, check >= 0.9.4 glib-2.0)
fi
dnl ### tinymail, the demo-ui ##
PKG_CHECK_MODULES(TINYMAIL, glib-2.0 >= 2.8 gobject-2.0 gtk+-2.0 $extratnypkgs)
AC_SUBST(TINYMAIL_CFLAGS)
AC_SUBST(TINYMAIL_LIBS)
dnl ### tinymail-python, the python language bindings ##
if test x$build_pytinymail = xtrue; then
AC_TNY_PYTHON_BINDING_CHECK
else
TINYMAIL_PYTHON_CFLAGS=
TINYMAIL_PYTHON_LIBS=
fi
AC_SUBST(PYGTK_CODEGENDIR)
AC_SUBST(TINYMAIL_PYTHON_CFLAGS)
AC_SUBST(TINYMAIL_PYTHON_LIBS)
AC_SUBST(PYGTK_CFLAGS)
AC_SUBST(PYGTK_LIBS)
BINDIR=$prefix/bin
AC_SUBST(BINDIR)
AC_CONFIG_SUBDIRS(libtinymail-camel/camel-lite)
AC_OUTPUT([
po/Makefile.in
libtinymail.spec
Makefile
docs/Makefile
docs/devel/Makefile
docs/devel/reference/Makefile
docs/devel/doxygen/Makefile
docs/devel/doxygen/libtinymail
docs/devel/doxygen/libtinymail-camel
docs/devel/doxygen/libtinymailui
docs/devel/doxygen/libtinymailui-gtk
bindings/Makefile
bindings/python/Makefile
bindings/python/gendefs/Makefile
bindings/python/tinymail.pth
bindings/vala/Makefile
bindings/dotnet/Makefile
bindings/dotnet/AssemblyInfo.cs
bindings/dotnet/tny/libtinymail-sharp.dll.config
bindings/dotnet/tny/libtinymail-sharp.pc
bindings/dotnet/tny/libtinymail-sources.xml
bindings/dotnet/tny/Makefile
bindings/dotnet/ui/libtinymailui-sharp.dll.config
bindings/dotnet/ui/libtinymailui-sharp.pc
bindings/dotnet/ui/libtinymailui-sources.xml
bindings/dotnet/ui/Makefile
bindings/dotnet/ui-gtk/libtinymailui-gtk-sharp.dll.config
bindings/dotnet/ui-gtk/libtinymailui-gtk-sharp.pc
bindings/dotnet/ui-gtk/libtinymailui-gtk-sources.xml
bindings/dotnet/ui-gtk/Makefile
bindings/dotnet/camel/libtinymail-camel-sharp.dll.config
bindings/dotnet/camel/libtinymail-camel-sharp.pc
bindings/dotnet/camel/libtinymail-camel-sources.xml
bindings/dotnet/camel/Makefile
bindings/dotnet/platform/libtinymail-platform-sharp.dll.config
bindings/dotnet/platform/libtinymail-platform-sharp.pc
bindings/dotnet/platform/libtinymail-platform-sources.xml
bindings/dotnet/platform/libtinymail-platform.metadata
bindings/dotnet/platform/Makefile
libtinymail/Makefile
libtinymail/libtinymail.pc
libtinymail-camel/Makefile
libtinymail-camel/libtinymail-camel.pc
libtinymail-tp/libtinymail-tp.pc
libtinymail-tp/Makefile
libtinymailui/Makefile
libtinymailui/libtinymailui.pc
libtinymailui-gtk/Makefile
libtinymailui-gtk/libtinymailui-gtk.pc
libtinymailui-webkit/Makefile
libtinymailui-webkit/libtinymailui-webkit.pc
libtinymailui-gtkhtml/Makefile
libtinymailui-gtkhtml/libtinymailui-gtkhtml.pc
libtinymailui-mozembed/Makefile
libtinymailui-mozembed/libtinymailui-mozembed.pc
libtinymailui-gnome-keyring/Makefile
libtinymail-gnomevfs/Makefile
libtinymail-gnomevfs/libtinymail-gnomevfs.pc
libtinymail-gnome-desktop/Makefile
libtinymail-gnome-desktop/libtinymail-gnome-desktop.pc
libtinymail-olpc/Makefile
libtinymail-olpc/libtinymail-olpc.pc
libtinymail-maemo/Makefile
libtinymail-maemo/libtinymail-maemo.pc
libtinymail-gpe/Makefile
libtinymail-gpe/libtinymail-gpe.pc
libtinymail-test/Makefile
libtinymail-acap/Makefile
libtinymail-acap/libtinymail-acap.pc
tests/Makefile
tests/c-demo/Makefile
tests/shared/Makefile
tests/python-demo/Makefile
tests/memory/Makefile
tests/functional/Makefile
tests/vala-demo/Makefile
tests/dotnet-demo/build.sh
m4/Makefile
])
echo ""
echo "The following options are selected:"
echo ""
echo " Enable GNOME features: $build_gnome"
echo " Enable ACAP features: $build_acap"
echo " Enable Telepathy features: $build_tp"
echo " HTML component: ${with_html_component}"
echo " Python language bindings: $build_pytinymail"
echo " API tests: $build_apitests"
echo " Unit tests: $build_unittests"
echo " Tests: $build_tests"
echo " Target platform: ${with_platform}"
echo " Prefix: ${prefix}"
echo ""
echo "Version info:"
echo ""
echo " Version: $VERSION"
echo " API version: $API_VERSION"
echo " ABI version: $LT_VERSION_INFO - $LT_CURRENT_MINUS_AGE"
echo ""
|