Changeset 2140

Show
Ignore:
Timestamp:
06/13/07 08:36:11
Author:
pvanhoof
Message:

Placeholder for TP

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r2137 r2140  
     12007-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 
    162007-06-12  Philip Van Hoof  <pvanhoof@gnome.org> 
    27 
  • trunk/Makefile.am

    r1957 r2140  
    2525if BUILD_ACAP 
    2626SUBDIRS += libtinymail-acap 
     27endif 
     28 
     29if BUILD_TP 
     30SUBDIRS += libtinymail-tp 
    2731endif 
    2832 
  • trunk/configure.ac

    r2052 r2140  
    6666build_tests=false 
    6767build_unittests=false 
     68build_tp=false 
    6869PLATFORMDIR=libtinymail-gnome-desktop 
    6970PLATFORM=1 
     
    257258AM_CONDITIONAL(BUILD_UIGTK, test x$build_uigtk = xtrue) 
    258259 
     260dnl ### Enable GMail support ## 
     261AC_ARG_ENABLE(tp, 
     262AC_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) ;; 
     268esac],[build_tp=$build_tp]) 
     269AM_CONDITIONAL(BUILD_TP, test x$build_tp = xtrue) 
     270 
    259271dnl ### Enable the python language bindings ## 
    260272AC_ARG_ENABLE(python-bindings, 
     
    313325AC_SUBST(LIBTINYMAIL_CAMEL_CFLAGS) 
    314326AC_SUBST(LIBTINYMAIL_CAMEL_LIBS) 
     327 
     328dnl ### libtinymail-tp, integration with telepathy 
     329if test x$build_tp = xtrue; then 
     330PKG_CHECK_MODULES(LIBTINYMAIL_TP, telepathy-glib) 
     331else 
     332LIBTINYMAIL_TP_CFLAGS= 
     333LIBTINYMAIL_TP_LIBS= 
     334fi 
     335AC_SUBST(LIBTINYMAIL_TP_CFLAGS) 
     336AC_SUBST(LIBTINYMAIL_TP_LIBS) 
    315337 
    316338dnl ### libtinymail-gnomevfs, a tnystreamiface for gnome-vfs ## 
     
    477499libtinymail-camel/Makefile 
    478500libtinymail-camel/libtinymail-camel.pc 
     501libtinymail-tp/libtinymail-tp.pc 
     502libtinymail-tp/Makefile 
    479503libtinymailui/Makefile 
    480504libtinymailui/libtinymailui.pc 
     
    515539echo "  Enable GNOME features:       $build_gnome" 
    516540echo "  Enable ACAP features:        $build_acap" 
     541echo "  Enable Telepathy features:   $build_tp" 
    517542echo "  Build the queues library:    $build_queues" 
    518543echo "   Build the asyncworker impl: $build_asyncworker"