Index: configure.in
===================================================================
--- configure.in (revision 2079)
+++ configure.in (working copy)
@@ -119,6 +119,17 @@
AC_SUBST(DBUS_LIBS)
#
+# Voice Notes require Gstreamer
+#
+PKG_CHECK_MODULES(GST, gstreamer-0.10, ENABLE_GST="yes", ENABLE_GST="no")
+AC_ARG_ENABLE(gstreamer,
+ [ --enable-gstreamer[[=no/yes]] compile with Voice Notes addin [[default: yes]]],
+ ENABLE_GST="$enableval")
+AM_CONDITIONAL(ENABLE_GST, test "$ENABLE_GST" = "yes")
+AC_SUBST(GST_CFLAGS)
+AC_SUBST(GST_LIBS)
+
+#
# Check for external Mono.Addins
#
PKG_CHECK_MODULES(MONO_ADDINS, mono-addins >= 0.3 \
@@ -291,6 +302,7 @@
Tomboy/Addins/SshSyncService/Makefile
Tomboy/Addins/StickyNoteImport/Makefile
Tomboy/Addins/Tasque/Makefile
+Tomboy/Addins/VoiceNotes/Makefile
Tomboy/Addins/WebDavSyncService/Makefile
test/Makefile
po/Makefile.in
Index: Tomboy.mdp
===================================================================
--- Tomboy.mdp (revision 2079)
+++ Tomboy.mdp (working copy)
@@ -206,6 +206,8 @@
+
+
Index: Tomboy/Tomboy.exe.config.in
===================================================================
--- Tomboy/Tomboy.exe.config.in (revision 2079)
+++ Tomboy/Tomboy.exe.config.in (working copy)
@@ -2,6 +2,7 @@
+
Index: Tomboy/Addins/Makefile.am
===================================================================
--- Tomboy/Addins/Makefile.am (revision 2079)
+++ Tomboy/Addins/Makefile.am (working copy)
@@ -13,5 +13,7 @@
SshSyncService \
StickyNoteImport \
Tasque \
+ VoiceNotes \
WebDavSyncService
+