Commit 0e8d2903 authored by unknown's avatar unknown
Browse files

Merge bk-internal:/home/bk/mysql-5.0-maint

into  quadxeon.mysql.com:/users/mtaylor/mysql-5.0-maint

parents 42902831 1e00143d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ ADD_CUSTOM_TARGET(GenError
                  DEPENDS ${PROJECT_SOURCE_DIR}/include/mysqld_error.h)

ADD_EXECUTABLE(my_print_defaults my_print_defaults.c)
TARGET_LINK_LIBRARIES(my_print_defaults strings mysys dbug taocrypt odbc32 odbccp32 wsock32)
TARGET_LINK_LIBRARIES(my_print_defaults strings mysys dbug taocrypt wsock32)

ADD_EXECUTABLE(perror perror.c)
TARGET_LINK_LIBRARIES(perror strings mysys dbug wsock32)
+17 −1
Original line number Diff line number Diff line
yaSSL Release notes, version 1.5.0 (11/09/06)
*****************yaSSL Release notes, version 1.5.0 (1/10/07)

    This release of yaSSL contains bug fixes, portability enhancements, and
    support for GCC 4.1.1 and vs2005 sp1.



    Since yaSSL now supports zlib, as does libcur, the libcurl build test can
    fail if yaSSL is built with zlib support since the zlib library isn't 
    passed.  You can do two things to fix this: 

        1) build yaSSL w/o zlib --without-zlib
        2) or add flags to curl configure LDFLAGS="-lm -lz"



*****************yaSSL Release notes, version 1.5.0 (11/09/06)

    This release of yaSSL contains bug fixes, portability enhancements,
    and full TLS 1.1 support.  Use the functions:
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@
#include "rsa.h"


#define YASSL_VERSION "1.5.0"
#define YASSL_VERSION "1.5.8"


#if defined(__cplusplus)
+0 −18
Original line number Diff line number Diff line
REM quick and dirty build file for testing different MSDEVs

@echo off
REM Copyright (C) 2006 MySQL AB
REM 
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
REM the Free Software Foundation; version 2 of the License.
REM 
REM This program is distributed in the hope that it will be useful,
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
REM GNU General Public License for more details.
REM 
REM You should have received a copy of the GNU General Public License
REM along with this program; if not, write to the Free Software
REM Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
@echo on

setlocal 

set myFLAGS= /I../include /I../taocrypt/mySTL /I../taocrypt/include /W3 /c /ZI
+1 −1
Original line number Diff line number Diff line
@@ -958,7 +958,7 @@ void ERR_print_errors_fp(FILE* /*fp*/)

char* ERR_error_string(unsigned long errNumber, char* buffer)
{
  static char* msg = (char*) "Please supply a buffer for error string";
    static char* msg = "Please supply a buffer for error string";

    if (buffer) {
        SetErrorString(YasslError(errNumber), buffer);
Loading