Changeset 670
- Timestamp:
- 15/08/08 10:42:02 (4 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
storage/authreg_mysql.c (modified) (1 diff)
-
win32/modules/authreg_mysql/authreg_mysql.vcproj (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/storage/authreg_mysql.c
r647 r670 25 25 #include <unistd.h> 26 26 27 /* Windows does not has the crypt function, let's take DES_crypt from OpenSSL instead */ 28 #if defined(HAVE_OPENSSL_CRYPTO_H) && defined(_WIN32) 29 #include <openssl/des.h> 30 #define crypt DES_crypt 31 #endif 32 27 33 #define MYSQL_LU 1024 /* maximum length of username - should correspond to field length */ 28 34 #define MYSQL_LR 256 /* maximum length of realm - should correspond to field length */ -
trunk/win32/modules/authreg_mysql/authreg_mysql.vcproj
r664 r670 62 62 <Tool 63 63 Name="VCLinkerTool" 64 AdditionalDependencies="libmysql.lib c2s.lib jabberd2.lib libexpat.lib "64 AdditionalDependencies="libmysql.lib c2s.lib jabberd2.lib libexpat.lib libeay32MT.lib" 65 65 OutputFile="../../bin/debug/modules/$(ProjectName).dll" 66 66 LinkIncremental="2" … … 140 140 <Tool 141 141 Name="VCLinkerTool" 142 AdditionalDependencies="libmysql.lib c2s.lib jabberd2.lib libexpat.lib "142 AdditionalDependencies="libmysql.lib c2s.lib jabberd2.lib libexpat.lib libeay32MT.lib" 143 143 OutputFile="../../bin/modules/$(ProjectName).dll" 144 144 LinkIncremental="1"
