1 dnl test whether dirent has a d_off member
2 AC_DEFUN(AC_DIRENT_D_OFF,
3 [AC_CACHE_CHECK([for d_off in dirent], ac_cv_dirent_d_off,
7 #include <dirent.h>], [struct dirent d; d.d_off;],
8 ac_cv_dirent_d_off=yes, ac_cv_dirent_d_off=no)])
9 if test $ac_cv_dirent_d_off = yes; then
10 AC_DEFINE(HAVE_DIRENT_D_OFF,1,[Whether dirent has a d_off member])
14 dnl Mark specified module as shared
15 dnl SMB_MODULE(name,static_files,shared_files,subsystem,whatif-static,whatif-shared)
18 AC_MSG_CHECKING([how to build $1])
19 if test "$[MODULE_][$1]"; then
21 elif test "$[MODULE_]translit([$4], [A-Z], [a-z])" -a "$[MODULE_DEFAULT_][$1]"; then
22 DEST=$[MODULE_]translit([$4], [A-Z], [a-z])
24 DEST=$[MODULE_DEFAULT_][$1]
27 if test x"$DEST" = xSHARED; then
28 AC_DEFINE([$1][_init], [samba_module_init], [Whether to build $1 as shared module])
29 $4_MODULES="$$4_MODULES $3"
30 AC_MSG_RESULT([shared])
32 string_shared_modules="$string_shared_modules $1"
33 elif test x"$DEST" = xSTATIC; then
34 [init_static_modules_]translit([$4], [A-Z], [a-z])="$[init_static_modules_]translit([$4], [A-Z], [a-z]) $1_init();"
35 [decl_static_modules_]translit([$4], [A-Z], [a-z])="$[decl_static_modules_]translit([$4], [A-Z], [a-z]) extern NTSTATUS $1_init(void);"
36 string_static_modules="$string_static_modules $1"
37 $4_STATIC="$$4_STATIC $2"
40 AC_MSG_RESULT([static])
42 string_ignored_modules="$string_ignored_modules $1"
47 AC_DEFUN(SMB_SUBSYSTEM,
51 AC_DEFINE_UNQUOTED([static_init_]translit([$1], [A-Z], [a-z]), [{$init_static_modules_]translit([$1], [A-Z], [a-z])[}], [Static init functions])
52 AC_DEFINE_UNQUOTED([static_decl_]translit([$1], [A-Z], [a-z]), [$decl_static_modules_]translit([$1], [A-Z], [a-z]), [Decl of Static init functions])
53 ifelse([$2], , :, [rm -f $2])
57 dnl SMB_LIBRARY(name, soversion, fullversion, default, reason)
59 dnl configure build and use of an (internal) shared library
61 AC_DEFUN([SMB_LIBRARY],
63 m4_pushdef([LIBNAME], [lib$1])
64 m4_pushdef([LIBUC], [m4_toupper(LIBNAME)])
65 m4_pushdef([LIBLIBS], [-l$1])
67 LIBUC[_SHARED_TARGET]=bin/LIBNAME.$SHLIBEXT
68 LIBUC[_STATIC_TARGET]=bin/LIBNAME.a
76 m4_if([$2], [], [LIBUC[_SOVER]=0], [LIBUC[_SOVER]=$2])
77 m4_if([$3], [], [LIBUC[_FULLVER]=$LIBUC[_SOVER]], [LIBUC[_FULLVER]=$3])
79 LIBUC[_SHARED_TARGET_SOVER]=$LIBUC[_SHARED_TARGET].$LIBUC[_SOVER]
80 LIBUC[_SHARED_TARGET_FULLVER]=$LIBUC[_SHARED_TARGET].$LIBUC[_FULLVER]
82 AC_SUBST(LIBUC[_SHARED_TARGET])
83 AC_SUBST(LIBUC[_STATIC_TARGET])
84 AC_SUBST(LIBUC[_SHARED])
85 AC_SUBST(LIBUC[_STATIC])
86 AC_SUBST(LIBUC[_LIBS])
87 AC_SUBST(LIBUC[_TARGET])
88 AC_SUBST([INSTALL_]LIBUC)
89 AC_SUBST([UNINSTALL_]LIBUC)
90 AC_SUBST(LIBUC[_SOVER])
91 AC_SUBST(LIBUC[_FULLVER])
92 AC_SUBST(LIBUC[_SHARED_TARGET_SOVER])
93 AC_SUBST(LIBUC[_SHARED_TARGET_FULLVER])
95 AC_MSG_CHECKING([whether to build the LIBNAME shared library])
97 dnl set the default to not build the shared lib
99 AS_HELP_STRING([--with-]LIBNAME,
101 [Build the LIBNAME shared library (default=no)],
102 [Build the LIBNAME shared library (default=no ($5))])),
115 # if unspecified, default is not to build
121 dnl by default, try to build the shared lib
123 AS_HELP_STRING([--with-]LIBNAME,
124 [Build the LIBNAME shared library (default=yes if shared libs supported)]),
137 # if unspecified, default is to build it if possible.
143 if eval test x"$build_lib" = "xyes" ; then
144 # only set the install targets if the user chose the library
145 [INSTALL_]LIBUC=[install]LIBNAME
146 [UNINSTALL_]LIBUC=[uninstall]LIBNAME
147 if eval $BLDSHARED = true; then
148 LIBUC[_SHARED]=$LIBUC[_SHARED_TARGET]
149 LIBUC[_TARGET]=$LIBUC[_SHARED_TARGET]
152 if test x"$USESHARED" != x"true" -o x"$[LINK_]LIBUC" = "xSTATIC" ; then
154 LIBUC[_TARGET]=$LIBUC[_STATIC_TARGET]
155 LIBUC[_LIBS]=$LIBUC[_STATIC_TARGET]
161 LIBUC[_TARGET]=$LIBUC[_STATIC_TARGET]
162 LIBUC[_LIBS]=$LIBUC[_STATIC_TARGET]
163 AC_MSG_RESULT(no shared library support -- will supply static library)
167 AC_MSG_RESULT(shared library not selected, but will supply static library)
169 if test $enable_static = yes; then
170 LIBUC[_STATIC]=$LIBUC[_STATIC_TARGET]
180 dnl AC_LIBTESTFUNC(lib, function, [actions if found], [actions if not found])
181 dnl Check for a function in a library, but don't keep adding the same library
182 dnl to the LIBS variable. Check whether the function is available in the
183 dnl current LIBS before adding the library which prevents us spuriously
184 dnl adding libraries for symbols that are in libc.
186 dnl On success, the default actions ensure that HAVE_FOO is defined. The lib
187 dnl is always added to $LIBS if it was found to be necessary. The caller
188 dnl can use SMB_REMOVE_LIB to strp this if necessary.
189 AC_DEFUN([AC_LIBTESTFUNC],
193 # $2 was found in libc or existing $LIBS
199 AC_DEFINE(translit([HAVE_$2], [a-z], [A-Z]), 1,
200 [Whether $2 is available])
204 # $2 was not found, try adding lib$1
212 # $2 was not found and we already had lib$1
213 # nothing to do here by default
218 # $2 was not found, try adding lib$1
227 AC_DEFINE(translit([HAVE_$2], [a-z], [A-Z]), 1,
228 [Whether $2 is available])
237 # $2 was not found in lib$1
238 # nothing to do here by default
247 # AC_CHECK_LIB_EXT(LIBRARY, [EXT_LIBS], [FUNCTION],
248 # [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND],
249 # [ADD-ACTION-IF-FOUND],[OTHER-LIBRARIES])
250 # ------------------------------------------------------
252 # Use a cache variable name containing both the library and function name,
253 # because the test really is for library $1 defining function $3, not
254 # just for library $1. Separate tests with the same $1 and different $3s
255 # may have different results.
257 # Note that using directly AS_VAR_PUSHDEF([ac_Lib], [ac_cv_lib_$1_$3])
258 # is asking for trouble, since AC_CHECK_LIB($lib, fun) would give
259 # ac_cv_lib_$lib_fun, which is definitely not what was meant. Hence
260 # the AS_LITERAL_IF indirection.
262 # FIXME: This macro is extremely suspicious. It DEFINEs unconditionally,
263 # whatever the FUNCTION, in addition to not being a *S macro. Note
264 # that the cache does depend upon the function we are looking for.
266 # It is on purpose we used `ac_check_lib_ext_save_LIBS' and not just
267 # `ac_save_LIBS': there are many macros which don't want to see `LIBS'
268 # changed but still want to use AC_CHECK_LIB_EXT, so they save `LIBS'.
269 # And ``ac_save_LIBS' is too tempting a name, so let's leave them some
271 AC_DEFUN([AC_CHECK_LIB_EXT],
273 AH_CHECK_LIB_EXT([$1])
274 ac_check_lib_ext_save_LIBS=$LIBS
275 LIBS="-l$1 $$2 $7 $LIBS"
277 [AS_VAR_PUSHDEF([ac_Lib_ext], [ac_cv_lib_ext_$1])],
278 [AS_VAR_PUSHDEF([ac_Lib_ext], [ac_cv_lib_ext_$1''])])dnl
282 AH_CHECK_FUNC_EXT([$3])
284 [AS_VAR_PUSHDEF([ac_Lib_func], [ac_cv_lib_ext_$1_$3])],
285 [AS_VAR_PUSHDEF([ac_Lib_func], [ac_cv_lib_ext_$1''_$3])])dnl
286 AC_CACHE_CHECK([for $3 in -l$1], ac_Lib_func,
287 [AC_TRY_LINK_FUNC($3,
288 [AS_VAR_SET(ac_Lib_func, yes);
289 AS_VAR_SET(ac_Lib_ext, yes)],
290 [AS_VAR_SET(ac_Lib_func, no);
291 AS_VAR_SET(ac_Lib_ext, no)])
293 AS_IF([test AS_VAR_GET(ac_Lib_func) = yes],
294 [AC_DEFINE_UNQUOTED(AS_TR_CPP(HAVE_$3))])dnl
295 AS_VAR_POPDEF([ac_Lib_func])dnl
297 AC_CACHE_CHECK([for -l$1], ac_Lib_ext,
298 [AC_TRY_LINK_FUNC([main],
299 [AS_VAR_SET(ac_Lib_ext, yes)],
300 [AS_VAR_SET(ac_Lib_ext, no)])
303 LIBS=$ac_check_lib_ext_save_LIBS
305 AS_IF([test AS_VAR_GET(ac_Lib_ext) = yes],
307 [AC_DEFINE_UNQUOTED(AS_TR_CPP(HAVE_LIB$1))
318 AS_VAR_POPDEF([ac_Lib_ext])dnl
321 # AH_CHECK_LIB_EXT(LIBNAME)
322 # ---------------------
323 m4_define([AH_CHECK_LIB_EXT],
324 [AH_TEMPLATE(AS_TR_CPP(HAVE_LIB$1),
325 [Define to 1 if you have the `]$1[' library (-l]$1[).])])
327 # AC_CHECK_FUNCS_EXT(FUNCTION, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
328 # -----------------------------------------------------------------
329 dnl check for a function in a $LIBS and $OTHER_LIBS libraries variable.
330 dnl AC_CHECK_FUNC_EXT(func,OTHER_LIBS,IF-TRUE,IF-FALSE)
331 AC_DEFUN([AC_CHECK_FUNC_EXT],
333 AH_CHECK_FUNC_EXT($1)
334 ac_check_func_ext_save_LIBS=$LIBS
336 AS_VAR_PUSHDEF([ac_var], [ac_cv_func_ext_$1])dnl
337 AC_CACHE_CHECK([for $1], ac_var,
338 [AC_LINK_IFELSE([AC_LANG_FUNC_LINK_TRY([$1])],
339 [AS_VAR_SET(ac_var, yes)],
340 [AS_VAR_SET(ac_var, no)])])
341 LIBS=$ac_check_func_ext_save_LIBS
342 AS_IF([test AS_VAR_GET(ac_var) = yes],
343 [AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_$1])) $3],
345 AS_VAR_POPDEF([ac_var])dnl
346 ])# AC_CHECK_FUNC_EXT
348 # AH_CHECK_FUNC_EXT(FUNCNAME)
349 # ---------------------
350 m4_define([AH_CHECK_FUNC_EXT],
351 [AH_TEMPLATE(AS_TR_CPP(HAVE_$1),
352 [Define to 1 if you have the `]$1[' function.])])
354 dnl Define an AC_DEFINE with ifndef guard.
355 dnl AC_N_DEFINE(VARIABLE [, VALUE])
357 [cat >> confdefs.h <<\EOF
359 [#define] $1 ifelse($#, 2, [$2], $#, 3, [$2], 1)
365 dnl AC_ADD_INCLUDE(VARIABLE)
366 define(AC_ADD_INCLUDE,
367 [cat >> confdefs.h <<\EOF
372 dnl Copied from libtool.m4
373 AC_DEFUN(AC_PROG_LD_GNU,
374 [AC_CACHE_CHECK([if the linker used by compiler is GNU ld], ac_cv_prog_gnu_ld,
375 [# I'd rather use --version here, but apparently some GNU ld's only accept -v.
376 if $CC -Wl,-v /dev/null 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
377 ac_cv_prog_gnu_ld=yes
383 dnl Removes -I/usr/include/? from given variable
384 AC_DEFUN(CFLAGS_REMOVE_USR_INCLUDE,[
388 -I/usr/include|-I/usr/include/) ;;
389 *) ac_new_flags="[$]ac_new_flags [$]i" ;;
395 dnl Removes '-L/usr/lib[/]', '-Wl,-rpath,/usr/lib[/]'
396 dnl and '-Wl,-rpath -Wl,/usr/lib[/]' from given variable
397 AC_DEFUN(LIB_REMOVE_USR_LIB,[
406 -Wl,-rpath,/usr/lib) l="";;
407 -Wl,-rpath,/usr/lib/) l="";;
408 -Wl,-rpath,/usr/lib64) l="";;
409 -Wl,-rpath,/usr/lib64/) l="";;
411 -Wl,-rpath-Wl,/usr/lib) l="";;
412 -Wl,-rpath-Wl,/usr/lib/) l="";;
413 -Wl,-rpath-Wl,/usr/lib64) l="";;
414 -Wl,-rpath-Wl,/usr/lib64/) l="";;
417 if test x"[$]ac_new_flags" = x""; then
420 if test x"[$]l" = x""; then
421 ac_new_flags="[$]ac_new_flags[$]s[$]i";
423 ac_new_flags="[$]ac_new_flags[$]s[$]l [$]i";
432 dnl From Bruno Haible.
436 dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and
437 dnl those with the standalone portable libiconv installed).
438 AC_MSG_CHECKING(for iconv in $1)
439 jm_cv_func_iconv="no"
444 dnl Check for include in giconv.h but no lib needed
445 if test "$jm_cv_func_iconv" != yes; then
446 AC_TRY_LINK([#include <stdlib.h>
447 #include <giconv.h>],
448 [iconv_t cd = iconv_open("","");
449 iconv(cd,NULL,NULL,NULL,NULL);
452 jm_cv_include="giconv.h"
456 dnl Standard iconv.h include, lib in glibc or libc ...
457 if test "$jm_cv_func_iconv" != yes; then
458 AC_TRY_LINK([#include <stdlib.h>
460 [iconv_t cd = iconv_open("","");
461 iconv(cd,NULL,NULL,NULL,NULL);
463 jm_cv_include="iconv.h"
467 dnl Include in giconv.h, libgiconv needed to link
468 if test "$jm_cv_func_iconv" != yes; then
470 LIBS="$LIBS -lgiconv"
471 AC_TRY_LINK([#include <stdlib.h>
472 #include <giconv.h>],
473 [iconv_t cd = iconv_open("","");
474 iconv(cd,NULL,NULL,NULL,NULL);
478 jm_cv_include="giconv.h"
480 jm_cv_lib_iconv="giconv")
484 dnl Include in iconv.h, libiconv needed to link
485 if test "$jm_cv_func_iconv" != yes; then
488 AC_TRY_LINK([#include <stdlib.h>
490 [iconv_t cd = iconv_open("","");
491 iconv(cd,NULL,NULL,NULL,NULL);
493 jm_cv_include="iconv.h"
495 jm_cv_lib_iconv="iconv")
498 dnl Include in biconv.h, libbiconv needed to link
499 if test "$jm_cv_func_iconv" != yes; then
501 LIBS="$LIBS -lbiconv"
502 AC_TRY_LINK([#include <stdlib.h>
503 #include <biconv.h>],
504 [iconv_t cd = iconv_open("","");
505 iconv(cd,NULL,NULL,NULL,NULL);
509 jm_cv_include="biconv.h"
511 jm_cv_lib_iconv="biconv")
519 if test "$jm_cv_func_iconv" = yes; then
520 if test "$jm_cv_giconv" = yes; then
521 AC_DEFINE(HAVE_GICONV, 1, [What header to include for iconv() function: giconv.h])
525 if test "$jm_cv_biconv" = yes; then
526 AC_DEFINE(HAVE_BICONV, 1, [What header to include for iconv() function: biconv.h])
530 AC_DEFINE(HAVE_ICONV, 1, [What header to include for iconv() function: iconv.h])
540 AC_DEFUN(rjs_CHARSET,[
541 dnl Find out if we can convert from $1 to UCS2-LE
542 AC_MSG_CHECKING([can we convert from $1 to UCS2-LE?])
544 #include <$jm_cv_include>
546 iconv_t cd = iconv_open("$1", "UCS-2LE");
547 if (cd == 0 || cd == (iconv_t)-1) {
552 ],ICONV_CHARSET=$1,ICONV_CHARSET=no,ICONV_CHARSET=cross)
553 AC_MSG_RESULT($ICONV_CHARSET)
556 dnl AC_ENABLE_SHARED - implement the --enable-shared flag
557 dnl Usage: AC_ENABLE_SHARED[(DEFAULT)]
558 dnl Where DEFAULT is either `yes' or `no'. If omitted, it defaults to
560 AC_DEFUN([AC_ENABLE_SHARED],
561 [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
562 AC_ARG_ENABLE(shared,
563 changequote(<<, >>)dnl
564 << --enable-shared[=PKGS] build shared libraries [default=>>AC_ENABLE_SHARED_DEFAULT],
566 [p=${PACKAGE-default}
568 yes) enable_shared=yes ;;
569 no) enable_shared=no ;;
572 # Look at the argument we got. We use all the common list separators.
573 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
574 for pkg in $enableval; do
575 if test "X$pkg" = "X$p"; then
583 enable_shared=AC_ENABLE_SHARED_DEFAULT)dnl
586 dnl AC_ENABLE_STATIC - implement the --enable-static flag
587 dnl Usage: AC_ENABLE_STATIC[(DEFAULT)]
588 dnl Where DEFAULT is either `yes' or `no'. If omitted, it defaults to
590 AC_DEFUN([AC_ENABLE_STATIC],
591 [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
592 AC_ARG_ENABLE(static,
593 changequote(<<, >>)dnl
594 << --enable-static[=PKGS] build static libraries [default=>>AC_ENABLE_STATIC_DEFAULT],
596 [p=${PACKAGE-default}
598 yes) enable_static=yes ;;
599 no) enable_static=no ;;
602 # Look at the argument we got. We use all the common list separators.
603 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
604 for pkg in $enableval; do
605 if test "X$pkg" = "X$p"; then
612 enable_static=AC_ENABLE_STATIC_DEFAULT)dnl
615 dnl AC_DISABLE_STATIC - set the default static flag to --disable-static
616 AC_DEFUN([AC_DISABLE_STATIC],
617 [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
618 AC_ENABLE_STATIC(no)])
620 dnl AC_TRY_COMMAND_NO_STDERR - also fail if there is output on stderr
621 AC_DEFUN( [AC_TRY_COMMAND_NO_STDERR],
623 { OUT=`($1) 3>&AS_MESSAGE_LOG_FD 2>&1 1>&3`
625 echo "\$?=$RC" >&AS_MESSAGE_LOG_FD
626 if test x"$OUT" != x ; then
627 echo "stderr:" >&AS_MESSAGE_LOG_FD
628 echo "$OUT" >&AS_MESSAGE_LOG_FD
630 test $RC -eq 0 -a x"$OUT" = x ; }
633 dnl AC_TRY_RUN_STRICT(PROGRAM,CFLAGS,CPPFLAGS,LDFLAGS,
634 dnl [ACTION-IF-TRUE],[ACTION-IF-FALSE],
635 dnl [ACTION-IF-CROSS-COMPILING = RUNTIME-ERROR])
636 AC_DEFUN( [AC_TRY_RUN_STRICT],
638 old_CFLAGS="$CFLAGS";
641 old_CPPFLAGS="$CPPFLAGS";
644 old_LDFLAGS="$LDFLAGS";
647 AC_TRY_RUN([$1],[$5],[$6],[$7])
648 CFLAGS="$old_CFLAGS";
651 CPPFLAGS="$old_CPPFLAGS";
654 LDFLAGS="$old_LDFLAGS";
659 dnl SMB_CHECK_SYSCONF(varname)
660 dnl Tests whether the sysconf(3) variable "varname" is available.
661 AC_DEFUN([SMB_CHECK_SYSCONF],
663 AC_CACHE_CHECK([for sysconf($1)],
666 AC_TRY_LINK([#include <unistd.h>],
667 [ return sysconf($1) == -1 ? 1 : 0; ],
668 [ samba_cv_SYSCONF$1=yes ],
669 [ samba_cv_SYSCONF$1=no ])
672 if test x"$samba_cv_SYSCONF$1" = x"yes" ; then
673 AC_DEFINE(SYSCONF$1, 1, [Whether sysconf($1) is available])
677 dnl SMB_IS_LIBPTHREAD_LINKED([actions if true], [actions if false])
678 dnl Test whether the current LIBS results in libpthread being present.
679 dnl Execute the corresponding user action list.
680 AC_DEFUN([SMB_IS_LIBPTHREAD_LINKED],
682 AC_MSG_CHECKING(if libpthread is linked)
684 [return pthread_create(0, 0, 0, 0);],
695 dnl SMB_REMOVE_LIB(lib)
696 dnl Remove the given library from $LIBS
697 AC_DEFUN([SMB_REMOVE_LIB],
699 LIBS=`echo $LIBS | sed '-es/-l$1//g'`
702 dnl SMB_CHECK_DMAPI([actions if true], [actions if false])
703 dnl Check whether DMAPI is available and is a version that we know
704 dnl how to deal with. The default truth action is to set samba_dmapi_libs
705 dnl to the list of necessary libraries, and to define USE_DMAPI.
706 AC_DEFUN([SMB_CHECK_DMAPI],
710 if test x"$samba_dmapi_libs" = x"" ; then
711 AC_CHECK_LIB(dm, dm_get_eventlist,
712 [ samba_dmapi_libs="-ldm"], [])
715 if test x"$samba_dmapi_libs" = x"" ; then
716 AC_CHECK_LIB(jfsdm, dm_get_eventlist,
717 [samba_dmapi_libs="-ljfsdm"], [])
720 if test x"$samba_dmapi_libs" = x"" ; then
721 AC_CHECK_LIB(dmapi, dm_get_eventlist,
722 [samba_dmapi_libs="-ldmapi"], [])
725 if test x"$samba_dmapi_libs" = x"" ; then
726 AC_CHECK_LIB(xdsm, dm_get_eventlist,
727 [samba_dmapi_libs="-lxdsm"], [])
731 # Only bother to test ehaders if we have a candidate DMAPI library
732 if test x"$samba_dmapi_libs" != x"" ; then
733 AC_CHECK_HEADERS(sys/dmi.h xfs/dmapi.h sys/jfsdmapi.h sys/dmapi.h dmapi.h)
736 if test x"$samba_dmapi_libs" != x"" ; then
737 samba_dmapi_save_LIBS="$LIBS"
738 LIBS="$LIBS $samba_dmapi_libs"
741 #include <time.h> /* needed by Tru64 */
742 #include <sys/types.h> /* needed by AIX */
743 #ifdef HAVE_XFS_DMAPI_H
744 #include <xfs/dmapi.h>
745 #elif defined(HAVE_SYS_DMI_H)
747 #elif defined(HAVE_SYS_JFSDMAPI_H)
748 #include <sys/jfsdmapi.h>
749 #elif defined(HAVE_SYS_DMAPI_H)
750 #include <sys/dmapi.h>
751 #elif defined(HAVE_DMAPI_H)
756 /* This link test is designed to fail on IRI 6.4, but should
757 * succeed on Linux, IRIX 6.5 and AIX.
760 dm_eventset_t events;
761 /* This doesn't take an argument on IRIX 6.4. */
762 dm_init_service(&version);
763 /* IRIX 6.4 expects events to be a pointer. */
764 DMEV_ISSET(DM_EVENT_READ, events);
767 true # DMAPI link test succeeded
773 LIBS="$samba_dmapi_save_LIBS"
776 if test x"$samba_dmapi_libs" = x"" ; then
777 # DMAPI detection failure actions begin
780 AC_ERROR(Failed to detect a supported DMAPI implementation)
785 # DMAPI detection failure actions end
787 # DMAPI detection success actions start
790 AC_DEFINE(USE_DMAPI, 1,
791 [Whether we should build DMAPI integration components])
792 AC_MSG_NOTICE(Found DMAPI support in $samba_dmapi_libs)
797 # DMAPI detection success actions end
802 dnl SMB_IF_RTSIGNAL_BUG([actions if true],
803 dnl [actions if false],
804 dnl [actions if cross compiling])
805 dnl Test whether we can call sigaction with RT_SIGNAL_NOTIFY and
806 dnl RT_SIGNAL_LEASE (also RT_SIGNAL_AIO for good measure, though
807 dnl I don't believe that triggers any bug.
809 dnl See the samba-technical thread titled "Failed to setup
810 dnl RT_SIGNAL_NOTIFY handler" for details on the bug in question.
811 AC_DEFUN([SMB_IF_RTSIGNAL_BUG],
813 rt_signal_notify_works=yes
814 rt_signal_lease_works=yes
815 rt_signal_aio_works=yes
817 AC_MSG_CHECKING(if sigaction works with realtime signals)
820 #include <sys/types.h>
825 #define SIGRTMIN NSIG
827 /* from smbd/notify_kernel.c */
828 #ifndef RT_SIGNAL_NOTIFY
829 #define RT_SIGNAL_NOTIFY (SIGRTMIN+2)
832 /* from smbd/aio.c */
833 #ifndef RT_SIGNAL_AIO
834 #define RT_SIGNAL_AIO (SIGRTMIN+3)
837 /* from smbd/oplock_linux.c */
838 #ifndef RT_SIGNAL_LEASE
839 #define RT_SIGNAL_LEASE (SIGRTMIN+1)
842 static void signal_handler(int sig, siginfo_t *info, void *unused)
850 struct sigaction act = {0};
852 act.sa_sigaction = signal_handler;
853 act.sa_flags = SA_SIGINFO;
854 sigemptyset( &act.sa_mask );
856 if (sigaction(RT_SIGNAL_LEASE, &act, 0) != 0) {
857 /* Failed to setup RT_SIGNAL_LEASE handler */
861 if (sigaction(RT_SIGNAL_NOTIFY, &act, 0) != 0) {
862 /* Failed to setup RT_SIGNAL_NOTIFY handler */
866 if (sigaction(RT_SIGNAL_AIO, &act, 0) != 0) {
867 /* Failed to setup RT_SIGNAL_AIO handler */
871 /* zero on success */
882 1|11|101|111) rt_signal_lease_ok=no ;;
885 10|11|110|111) rt_signal_notify_ok=no ;;
888 100|110|101|111) rt_signal_aio_ok=no ;;
898 m4_include(../lib/replace/libreplace.m4)