[SCM] Samba Shared Repository - branch v3-6-test updated

Karolin Seeger kseeger at samba.org
Wed Jan 16 02:05:29 MST 2013


The branch, v3-6-test has been updated
       via  653ebe1 configure: Fix bug 9546, aio_suspend detection on FreeBSD
      from  64a29fd tevent: Fix bug 9550 - sigprocmask does not work on FreeBSD to stop further signals in a signal handler

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-6-test


- Log -----------------------------------------------------------------
commit 653ebe132287ba66ef54675a3b58988994f0a486
Author: Volker Lendecke <vl at samba.org>
Date:   Mon Jan 7 11:06:15 2013 +0100

    configure: Fix bug 9546, aio_suspend detection on FreeBSD
    
    NULL is not defined without some includes

-----------------------------------------------------------------------

Summary of changes:
 source3/configure.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/configure.in b/source3/configure.in
index a298183..0f805ee 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -5877,7 +5877,7 @@ int main() { struct aiocb a; return aio_cancel(1, &a); }],
 
 			AC_MSG_CHECKING(for aio_suspend)
 			AC_LINK_IFELSE([#include <aio.h>
-int main() { struct aiocb a; return aio_suspend(&a, 1, NULL); }],
+int main() { struct aiocb a; struct timespec t; return aio_suspend(&a, 1, &t); }],
 [AC_DEFINE(HAVE_AIO_SUSPEND, 1, [Have aio_suspend]) AC_MSG_RESULT(yes)],
 [AC_MSG_RESULT(no)])
 		fi


-- 
Samba Shared Repository


More information about the samba-cvs mailing list