Show
Ignore:
Timestamp:
11/18/09 04:40:30 (3 years ago)
Author:
mercyful
Message:

$ Build 438/Sql Alpha
+ Removed all SQLite Code and References.
+ Updated the SQL Wrapper, and all Automake files to now link in and also Detect MySql? in the configure scripts.
+ Added detection for OpenSSL, not in use yet, but will add encryption for passwords.

and anything else of intertest once everything is moved over to the SQL Backend.

This is still an interm develop update release, the MySql? backend
is still a WIP, and the Husky SMAPI Library will be removed shortly.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/sql_StderrLog.cpp

    r127 r129  
    1 /* 
     1/** 
    22 **     StderrLog.cpp 
    33 ** 
     
    66 
    77/* 
    8 Copyright (C) 2004,2005,2006  Anders Hedstrom 
     8Copyright (C) 2004  Anders Hedstrom 
    99 
    1010This program is made available under the terms of the GNU GPL. 
     
    3737#include <string> 
    3838#include <map> 
     39#ifdef WIN32 
     40#include <config-win.h> 
     41#include <mysql.h> 
    3942#include <time.h> 
    40 #include <sqlite3.h> 
     43#else 
     44#include <mysql/mysql.h> 
     45#endif 
    4146 
    4247#include "sql_Database.h" 
    4348#include "sql_Query.h" 
    44 #include "sql_IError.h" 
     49//#include "sql_IError.h" 
    4550#include "sql_StderrLog.h" 
    4651 
    4752 
    48 #ifdef SQLITEW_NAMESPACE 
    49 namespace SQLITEW_NAMESPACE { 
     53#ifdef MYSQLW_NAMESPACE 
     54namespace MYSQLW_NAMESPACE { 
    5055#endif 
    5156 
     
    7479 
    7580 
    76 #ifdef SQLITEW_NAMESPACE 
    77 } // namespace SQLITEW_NAMESPACE { 
     81#ifdef MYSQLW_NAMESPACE 
     82} // namespace MYSQLW_NAMESPACE { 
    7883#endif 
    7984