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

can recompile the file manually with a simple erlc command (with the
default generic value).

SVN Revision: 1007
This commit is contained in:
Mickaël Rémond 2007-12-01 14:25:31 +00:00
parent c61d10f28a
commit 7d68866c59
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2007-12-01 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 (with the
default generic value).
2007-12-01 Alexey Shchepin <alexey@process-one.net>
* src/mod_pubsub/Makefile.in: Removed mod_pubsub_old mentioning

View File

@ -44,9 +44,10 @@
%% We have only two compile time options for db queries:
%-define(generic, true).
%-define(mssql, true).
%-ifndef(mssql).
%-define(generic, true).
%-endif.
-ifndef(mssql).
-undef(generic).
-define(generic, true).
-endif.
%% -----------------
%% Generic queries