diff options
author | Gerald Carter <jerry@samba.org> | 2006-10-19 22:48:03 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:15:34 -0500 |
commit | 6e2b290672be77383ca9045bf129ae30dd27c6c6 (patch) | |
tree | 20a2436837b0008103a78529af763d0448549872 | |
parent | 80d40172efa3b5c051cc4a40d5599f73e6481737 (diff) | |
download | samba-6e2b290672be77383ca9045bf129ae30dd27c6c6.tar.gz samba-6e2b290672be77383ca9045bf129ae30dd27c6c6.tar.bz2 samba-6e2b290672be77383ca9045bf129ae30dd27c6c6.zip |
r19421: BUG 3868: Patch from Timur Bakeyev <timur@com.bat.ru> to prevent
--with-aio-support from trimping on the $LIBS variable
(This used to be commit 00bf29d352af694373be035047cfcf1298891d25)
-rw-r--r-- | source3/configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in index 91f582143c..652bd390ee 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -5134,6 +5134,7 @@ AC_ARG_WITH(aio-support, AC_MSG_RESULT(yes) case "$host_os" in *) + AIO_LIBS=$LIBS AC_CHECK_LIB(rt,aio_read,[AIO_LIBS="$LIBS -lrt"]) AC_CHECK_LIB(aio,aio_read,[AIO_LIBS="$LIBS -laio"]) AC_CACHE_CHECK([for asynchronous io support],samba_cv_HAVE_AIO,[ |