Commit c506c395 authored by unknown's avatar unknown

- Tagged ChangeSet 1.1321 as mysql-4.0.4

 - added some missing changelog entries to the 4.0.5 changelog
 - applied small fix to configure.in from monty (already applied manually
   to configure.in of the 4.0.4 release source files - not relevant for
   normal builds anyway)


Docs/manual.texi:
   - added missing changelog entries
   - added the 4.0.4 release date
configure.in:
   - bumped up version number to 4.0.5-beta, now that the 4.0.4 builds
     are done
   - applied fix from Monty to be able to build shared libraries even
     when the the static NSS libraries are installed. This patch has already
     been applied to the released 4.0.4 sources to work around a local build
     problem, but has not been checked in yet.
parent c525a541
...@@ -50811,7 +50811,7 @@ each individual 4.0.x release. ...@@ -50811,7 +50811,7 @@ each individual 4.0.x release.
@menu @menu
* News-4.0.5:: Changes in release 4.0.5 * News-4.0.5:: Changes in release 4.0.5
* News-4.0.4:: Changes in release 4.0.4 * News-4.0.4:: Changes in release 4.0.4 (29 Sep 2002)
* News-4.0.3:: Changes in release 4.0.3 (26 Aug 2002: Beta) * News-4.0.3:: Changes in release 4.0.3 (26 Aug 2002: Beta)
* News-4.0.2:: Changes in release 4.0.2 (01 Jul 2002) * News-4.0.2:: Changes in release 4.0.2 (01 Jul 2002)
* News-4.0.1:: Changes in release 4.0.1 (23 Dec 2001) * News-4.0.1:: Changes in release 4.0.1 (23 Dec 2001)
...@@ -50824,10 +50824,16 @@ each individual 4.0.x release. ...@@ -50824,10 +50824,16 @@ each individual 4.0.x release.
@item @item
Give error if one has more than 2 ^ 32 rows in a MyISAM MERGE file and one Give error if one has more than 2 ^ 32 rows in a MyISAM MERGE file and one
has not compiled MySQL with @code{-DBIG_TABLES}. has not compiled MySQL with @code{-DBIG_TABLES}.
@item
Fixed some @code{ORDER BY ... DESC} problems with InnoDB.
@item
Fixed an inadvertently changed option (@code{--ignore-space}) back to the
original @code{--ignore-spaces} in @code{mysqlclient}. (Both syntaxes will
work).
@end itemize @end itemize
@node News-4.0.4, News-4.0.3, News-4.0.5, News-4.0.x @node News-4.0.4, News-4.0.3, News-4.0.5, News-4.0.x
@appendixsubsec Changes in release 4.0.4 @appendixsubsec Changes in release 4.0.4 (29 Sep 2002)
@itemize @bullet @itemize @bullet
@item @item
...@@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script. ...@@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_INIT(sql/mysqld.cc) AC_INIT(sql/mysqld.cc)
AC_CANONICAL_SYSTEM AC_CANONICAL_SYSTEM
# The Docs Makefile.am parses this line! # The Docs Makefile.am parses this line!
AM_INIT_AUTOMAKE(mysql, 4.0.4-beta) AM_INIT_AUTOMAKE(mysql, 4.0.5-beta)
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)
PROTOCOL_VERSION=10 PROTOCOL_VERSION=10
...@@ -481,7 +481,7 @@ AC_ARG_WITH(other-libc, ...@@ -481,7 +481,7 @@ AC_ARG_WITH(other-libc,
# we need special flags, but we will have to add those later # we need special flags, but we will have to add those later
STATIC_NSS_FLAGS="-lc -lnss_files -lnss_dns -lresolv" STATIC_NSS_FLAGS="-lc -lnss_files -lnss_dns -lresolv"
STATIC_NSS_FLAGS="$STATIC_NSS_FLAGS $STATIC_NSS_FLAGS" STATIC_NSS_FLAGS="$STATIC_NSS_FLAGS $STATIC_NSS_FLAGS"
OTHER_LIBC_LIB="-L$other_libc_lib" OTHER_LIBC_LIB="-static -L$other_libc_lib"
static_nss=1 static_nss=1
else else
# this is a dirty hack. We if we detect static nss glibc in the special # this is a dirty hack. We if we detect static nss glibc in the special
...@@ -2241,10 +2241,7 @@ then ...@@ -2241,10 +2241,7 @@ then
AC_DEFINE(THREAD_SAFE_CLIENT) AC_DEFINE(THREAD_SAFE_CLIENT)
fi fi
if test "$static_nss" = "1" CLIENT_LIBS="$CLIENT_LIBS $STATIC_NSS_FLAGS"
then
CLIENT_LIBS="$CLIENT_LIBS $STATIC_NSS_FLAGS"
fi
AC_SUBST(CLIENT_LIBS) AC_SUBST(CLIENT_LIBS)
AC_SUBST(sql_client_dirs) AC_SUBST(sql_client_dirs)
...@@ -2391,11 +2388,8 @@ fi ...@@ -2391,11 +2388,8 @@ fi
# I know to add the static NSS magic if we have static NSS libraries with # I know to add the static NSS magic if we have static NSS libraries with
# glibc - Sasha # glibc - Sasha
if test "$static_nss" = "1" LDFLAGS="$LDFLAGS $OTHER_LIBC_LIB"
then LIBS="$LIBS $STATIC_NSS_FLAGS"
LDFLAGS="$LDFLAGS -static $OTHER_LIBC_LIB"
LIBS="$LIBS $STATIC_NSS_FLAGS"
fi
AC_SUBST(sql_server_dirs) AC_SUBST(sql_server_dirs)
AC_SUBST(thread_dirs) AC_SUBST(thread_dirs)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment