24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-16 22:05:29 +02:00

* src/odbc_queries.erl: Added a default define value so that we can

recompile the file manually with a simple erlc command.

SVN Revision: 1003
This commit is contained in:
Mickaël Rémond 2007-11-30 18:06:26 +00:00
parent 02db5aa005
commit e4cf286aa2
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-11-30 Mickael Remond <mremond@process-one.net>
* src/odbc_queries.erl: Added a default define value so that we can
recompile the file manually with a simple erlc command.
2007-11-29 Badlop <badlop@process-one.net>
* src/mod_vcard.erl: Add type of x:data field to search

View File

@ -41,8 +41,12 @@
escape/1,
count_records_where/3]).
%% We have only two compile time options for db queries:
%-define(generic, true).
%-define(mssql, true).
-ifndef(mssql).
-define(generic, true).
-endif.
%% -----------------
%% Generic queries