diff options
author | unknown <kent@mysql.com/kent-amd64.(none)> | 2007-03-14 14:29:23 +0100 |
---|---|---|
committer | unknown <kent@mysql.com/kent-amd64.(none)> | 2007-03-14 14:29:23 +0100 |
commit | 9be5d51809def7385e107e82251b6c1eb8a93b5a (patch) | |
tree | 714090de76507d8e81a2789e13f1aa7e5b48b130 /configure.in | |
parent | 6f83533440f3ceacda2265ac0e0d45fb879330dc (diff) | |
parent | 0f7f7ff84574b49bf89d7427333bfa14523479df (diff) | |
download | mariadb-git-9be5d51809def7385e107e82251b6c1eb8a93b5a.tar.gz |
Merge mysql.com:/home/kent/bk/tmp/mysql-4.0
into mysql.com:/home/kent/bk/tmp/mysql-4.1-build
configure.in:
SCCS 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 6c239e3a1e7..b9f84086e28 100644 --- a/configure.in +++ b/configure.in @@ -845,6 +845,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 #-------------------------------------------------------------------- |