diff options
author | cmiller@zippy.cornsilk.net <> | 2007-05-08 09:20:36 -0400 |
---|---|---|
committer | cmiller@zippy.cornsilk.net <> | 2007-05-08 09:20:36 -0400 |
commit | 50c89e7ae19c3ef926c1ba54b8caef1c77edf947 (patch) | |
tree | 513e7d11e6d980f8127f7c984524b07cdd85af49 /configure.in | |
parent | 58989fef93a690ffc1a66c3cc69ef28f8dafafb5 (diff) | |
parent | 53d5c7e55db49ea7a9af64bd753478da53754675 (diff) | |
download | mariadb-git-50c89e7ae19c3ef926c1ba54b8caef1c77edf947.tar.gz |
Merge zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.0-maint
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.1-maint
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 c3d6687b758..257a32bb70e 100644 --- a/configure.in +++ b/configure.in @@ -765,6 +765,9 @@ 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)) +# For the sem_*() functions on BSDish +AC_CHECK_FUNC(sem_init, , AC_CHECK_LIB(rt, sem_init)) + MYSQL_CHECK_ZLIB_WITH_COMPRESS # For large pages support |