Home | History | Annotate | only in /webstack/webstack/trunk/src/mysql-5.0.45
Up to higher level directory
NameDateSize
aclocal.m408-Dec-2008256.1K
bdb/08-Dec-2008
BUILD/08-Dec-2008
ChangeLog08-Dec-200845K
client/08-Dec-2008
CMakeLists.txt08-Dec-20087.9K
cmd-line-utils/08-Dec-2008
config/08-Dec-2008
config.guess08-Dec-200842.4K
config.h.in08-Dec-200828.5K
config.sub08-Dec-200831K
configure08-Dec-20081.3M
configure.in08-Dec-200891.3K
COPYING08-Dec-200818.6K
dbug/08-Dec-2008
debian/08-Dec-2008
depcomp08-Dec-200815.6K
Docs/08-Dec-2008
EXCEPTIONS-CLIENT08-Dec-20085K
extra/08-Dec-2008
heap/08-Dec-2008
include/08-Dec-2008
innobase/08-Dec-2008
install-sh08-Dec-20089K
INSTALL-SOURCE08-Dec-200840.1K
INSTALL-WIN-SOURCE08-Dec-200818K
libmysql/08-Dec-2008
libmysql_r/08-Dec-2008
libmysqld/08-Dec-2008
ltmain.sh08-Dec-2008191.8K
make_solaris_32bit.sh08-Dec-20081.7K
make_solaris_64bit.sh08-Dec-20081.6K
Makefile.am08-Dec-20086.5K
Makefile.in08-Dec-200831.6K
man/08-Dec-2008
missing08-Dec-200810.8K
myisam/08-Dec-2008
myisammrg/08-Dec-2008
mysql-test/08-Dec-2008
mysys/08-Dec-2008
ndb/08-Dec-2008
netware/08-Dec-2008
os2/08-Dec-2008
pstack/08-Dec-2008
README08-Dec-20081.4K
README.coolstack08-Dec-2008663
regex/08-Dec-2008
scripts/08-Dec-2008
server-tools/08-Dec-2008
sql/08-Dec-2008
sql-bench/08-Dec-2008
sql-common/08-Dec-2008
SSL/08-Dec-2008
strings/08-Dec-2008
support-files/08-Dec-2008
tests/08-Dec-2008
tools/08-Dec-2008
vio/08-Dec-2008
win/08-Dec-2008
zlib/08-Dec-2008

README

      1 This is a release of MySQL, a dual-license SQL database server.
      2 MySQL is brought to you by the MySQL team at MySQL AB.
      3 
      4 License information can be found in these files:
      5 - For GPL (free) distributions, see the COPYING file and
      6   the EXCEPTIONS-CLIENT file.
      7 - For commercial distributions, see the LICENSE.mysql file.
      8 
      9 
     10 For further information about MySQL or additional documentation, see:
     11 - The latest information about MySQL: http://www.mysql.com
     12 - The current MySQL documentation: http://dev.mysql.com/doc
     13 
     14 Some manual sections of special interest:
     15 
     16 - If you are migrating from an older version of MySQL, please read the
     17   "Upgrading from..." section first!
     18 - To see what MySQL can do, take a look at the features section.
     19 - For installation instructions, see the Installing and Upgrading chapter.
     20 - For the new features/bugfix history, see the Change History appendix.
     21 - For the currently known bugs/misfeatures (known errors) see the Problems
     22   and Common Errors appendix.
     23 - For a list of developers and other contributors, see the Credits
     24   appendix.
     25 
     26 A local copy of the MySQL Reference Manual can be found in the Docs
     27 directory in GNU Info format.  You can also browse the manual online or
     28 download it in any of several formats at the URL given earlier in this
     29 file.
     30 
     31 ************************************************************
     32 
     33 IMPORTANT:
     34 
     35 Bug or error reports should be sent to http://bugs.mysql.com.
     36 

README.coolstack

      1 The file innobase/include/univ.i has been edited as follows to enable function inlining.
      2 
      3 # svn diff univ.i
      4 Index: innobase/include/univ.i
      5 ===================================================================
      6 --- innobase/include/univ.i     (revision 221)
      7 +++ innobase/include/univ.i     (revision 222)
      8 @@ -57,8 +57,9 @@
      9 
     10  /* We only try to do explicit inlining of functions with gcc and
     11  Microsoft Visual C++ */
     12 +/* and Sun compilers */
     13 
     14 -#if !defined(__GNUC__) && !defined(__WIN__)
     15 +#if !defined(__GNUC__) && !defined(__WIN__) && !defined(__sun)
     16  #undef  UNIV_MUST_NOT_INLINE                   /* Remove compiler warning */
     17  #define UNIV_MUST_NOT_INLINE
     18  #endif
     19 
     20