[asterisk-commits] branch oej/test-this-branch r12874 - /team/oej/test-this-branch/res/

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Tue Mar 14 04:27:04 MST 2006


Author: oej
Date: Tue Mar 14 05:27:02 2006
New Revision: 12874

URL: http://svn.digium.com/view/asterisk?rev=12874&view=rev
Log:
More fixes (got the include file reference from cdr_psgql.c)

Modified:
    team/oej/test-this-branch/res/res_config_pgsql.c

Modified: team/oej/test-this-branch/res/res_config_pgsql.c
URL: http://svn.digium.com/view/asterisk/team/oej/test-this-branch/res/res_config_pgsql.c?rev=12874&r1=12873&r2=12874&view=diff
==============================================================================
--- team/oej/test-this-branch/res/res_config_pgsql.c (original)
+++ team/oej/test-this-branch/res/res_config_pgsql.c Tue Mar 14 05:27:02 2006
@@ -12,18 +12,33 @@
  * v1.0   - (07-11-05) - Initial version based on res_config_mysql v2.0
  */
 
-#include <asterisk/channel.h>
-#include <asterisk/logger.h>
-#include <asterisk/config.h>
-#include <asterisk/module.h>
-#include <asterisk/lock.h>
-#include <asterisk/options.h>
-#include <asterisk/cli.h>
-#include <asterisk/utils.h>
+/*! \file
+ *
+ * \brief Postgresql plugin for Asterisk RealTime Architecture
+ *
+ * \author Mark Spencer <markster at digium.com>
+ * \author Manuel Guesdon <mguesdon at oxymium.net> - Postgresql RealTime Driver Author/Adaptor
+ *
+ * \arg http://www.postgresql.org
+ */
+
 #include <stdlib.h>
 #include <string.h>
-#include <pgsql/libpq-fe.h>
+#include <libpq-fe.h>	/* PostgreSQL */
 #include <errmsg.h>
+
+ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+
+#include "asterisk/file.h"
+#include "asterisk/logger.h"
+#include "asterisk/channel.h"
+#include "asterisk/pbx.h"
+#include "asterisk/config.h"
+#include "asterisk/module.h"
+#include "asterisk/lock.h"
+#include "asterisk/options.h"
+#include "asterisk/utils.h"
+#include "asterisk/cli.h"
 
 static char *res_config_pgsql_desc = "Postgresql RealTime Configuration Driver";
 



More information about the asterisk-commits mailing list