mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fix a bunch of non-Linux compile failures.
This commit is contained in:
@ -278,6 +278,7 @@ EndProject
|
|||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mysql_client_test", "tests\mysql_client_test.vcproj", "{DA224DAB-5006-42BE-BB77-16E8BE5326D5}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mysql_client_test", "tests\mysql_client_test.vcproj", "{DA224DAB-5006-42BE-BB77-16E8BE5326D5}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{26383276-4843-494B-8BE0-8936ED3EBAAB} = {26383276-4843-494B-8BE0-8936ED3EBAAB}
|
{26383276-4843-494B-8BE0-8936ED3EBAAB} = {26383276-4843-494B-8BE0-8936ED3EBAAB}
|
||||||
|
{44D9C7DC-6636-4B82-BD01-6876C64017DF} = {44D9C7DC-6636-4B82-BD01-6876C64017DF}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mysql_test_run_new", "mysql-test\mysql_test_run_new.vcproj", "{6189F838-21C6-42A1-B2D0-9146316573F7}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mysql_test_run_new", "mysql-test\mysql_test_run_new.vcproj", "{6189F838-21C6-42A1-B2D0-9146316573F7}"
|
||||||
|
@ -3188,6 +3188,49 @@
|
|||||||
PreprocessorDefinitions=""/>
|
PreprocessorDefinitions=""/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="my_memmem.c">
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32">
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
AdditionalIncludeDirectories=""
|
||||||
|
PreprocessorDefinitions=""/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Max|Win32">
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="2"
|
||||||
|
AdditionalIncludeDirectories=""
|
||||||
|
PreprocessorDefinitions=""/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32">
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="2"
|
||||||
|
AdditionalIncludeDirectories=""
|
||||||
|
PreprocessorDefinitions=""/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="TLS_DEBUG|Win32">
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
AdditionalIncludeDirectories=""
|
||||||
|
PreprocessorDefinitions=""/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="TLS|Win32">
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="2"
|
||||||
|
AdditionalIncludeDirectories=""
|
||||||
|
PreprocessorDefinitions=""/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="my_messnc.c">
|
RelativePath="my_messnc.c">
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
|
@ -9,8 +9,9 @@
|
|||||||
void *my_memmem(const void *haystack, size_t haystacklen,
|
void *my_memmem(const void *haystack, size_t haystacklen,
|
||||||
const void *needle, size_t needlelen)
|
const void *needle, size_t needlelen)
|
||||||
{
|
{
|
||||||
const void *cursor;
|
const unsigned char *cursor;
|
||||||
const void *last_possible_needle_location = haystack + haystacklen - needlelen;
|
const unsigned char *last_possible_needle_location =
|
||||||
|
(unsigned char *)haystack + haystacklen - needlelen;
|
||||||
|
|
||||||
/* Easy answers */
|
/* Easy answers */
|
||||||
if (needlelen > haystacklen) return(NULL);
|
if (needlelen > haystacklen) return(NULL);
|
||||||
|
@ -42,7 +42,7 @@ INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include \
|
|||||||
LIBS = @CLIENT_LIBS@
|
LIBS = @CLIENT_LIBS@
|
||||||
LDADD = @CLIENT_EXTRA_LDFLAGS@ \
|
LDADD = @CLIENT_EXTRA_LDFLAGS@ \
|
||||||
$(top_builddir)/libmysql/libmysqlclient.la
|
$(top_builddir)/libmysql/libmysqlclient.la
|
||||||
mysql_client_test_LDADD= $(LDADD) $(CXXLDFLAGS) -lmysys -L../mysys
|
mysql_client_test_LDADD= $(LDADD) $(CXXLDFLAGS) -L../mysys -lmysys
|
||||||
mysql_client_test_SOURCES= mysql_client_test.c $(yassl_dummy_link_fix)
|
mysql_client_test_SOURCES= mysql_client_test.c $(yassl_dummy_link_fix)
|
||||||
insert_test_SOURCES= insert_test.c $(yassl_dummy_link_fix)
|
insert_test_SOURCES= insert_test.c $(yassl_dummy_link_fix)
|
||||||
select_test_SOURCES= select_test.c $(yassl_dummy_link_fix)
|
select_test_SOURCES= select_test.c $(yassl_dummy_link_fix)
|
||||||
|
@ -14828,7 +14828,6 @@ static void test_bug15613()
|
|||||||
static void test_bug17667()
|
static void test_bug17667()
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
myheader("test_bug17667");
|
|
||||||
struct buffer_and_length {
|
struct buffer_and_length {
|
||||||
const char *buffer;
|
const char *buffer;
|
||||||
const uint length;
|
const uint length;
|
||||||
@ -14845,6 +14844,8 @@ static void test_bug17667()
|
|||||||
struct buffer_and_length *statement_cursor;
|
struct buffer_and_length *statement_cursor;
|
||||||
FILE *log_file;
|
FILE *log_file;
|
||||||
|
|
||||||
|
myheader("test_bug17667");
|
||||||
|
|
||||||
for (statement_cursor= statements; statement_cursor->buffer != NULL;
|
for (statement_cursor= statements; statement_cursor->buffer != NULL;
|
||||||
statement_cursor++) {
|
statement_cursor++) {
|
||||||
rc= mysql_real_query(mysql, statement_cursor->buffer,
|
rc= mysql_real_query(mysql, statement_cursor->buffer,
|
||||||
|
Reference in New Issue
Block a user