[asterisk-commits] mmichelson: trunk r114841 - in /trunk: UPGRADE.txt apps/app_directory.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Apr 29 13:48:26 CDT 2008


Author: mmichelson
Date: Tue Apr 29 13:48:26 2008
New Revision: 114841

URL: http://svn.digium.com/view/asterisk?view=rev&rev=114841
Log:
Make app_directory dependent on app_voicemail. This is because the function
which says the person's name is handled inside app_voicemail now.


Modified:
    trunk/UPGRADE.txt
    trunk/apps/app_directory.c

Modified: trunk/UPGRADE.txt
URL: http://svn.digium.com/view/asterisk/trunk/UPGRADE.txt?view=diff&rev=114841&r1=114840&r2=114841
==============================================================================
--- trunk/UPGRADE.txt (original)
+++ trunk/UPGRADE.txt Tue Apr 29 13:48:26 2008
@@ -103,6 +103,8 @@
 * WaitMusicOnHold application is now deprecated in favor of extended MusicOnHold.
 * SetMusicOnHold is now deprecated. You should use Set(CHANNEL(musicclass)=...)
   instead.
+* While app_directory has always relied on having a voicemail.conf or users.conf file
+  correctly set up, it now is dependent on app_voicemail being compiled as well.
 
 Dialplan Functions:
 

Modified: trunk/apps/app_directory.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_directory.c?view=diff&rev=114841&r1=114840&r2=114841
==============================================================================
--- trunk/apps/app_directory.c (original)
+++ trunk/apps/app_directory.c Tue Apr 29 13:48:26 2008
@@ -25,6 +25,9 @@
  * \ingroup applications
  */
 
+/*** MODULEINFO
+	<depend>app_voicemail</depend>
+ ***/
 #include "asterisk.h"
 
 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")




More information about the asterisk-commits mailing list