diff options
author | unknown <igor@rurik.mysql.com> | 2006-06-06 09:59:45 -0700 |
---|---|---|
committer | unknown <igor@rurik.mysql.com> | 2006-06-06 09:59:45 -0700 |
commit | 5efb70d7771c905b61e5e01e2f0643a5953adb83 (patch) | |
tree | 9310350073023544f0de02973e0facd4ef20c151 /VC++Files | |
parent | f1b1c0eb3f916591c059da8c21334e848ae75b43 (diff) | |
download | mariadb-git-5efb70d7771c905b61e5e01e2f0643a5953adb83.tar.gz |
Fixed some problems for Windows build
VC++Files/client/mysql.dsp:
Fixed omission of mysys\my_conio.c.
VC++Files/client/mysql_ia64.dsp:
Fixed omission of mysys\my_conio.c.
client/mysqldump.c:
VS compiler does not accept variable declarations within blocks.
Such a behaviour complies with the Standard C.
Diffstat (limited to 'VC++Files')
-rw-r--r-- | VC++Files/client/mysql.dsp | 4 | ||||
-rw-r--r-- | VC++Files/client/mysql_ia64.dsp | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/VC++Files/client/mysql.dsp b/VC++Files/client/mysql.dsp index 8298e62d8ad..c19e7b7d7fe 100644 --- a/VC++Files/client/mysql.dsp +++ b/VC++Files/client/mysql.dsp @@ -144,6 +144,10 @@ SOURCE=.\readline.cpp # End Source File # Begin Source File +SOURCE=..\mysys\my_conio.c +# End Source File +# Begin Source File + SOURCE=.\sql_string.cpp # End Source File # End Target diff --git a/VC++Files/client/mysql_ia64.dsp b/VC++Files/client/mysql_ia64.dsp index 3fe2e2a2328..8de283d1e0b 100644 --- a/VC++Files/client/mysql_ia64.dsp +++ b/VC++Files/client/mysql_ia64.dsp @@ -130,6 +130,10 @@ SOURCE=.\readline.cpp # End Source File # Begin Source File +SOURCE=..\mysys\my_conio.c +# End Source File +# Begin Source File + SOURCE=.\sql_string.cpp # End Source File # End Target |