summaryrefslogtreecommitdiff
path: root/BUILD
Commit message (Collapse)AuthorAgeFilesLines
* mergeVladislav Vaintroub2010-01-141-0/+17
|\
| * WL#2360 Performance schemaMarc Alff2010-01-111-0/+17
| | | | | | | | Part V: performance schema implementation
* | mergeVladislav Vaintroub2009-12-191-1/+5
|\ \ | |/
| * Merge to latest mysql-next-mrMikael Ronstrom2009-12-161-1/+0
| |\
| * | Fixed --fast flag on Linux to use -O3Mikael Ronstrom2009-12-081-1/+5
| | |
* | | mergeVladislav Vaintroub2009-12-161-1/+0
|\ \ \ | | |/ | |/|
| * | Remove .cvsignore files (attempt #2).Alexander Nozdrin2009-12-161-1/+0
| |/
* | WL#5161 : Cross-platform build with CMakeVladislav Vaintroub2009-11-093-0/+22
|/
* Fixed a few bugs in hex string generation, in call to val_str for partition ↵Mikael Ronstrom2009-11-021-7/+7
| | | | expressions, also made code reusable for DEFAULT handling to fix BUG#48464 by introducing function get_cs_converted_string_value, added partition_utf8 test case for UTF8 outputs
* Merge to mysql-next-mrMikael Ronstrom2009-09-281-4/+5
|\
| * Merge from mysql-5.1-bugteam.Alexander Nozdrin2009-09-161-4/+5
| |\
| | * Fixed a problem in how BUILD/check_cpu handles Core 2 Duo processors.Georgi Kodinov2009-09-011-4/+5
| | | | | | | | | | | | This fixes the regression introduced in 5.1 that prevents 64 bit builds on Intel while still keeping the core2 hack operational so the cluster can build.
* | | WL#4444 Added TRUNCATE partition support, fixes bug#19405 and bug #35111Mikael Ronstrom2009-09-101-1/+1
|/ /
* | Creation of mysql-trunk = {summit + "Innodb plugin replacing the builtin"}:Guilhem Bichot2009-08-041-2/+7
|\ \ | |/ | | | | | | | | | | bzr branch mysql-5.1-performance-version mysql-trunk # Summit cd mysql-trunk bzr merge mysql-5.1-innodb_plugin # which is 5.1 + Innodb plugin bzr rm innobase # remove the builtin Next step: build, test fixes.
| * merged 5.0-bugteam->5.1-bugteamGeorgi Kodinov2009-07-101-2/+7
| |\
| | * fixed the CPU checking code.Georgi Kodinov2009-07-101-2/+7
| | |
* | | Fixed missing - in build scriptMikael Ronstrom2009-03-111-2/+2
| | |
* | | Fixed some issues with build script and 64-bit handling,Mikael Ronstrom2009-02-211-6/+11
| | | | | | | | | | | | couldn't use both --cpu=x86_64 and --64, also ignored setting --32 and --64 on Linux
* | | Merged Performance Version 0.2.1 with latest 5.1 tree (last push 11 feb ↵Mikael Ronstrom2009-02-171-19/+22
|\ \ \ | |/ / | | | | | | 14.01.13 2009)
| * | Merge the bashism removal from 5.0 up to 5.1-buildJoerg Bruehe2008-12-281-19/+22
| |\ \ | | |/
| | * Remove bashisms from BUILD/compile-dist and configure.in, so Bootstrap works ↵timothy.smith@sun.com2008-12-031-8/+28
| | | | | | | | | | | | on Solaris box; force GNU make in compile-dist; remove unportable "grep -q" from configure.in
* | | Fixing bug in developer usage of scriptMikael Ronstrom2009-02-121-1/+1
| | |
* | | Workaround for DTrace-related bugs.Mikael Ronstrom2009-02-101-1/+1
| | | | | | | | | | | | Bumped up version number to 0.2.1
* | | Many updates to build scriptMikael Ronstrom2009-02-061-84/+132
| | |
* | | Fixed bug in check-cpu script for SPARC and SolarisMikael Ronstrom2009-02-032-5/+5
| | | | | | | | | Changed defaults on Solaris and Forte to be CC and cc instead of cc-5.0
* | | Add support for building with tcmalloc support insteadMikael Ronstrom2008-12-201-0/+8
| | | | | | | | | of standard malloc.
* | | Added support to make it possible to detect an Itanium process or SLES 10Mikael Ronstrom2008-12-201-1/+7
| | |
* | | Edited the help text to indicate changes to supportedMikael Ronstrom2008-12-191-16/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | platforms and emphasize the fact that gcc is the default compiler on all platforms. Make it possible to say --compiler=SunStudio instead of --compiler=forte Fix a bug that lost an important flag for C++ builds.
* | | Made it possible to set CC and CXX on commandline before calling scriptMikael Ronstrom2008-12-192-128/+234
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for those cases when gcc, cc-5.0, icpc or icc isn't in the path. Fixed handling of 32 and 64 bits. Downgraded Solaris builds on Forte to use -xO2 rather than -xO3. Made it possible to build 64-bits on Mac OS X Fixed some bugs in setting CC, CXX, ASFLAGS, LDFLAGS Fixed bugs relating to use of SunStudio/Forte in check-cpu Reorganized code a bit Removed the use of --with-fast-mutexes since they aren't really fast, rather slow. Added -static-libgcc when using gcc Added optimising compilation flags on BSD Added use of curses library on Solaris Removed the use of MY_ATOMIC_MODE_RWLOCKS which removed use of atomic instructions Added support for Forte on Solaris/x86
* | merged 5.1 main -> 5.1-bugteamGeorgi Kodinov2008-11-061-8/+25
|\ \
| * | Made dist support script more portable shkent.boortz@sun.com2008-10-111-8/+25
| | |
* | | Bug#37870: Usage of uninitialized value caused failed assertion.Evgeny Potemkin2008-11-051-2/+2
|/ / | | | | | | | | | | | | | | | | | | | | | | The convert_constant_item function converts a constant to integer using field for condition like 'field = a_constant'. In some cases the convert_constant_item is called for a subquery when outer select is already being executed, so convert_constant_item saves field's value to prevent its corruption. For EXPLAIN and at the prepare phase field's value isn't initialized yet, thus when convert_constant_item tries to restore saved value it fails assertion. Now the convert_constant_item doesn't save/restore field's value if it's haven't been read yet. Outer constant values are always saved.
* | Bug#38727: BUILD/compile-solaris-* scripts should compile MySQL with libmtmallocDavi Arnaut2008-09-304-7/+8
| | | | | | | | | | Link with mtmalloc on Solaris as it is done in our release builds. Replace deprecated flag with the newer option as already done in other scripts.
* | Merge from 5.0-bugteam local.Chad MILLER2008-08-181-1/+1
|\ \ | |/
| * Bug#27526: BUILD/check_cpu misbehaving on Debian testingChad MILLER2008-08-181-1/+1
| | | | | | | | more clever gcc version checking.
* | Add variation of compile-pentium-valgrind-max which does not build ndb.Davi Arnaut2008-05-271-0/+24
| |
* | BUILD/Makefile.amjoerg@trift2.2008-04-181-0/+5
| | | | | | | | | | | | | | Post-merge fix: Add those files which are new in version 5.1 This is the 5.1 version of the fix for Bug #34291 compile-amd64-debug-max-no-ndb missing
* | Merge trift2.:/MySQL/M50/bug34291-5.0joerg@trift2.2008-04-181-0/+8
|\ \ | |/ | | | | into trift2.:/MySQL/M51/bug34291-5.1
| * Fix for Bug #34291 compile-amd64-debug-max-no-ndb missingjoerg@trift2.2008-04-171-0/+8
| | | | | | | | | | | | | | Include several "BUILD/compile-*" files in a source tarball ("make dist" target) which might be useful to community users who want to build from source. When merging this up, the "BUILD/compile-*" file list needs to be checked.
* | Manual mergeistruewing@stella.local2008-03-141-2/+4
|\ \
| * \ Merge kaamos.(none):/data/src/mysql-5.1kaa@kaamos.(none)2008-03-121-2/+4
| |\ \ | | | | | | | | | | | | into kaamos.(none):/data/src/opt/mysql-5.1-opt
| | * \ Merge kaamos.(none):/data/src/mysql-5.1kaa@kaamos.(none)2008-02-171-2/+4
| | |\ \ | | | | | | | | | | | | | | | into kaamos.(none):/data/src/opt/mysql-5.1-opt
| | | * | Bug #31326: No compile check of order of initializationsgkodinov/kgeorge@macbook.gmz2007-12-141-2/+4
| | | | | | | | | | | | | | | | | | | | fixed -Wreorder warnings
* | | | | Merge ↵antony@pcg5ppc.xiphis.org2008-03-072-82/+1579
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | pcg5ppc.xiphis.org:/Network/Servers/anubis.xiphis.org/home/antony/work/mysql-5.1-engines into pcg5ppc.xiphis.org:/Network/Servers/anubis.xiphis.org/home/antony/work/merge.20080307/mysql-5.1
| * | | | Merge stella.local:/home2/mydev/mysql-5.1-amainistruewing@stella.local2008-02-113-0/+116
| |\ \ \ \ | | |/ / / | | | | | | | | | | into stella.local:/home2/mydev/mysql-5.1-axmrg
| * | | | WL#3834: New build script for system admins and developersmikael@dator6.(none)2008-02-082-82/+1579
| | |/ / | |/| | | | | | | | | | especially for MySQL Cluster Carrier Grade Edition
* | | | Merge trift2.:/MySQL/M51/clone-5.1joerg@trift2.2008-02-131-0/+2
|\ \ \ \ | |_|/ / |/| | | | | | | into trift2.:/MySQL/M51/push-5.1
| * | | Ensure that man pages for "embedded" are included in the source.tar.gzjoerg@trift2.2008-01-291-0/+2
| |/ / | | | | | | | | | This fixes bug#34145.
* | | Merge hezx.(none):/media/hda5/work/mysql/bkwork/bug#30998/mysql-5.0-rplhezx@hezx.(none)2007-12-123-0/+116
|\ \ \ | |/ / |/| / | |/ into hezx.(none):/media/hda5/work/mysql/bkwork/bug#30998/merge-mysql-5.1-new-rpl
| * Adding build scripts for Solaris 10 on AMD64.mats@capulet.net2007-11-104-54/+125
| |