summaryrefslogtreecommitdiff
path: root/configure.in
Commit message (Collapse)AuthorAgeFilesLines
* Update version in configure.in (was forgotten in 5.3.3 release).unknown2011-12-301-1/+1
|
* Fix version number: it's 5.3.3Sergey Petrunya2011-12-201-1/+1
|
* Bump version number: now it's 5.3.3 (5.3.2 has been released some time ago)Sergey Petrunya2011-12-181-1/+1
|
* Merge with 5.2Michael Widenius2011-12-141-3/+26
|\
| * Merge with 5.1Michael Widenius2011-12-131-4/+27
| |\ | | | | | | | | | Updated version number in configure
| | * new "./configure --disable-distribution" optionSergei Golubchik2011-12-121-3/+26
| | |
* | | 5.2->5.3 mergeSergei Golubchik2011-12-121-5/+0
|\ \ \ | |/ /
| * | updated the version in configureSergei Golubchik2011-12-031-1/+1
| | |
* | | Merge with 5.2.Michael Widenius2011-12-111-11/+16
|\ \ \ | |/ / | | | | | | no_error handling for select (used by INSERT ... SELECT) still needs to be fixed, but I will do that in a separate commit
| * | Merge with 5.1Michael Widenius2011-12-011-1/+1
| |\ \ | | |/
| | * Fixed that --with-libedit --without-readline worksMichael Widenius2011-12-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed buildbot failures (compiler warnings, failing tests) cmd-line-utils/libedit/map.c: Fixed compiler warning cmd-line-utils/libedit/terminal.c: Fixed compiler warning cmd-line-utils/libedit/tty.c: Fixed compiler warning configure.in: Fixed that --with-libedit --without-readline works mysql-test/suite/innodb_plugin/t/innodb_misc1.test: Fixed test that failed when characterset was missing
| * | Merge with MariaDB 5.1Michael Widenius2011-11-241-10/+15
| |\ \ | | |/
| | * Merge with MySQL 5.1.60Michael Widenius2011-11-231-1/+1
| | |\
| | | * Increased version number after cloning 5.1.60Karen Langford2011-10-261-1/+1
| | | |
| | * | Initail merge with MySQL 5.1 (XtraDB still needs to be merged)Michael Widenius2011-11-211-11/+16
| | |\ \ | | | |/ | | | | | | | | Fixed up copyright messages.
| | | * Merge bug#47337 for pushing into 5.1Joerg Bruehe2011-08-151-2/+2
| | | |\
| | | | * Fix Bug #47337:Joerg Bruehe2011-07-081-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | innochecksum not built for --with-plugin-innodb_plugin --without-plugin-innobase In 5.1, we can have the traditional "innobase" code (built-in) or the new version "innodb" (plugin). The help tool "innochecksum" is useful for both, but its generation was coupled to "innobase" only. Fix this by treating both "innobase" and "innodb" equivalent in the configure phase, this affects both "innochecksum" and the InnoDB documentation. This patch was proposed by Mark Callaghan.
| | | * | bumped the version to 5.1.60Georgi Kodinov2011-08-121-1/+1
| | | | |
| | | * | Bug #11757091 49093: 5.1 CONFIGURE SCRIPT SHOULD WARN ABOUT MYSQL CLUSTER ↵Bjorn Munch2011-07-011-0/+9
| | | |/ | | | | | | | | | | | | | | | | | | | | | | | | NOT BEING MAINTAINED Added a conditional echo at end of configure.in
| | | * Raise version number after cloning 5.1.58Karen Langford2011-06-101-1/+1
| | | |
| | | * Bug #11749418: 38965: TEST CASES GIS-RTREE, TYPE_FLOAT, TYPE_NEWDECIMAL Georgi Kodinov2011-06-061-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | FAIL IN EMBEDDED SERVER FreeBSD 64 bit needs the FP_X_DNML to fpsetmask() to prevent exceptions from propagating into mysql (as a threaded application). However fpsetmask() itself is deprecated in favor of fedisableexcept(). 1. Fixed the #ifdef to check for FP_X_DNML instead of i386. 2. Added a configure.in check for fedisableexcept() and, if present, this function is called insted of the fpsetmask(). No need for new tests, as the existing tests cover this already. Removed the affected tests from the experimental list.
| | | * BUG 11763056 - 55721: AIX 5.1.50 build failing, cannot locate bzeroDavi Arnaut2011-05-271-6/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The problem is that although AIX implements bzero, its prototype is not declared by default. Since AC_CHECK_FUNC(bzero) succeeds even though a prototype is not declared, this breaks compilation in C++ files where a prototype is required. The solution is to only use bzero if a prototype is also declared. configure.in: Check if bzero is declared. No need to specify the includes, unisted.h and strings.h are already part of AC_INCLUDES_DEFAULT.
| | | * Bug#11757855 - 49967: built-in libedit doesn't readNirbhay Choubey2011-04-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | .editrc on linux. MySQL client when build with libedit support ignores .editrc at startup. The reason for this regression was the incluison of a safety check, issetugid(), which is not available on some linux platforms. Fixed by adding an equivalent check for platforms which have get[e][u|g]id() set of functions. cmd-line-utils/libedit/el.c: Bug#11757855 - 49967: built-in libedit doesn't read .editrc on linux. Added function calls to check user/group IDs on linux systems which does not have issetugid() function. configure.in: Bug#11757855 - 49967: built-in libedit doesn't read .editrc on linux. Added check for getuid, geteuid, getgid, getegid functions.
* | | | mergeSergei Golubchik2011-10-111-1/+1
|\ \ \ \ | |/ / /
| * | | merge with 5.1Sergei Golubchik2011-10-071-1/+1
| |\ \ \ | | |/ /
| | * | my_gethwaddr() on Solaris and WindowsSergei Golubchik2011-10-041-1/+1
| | | |
* | | | Merge with 5.2Michael Widenius2011-09-151-1/+1
|\ \ \ \ | |/ / /
| * | | Increased version numberMichael Widenius2011-09-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Give proper error to client on shutdown. configure.in: Increased version number mysql-test/mysql-test-run.pl: Ignore errors that one can get while running with --mysqld=--log-warnings=2 mysql-test/r/variables.result: Remember original value of log_warnings mysql-test/suite/rpl/r/rpl_idempotency.result: Ignore errors that one can get while running with --mysqld=--log-warnings=2 mysql-test/suite/rpl/t/rpl_idempotency.test: Ignore errors that one can get while running with --mysqld=--log-warnings=2 mysql-test/t/variables.test: Remember original value of log_warnings sql/mysqld.cc: Give proper error to close_connection() on shutdown storage/maria/ha_maria.cc: Added missing DBUG_RETURN
* | | | Automatic merge with 5.2Michael Widenius2011-08-151-1/+1
|\ \ \ \ | |/ / /
| * | | Increase server versionMichael Widenius2011-08-151-1/+1
| | | |
| * | | Increased server version to 5.2.7Michael Widenius2011-06-111-1/+1
| | | |
* | | | Updated version tag to betaMichael Widenius2011-06-271-1/+1
| | | |
* | | | Merge with MariaDB 5.2Michael Widenius2011-05-101-0/+9
|\ \ \ \ | |/ / /
| * | | Merge with MariaDB 5.1Michael Widenius2011-05-031-0/+9
| |\ \ \ | | |/ /
| | * | Merge with MySQL 5.1.57/58Michael Widenius2011-05-021-1/+10
| | |\ \ | | | |/ | | | | | | | | Moved some BSD string functions from Unireg
| | | * Merge from mysql-5.0 (bump the version).Alexander Nozdrin2011-04-111-1/+1
| | | |\
| | | | * Bump version.Alexander Nozdrin2011-04-111-1/+1
| | | | |
| | | * | version bump to 5.1.57Georgi Kodinov2011-02-111-1/+1
| | | | |
| | | * | merge to 5.1.Georgi Kodinov2011-02-021-0/+9
| | | |\ \ | | | | |/
| | | | * Fixes for Bug #55755 and Bug #52315 part 2Georgi Kodinov2011-02-021-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug #55755 : Date STD variable signness breaks server on FreeBSD and OpenBSD * Added a check to configure on the size of time_t * Created a macro to check for a valid time_t that is safe to use with datetime functions and store in TIMESTAMP columns. * Used the macro consistently instead of the ad-hoc checks introduced by 52315 * Fixed compliation warnings on platforms where the size of time_t is smaller than the size of a long (e.g. OpenBSD 4.8 64 amd64). Bug #52315: utc_date() crashes when system time > year 2037 * Added a correct check for the timestamp range instead of just variable size check to SET TIMESTAMP. * Added overflow checking before converting to time_t. * Using a correct localized error message in this case instead of the generic error. * Added a test suite. * fixed the checks so that they check for unsigned time_t as well. Used the checks consistently across the source code. * fixed the original test case to expect the new error code.
| | | * | bumped up the version to 5.1.56Georgi Kodinov2011-01-131-1/+1
| | | |\ \ | | | | |/
| | | | * bumped up the version to 5.0.93Georgi Kodinov2011-01-131-2/+2
| | | | |
| | | | * - Added/updated copyright headersKent Boortz2010-12-281-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Removed files specific to compiling on OS/2 - Removed files specific to SCO Unix packaging - Removed "libmysqld/copyright", text is included in documentation - Removed LaTeX headers for NDB Doxygen documentation - Removed obsolete NDB files - Removed "mkisofs" binaries - Removed the "cvs2cl.pl" script - Changed a few GPL texts to use "program" instead of "library"
| | | | * Raise version number after cloning 5.0.91unknown2010-05-031-2/+2
| | | | |
| | | * | mergeGeorgi Kodinov2010-11-261-1/+1
| | | |\ \
| | | | * | bumped up the version string.Georgi Kodinov2010-11-261-1/+1
| | | | | |
| | | | * | Merge from mysql-5.1.53-releaseunknown2010-11-181-5/+14
| | | | |\ \
| | * | | | | Increase version numberMichael Widenius2011-02-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Taged a couple of tests with --big-test configure.in: Upgrade version number mysql-test/suite/parts/t/partition_alter1_1_2_innodb.test: Removed duplicate big_test tag mysql-test/suite/parts/t/partition_alter1_2_innodb.test: Removed duplicate big_test tag mysql-test/suite/parts/t/partition_decimal_innodb.test: Added big_test tag as this takes forever with valgrind mysql-test/suite/parts/t/partition_decimal_myisam.test: Removed duplicate big_test tag
* | | | | | | Merge with 5.2Michael Widenius2011-03-091-44/+38
|\ \ \ \ \ \ \ | |/ / / / / /
| * | | | | | Updated version numberMichael Widenius2011-03-041-1/+1
| | | | | | |