Changeset 2140
- Timestamp:
- 06/13/07 08:36:11
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/Makefile.am (modified) (1 diff)
- trunk/configure.ac (modified) (5 diffs)
- trunk/libtinymail-tp (added)
- trunk/libtinymail-tp/Makefile.am (added)
- trunk/libtinymail-tp/libtinymail-tp.pc.in (added)
- trunk/libtinymail-tp/tny-tp-mail-notifier.c (added)
- trunk/libtinymail-tp/tny-tp-mail-notifier.h (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r2137 r2140 1 2007-06-13 Philip Van Hoof <pvanhoof@gnome.org> 2 3 * Added placeholder for future libtinymail-tp 4 * This is unfinished material (don't yet use it) 5 1 6 2007-06-12 Philip Van Hoof <pvanhoof@gnome.org> 2 7 trunk/Makefile.am
r1957 r2140 25 25 if BUILD_ACAP 26 26 SUBDIRS += libtinymail-acap 27 endif 28 29 if BUILD_TP 30 SUBDIRS += libtinymail-tp 27 31 endif 28 32 trunk/configure.ac
r2052 r2140 66 66 build_tests=false 67 67 build_unittests=false 68 build_tp=false 68 69 PLATFORMDIR=libtinymail-gnome-desktop 69 70 PLATFORM=1 … … 257 258 AM_CONDITIONAL(BUILD_UIGTK, test x$build_uigtk = xtrue) 258 259 260 dnl ### Enable GMail support ## 261 AC_ARG_ENABLE(tp, 262 AC_HELP_STRING([--enable-tp], 263 [Build the integration with telepathy (yes, no)]), 264 [case "${enableval}" in 265 yes) build_tp=true ;; 266 no) build_tp=false ;; 267 *) AC_MSG_ERROR(bad value ${enableval} for --enable-tp) ;; 268 esac],[build_tp=$build_tp]) 269 AM_CONDITIONAL(BUILD_TP, test x$build_tp = xtrue) 270 259 271 dnl ### Enable the python language bindings ## 260 272 AC_ARG_ENABLE(python-bindings, … … 313 325 AC_SUBST(LIBTINYMAIL_CAMEL_CFLAGS) 314 326 AC_SUBST(LIBTINYMAIL_CAMEL_LIBS) 327 328 dnl ### libtinymail-tp, integration with telepathy 329 if test x$build_tp = xtrue; then 330 PKG_CHECK_MODULES(LIBTINYMAIL_TP, telepathy-glib) 331 else 332 LIBTINYMAIL_TP_CFLAGS= 333 LIBTINYMAIL_TP_LIBS= 334 fi 335 AC_SUBST(LIBTINYMAIL_TP_CFLAGS) 336 AC_SUBST(LIBTINYMAIL_TP_LIBS) 315 337 316 338 dnl ### libtinymail-gnomevfs, a tnystreamiface for gnome-vfs ## … … 477 499 libtinymail-camel/Makefile 478 500 libtinymail-camel/libtinymail-camel.pc 501 libtinymail-tp/libtinymail-tp.pc 502 libtinymail-tp/Makefile 479 503 libtinymailui/Makefile 480 504 libtinymailui/libtinymailui.pc … … 515 539 echo " Enable GNOME features: $build_gnome" 516 540 echo " Enable ACAP features: $build_acap" 541 echo " Enable Telepathy features: $build_tp" 517 542 echo " Build the queues library: $build_queues" 518 543 echo " Build the asyncworker impl: $build_asyncworker"
