diff options
author | unknown <kent@mysql.com/kent-amd64.(none)> | 2007-03-14 14:31:44 +0100 |
---|---|---|
committer | unknown <kent@mysql.com/kent-amd64.(none)> | 2007-03-14 14:31:44 +0100 |
commit | 29e6d30882394c8b39191c346df87beafbf006a7 (patch) | |
tree | 147f95f064c04978e748cdde33f72ceaefc1abdc /configure.in | |
parent | 1c02d8c0cdacaa39eeadc953889c92e15a869f0b (diff) | |
parent | f4656c37ab9eda3ae68a67e5942893744150322b (diff) | |
download | mariadb-git-29e6d30882394c8b39191c346df87beafbf006a7.tar.gz |
Merge mysql.com:/home/kent/bk/tmp/mysql-4.1-build
into mysql.com:/home/kent/bk/tmp/mysql-5.0-build
configure.in:
Auto merged
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 86099c3fce9..53f666bad00 100644 --- a/configure.in +++ b/configure.in @@ -778,6 +778,9 @@ AC_CHECK_FUNC(bind, , AC_CHECK_LIB(bind, bind)) # Check if crypt() exists in libc or libcrypt, sets LIBS if needed AC_SEARCH_LIBS(crypt, crypt, AC_DEFINE(HAVE_CRYPT, 1, [crypt])) +# For the sched_yield() function on Solaris +AC_CHECK_FUNC(sched_yield, , AC_CHECK_LIB(posix4, sched_yield)) + MYSQL_CHECK_ZLIB_WITH_COMPRESS # For large pages support |