r14659: Fix installpammodules for shells where a
[Samba.git] / source / configure.in
blob6063ecf0f30b916e8bd06b5002bf5133d9020297
1 dnl Process this file with autoconf to produce a configure script.
3 dnl We must use autotools 2.53 or above
4 AC_PREREQ(2.53)
5 AC_INIT(include/includes.h)
6 AC_CONFIG_HEADER(include/config.h)
8 AC_DISABLE_STATIC
9 AC_ENABLE_SHARED
11 SMB_VERSION_STRING=`cat $srcdir/include/version.h | grep 'SAMBA_VERSION_OFFICIAL_STRING' | cut -d '"' -f2`
12 echo "SAMBA VERSION: ${SMB_VERSION_STRING}"
14 SAMBA_VERSION_SVN_REVISION=`cat $srcdir/include/version.h | grep 'SAMBA_VERSION_SVN_REVISION' | cut -d ' ' -f3-`
15 if test -n "${SAMBA_VERSION_SVN_REVISION}";then
16         echo "BUILD REVISION: ${SAMBA_VERSION_SVN_REVISION}"
19 #################################################
20 # Directory handling stuff to support both the
21 # legacy SAMBA directories and FHS compliant
22 # ones...
23 AC_PREFIX_DEFAULT(/usr/local/samba)
25 rootsbindir="\${SBINDIR}"
26 lockdir="\${VARDIR}/locks"
27 piddir="\${VARDIR}/locks"
28 test "${mandir}" || mandir="\${prefix}/man"
29 logfilebase="\${VARDIR}"
30 privatedir="\${prefix}/private"
31 test "${libdir}" || libdir="\${prefix}/lib"
32 pammodulesdir="\${LIBDIR}/security"
33 configdir="\${LIBDIR}"
34 swatdir="\${prefix}/swat"
36 AC_ARG_WITH(fhs, 
37 [  --with-fhs              Use FHS-compliant paths (default=no)],
38 [ case "$withval" in
39   yes)
40     lockdir="\${VARDIR}/lib/samba"
41     piddir="\${VARDIR}/run"
42     mandir="\${prefix}/share/man"
43     logfilebase="\${VARDIR}/log/samba"
44     privatedir="\${CONFIGDIR}/private"
45     libdir="\${prefix}/lib/samba"
46     configdir="${sysconfdir}/samba"
47     swatdir="\${DATADIR}/samba/swat"
48     ;;
49   esac])
51 #################################################
52 # set private directory location
53 AC_ARG_WITH(privatedir,
54 [  --with-privatedir=DIR   Where to put smbpasswd ($ac_default_prefix/private)],
55 [ case "$withval" in
56   yes|no)
57   #
58   # Just in case anybody calls it without argument
59   #
60     AC_MSG_WARN([--with-privatedir called without argument - will use default])
61   ;;
62   * )
63     privatedir="$withval"
64     ;;
65   esac])
67 #################################################
68 # set root sbin directory location
69 AC_ARG_WITH(rootsbindir,
70 [  --with-rootsbindir=DIR  Which directory to use for root sbin ($ac_default_prefix/sbin)],
71 [ case "$withval" in
72   yes|no)
73   #
74   # Just in case anybody calls it without argument
75   #
76     AC_MSG_WARN([--with-rootsbindir called without argument - will use default])
77   ;;
78   * )
79     rootsbindir="$withval"
80     ;;
81   esac])
83 #################################################
84 # set lock directory location
85 AC_ARG_WITH(lockdir,
86 [  --with-lockdir=DIR      Where to put lock files ($ac_default_prefix/var/locks)],
87 [ case "$withval" in
88   yes|no)
89   #
90   # Just in case anybody calls it without argument
91   #
92     AC_MSG_WARN([--with-lockdir called without argument - will use default])
93   ;;
94   * )
95     lockdir="$withval"
96     ;;
97   esac])
99 #################################################
100 # set pid directory location
101 AC_ARG_WITH(piddir,
102 [  --with-piddir=DIR       Where to put pid files ($ac_default_prefix/var/locks)],
103 [ case "$withval" in
104   yes|no)
105   #
106   # Just in case anybody calls it without argument
107   #
108     AC_MSG_WARN([--with-piddir called without argument - will use default])
109   ;;
110   * )
111     piddir="$withval"
112     ;;
113   esac])
115 #################################################
116 # set SWAT directory location
117 AC_ARG_WITH(swatdir,
118 [  --with-swatdir=DIR      Where to put SWAT files ($ac_default_prefix/swat)],
119 [ case "$withval" in
120   yes|no)
121   #
122   # Just in case anybody does it
123   #
124     AC_MSG_WARN([--with-swatdir called without argument - will use default])
125   ;;
126   * )
127     swatdir="$withval"
128     ;;
129   esac])
131 #################################################
132 # set configuration directory location
133 AC_ARG_WITH(configdir,
134 [  --with-configdir=DIR    Where to put configuration files ($libdir)],
135 [ case "$withval" in
136   yes|no)
137   #
138   # Just in case anybody does it
139   #
140     AC_MSG_WARN([--with-configdir called without argument - will use default])
141   ;;
142   * )
143     configdir="$withval"
144     ;;
145   esac])
147 #################################################
148 # set log directory location
149 AC_ARG_WITH(logfilebase,
150 [  --with-logfilebase=DIR  Where to put log files ($VARDIR)],
151 [ case "$withval" in
152   yes|no)
153   #
154   # Just in case anybody does it
155   #
156     AC_MSG_WARN([--with-logfilebase called without argument - will use default])
157   ;;
158   * )
159     logfilebase="$withval"
160     ;;
161   esac])
163 #################################################
164 # set lib directory location
165 AC_ARG_WITH(libdir,
166 [  --with-libdir=DIR       Where to put libdir ($libdir)],
167 [ case "$withval" in
168   yes|no)
169   #
170   # Just in case anybody does it
171   #
172     AC_MSG_WARN([--with-libdir without argument - will use default])
173   ;;
174   * )
175     libdir="$withval"
176     ;;
177   esac])
179 #################################################
180 # set PAM modules directory location
181 AC_ARG_WITH(pammodulesdir,
182 [  --with-pammodulesdir=DIR  Which directory to use for PAM modules ($ac_default_prefix/$libdir/security)],
183 [ case "$withval" in
184   yes|no)
185   #
186   # Just in case anybody calls it without argument
187   #
188     AC_MSG_WARN([--with-pammodulesdir called without argument - will use default])
189   ;;
190   * )
191     pammodulesdir="$withval"
192     ;;
193   esac])
195 #################################################
196 # set man directory location
197 AC_ARG_WITH(mandir,
198 [  --with-mandir=DIR       Where to put man pages ($mandir)],
199 [ case "$withval" in
200   yes|no)
201   #
202   # Just in case anybody does it
203   #
204     AC_MSG_WARN([--with-mandir without argument - will use default])
205   ;;
206   * )
207     mandir="$withval"
208     ;;
209   esac])
211 AC_ARG_WITH(cfenc,
212 [  --with-cfenc=HEADERDIR  Use internal CoreFoundation encoding API
213                           for optimization (Mac OS X/Darwin only)],
215 # May be in source $withval/CoreFoundation/StringEncodings.subproj.
216 # Should have been in framework $withval/CoreFoundation.framework/Headers.
217 for d in \
218     $withval/CoreFoundation/StringEncodings.subproj \
219     $withval/StringEncodings.subproj \
220     $withval/CoreFoundation.framework/Headers \
221     $withval/Headers \
222     $withval
224     if test -r $d/CFStringEncodingConverter.h; then
225         ln -sfh $d include/CoreFoundation
226     fi
227 done
230 AC_SUBST(configdir)
231 AC_SUBST(lockdir)
232 AC_SUBST(piddir)
233 AC_SUBST(logfilebase)
234 AC_SUBST(privatedir)
235 AC_SUBST(swatdir)
236 AC_SUBST(bindir)
237 AC_SUBST(sbindir)
238 AC_SUBST(rootsbindir)
239 AC_SUBST(pammodulesdir)
241 dnl Unique-to-Samba variables we'll be playing with.
242 AC_SUBST(SHELL)
243 AC_SUBST(LDSHFLAGS)
244 AC_SUBST(SONAMEFLAG)
245 AC_SUBST(NSSSONAMEVERSIONSUFFIX)
246 AC_SUBST(SHLD)
247 AC_SUBST(HOST_OS)
248 AC_SUBST(PICFLAGS)
249 AC_SUBST(PICSUFFIX)
250 AC_SUBST(libc_cv_fpie)
251 AC_SUBST(PIE_CFLAGS)
252 AC_SUBST(PIE_LDFLAGS)
253 AC_SUBST(SHLIBEXT)
254 AC_SUBST(INSTALLLIBCMD_SH)
255 AC_SUBST(INSTALLLIBCMD_A)
256 AC_SUBST(UNINSTALLLIBCMD_SH)
257 AC_SUBST(UNINSTALLLIBCMD_A)
258 AC_SUBST(INSTALL_LIBMSRPC)
259 AC_SUBST(UNINSTALL_LIBMSRPC)
260 AC_SUBST(LIBMSRPC_SHARED)
261 AC_SUBST(LIBMSRPC)
262 AC_SUBST(INSTALL_LIBSMBCLIENT)
263 AC_SUBST(UNINSTALL_LIBSMBCLIENT)
264 AC_SUBST(LIBSMBCLIENT_SHARED)
265 AC_SUBST(LIBSMBCLIENT)
266 AC_SUBST(INSTALL_LIBSMBSHAREMODES)
267 AC_SUBST(LIBSMBSHAREMODES_SHARED)
268 AC_SUBST(LIBSMBSHAREMODES)
269 AC_SUBST(PRINT_LIBS)
270 AC_SUBST(AUTH_LIBS)
271 AC_SUBST(ACL_LIBS)
272 AC_SUBST(PASSDB_LIBS)
273 AC_SUBST(IDMAP_LIBS)
274 AC_SUBST(KRB5_LIBS)
275 AC_SUBST(LDAP_LIBS)
276 AC_SUBST(SHLIB_PROGS)
277 AC_SUBST(PAM_MODULES)
278 AC_SUBST(INSTALL_PAM_MODULES)
279 AC_SUBST(UNINSTALL_PAM_MODULES)
280 AC_SUBST(SMBWRAPPER)
281 AC_SUBST(SMBWRAP_OBJS)
282 AC_SUBST(SMBWRAP_INC)
283 AC_SUBST(EXTRA_BIN_PROGS)
284 AC_SUBST(CIFSMOUNT_PROGS)
285 AC_SUBST(INSTALL_CIFSMOUNT)
286 AC_SUBST(UNINSTALL_CIFSMOUNT)
287 AC_SUBST(EXTRA_SBIN_PROGS)
288 AC_SUBST(EXTRA_ALL_TARGETS)
289 AC_SUBST(CONFIG_LIBS)
290 AC_SUBST(NSCD_LIBS)
292 # Set defaults
293 PIE_CFLAGS=""
294 PIE_LDFLAGS=""
295 AC_ARG_ENABLE(pie, [  --enable-pie            Turn on pie support if available (default=yes)])
297 if test "x$enable_pie" != xno
298 then
299         AC_CACHE_CHECK(for -fPIE, libc_cv_fpie, [dnl
300                 cat > conftest.c <<EOF
301 int foo;
302 main () { return 0;}
304                 if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS -pie -fPIE -o conftest conftest.c 1>&AS_MESSAGE_LOG_FD])
305                 then
306                         libc_cv_fpie=yes
307                         PIE_CFLAGS="-fPIE"
308                         PIE_LDFLAGS="-pie"
309                 fi
310                 rm -f conftest*])
312 if test "x$PIE_CFLAGS" = x
313 then
314         libc_cv_fpie=no
317 AC_ARG_ENABLE(debug, 
318 [  --enable-debug          Turn on compiler debugging information (default=no)],
319     [if eval "test x$enable_debug = xyes"; then
320         CFLAGS="${CFLAGS} -g"
321     fi])
323 AC_SUBST(SOCKWRAP)
324 AC_ARG_ENABLE(socket-wrapper, 
325 [  --enable-socket-wrapper         Turn on socket wrapper library (default=no)],
326     [if eval "test x$enable_socket_wrapper = xyes"; then
327         AC_DEFINE(SOCKET_WRAPPER,1,[Use socket wrapper library])
328         SOCKWRAP="\$(SOCKET_WRAPPER_OBJ)"
329     fi])
331 #################################################
332 # set prefix for 'make test'
333 selftest_prefix="./"
334 AC_SUBST(selftest_prefix)
335 AC_ARG_WITH(selftest-prefix,
336 [  --with-selftest-prefix=DIR    The prefix where make test will be runned ($selftest_prefix)],
337 [ case "$withval" in
338   yes|no)
339     AC_MSG_WARN([--with-selftest-prefix called without argument - will use default])
340   ;;
341   * )
342     selftest_prefix="$withval"
343     ;;
344   esac
347 #################################################
348 # set path of samba4's smbtorture
349 smbtorture4_path=""
350 AC_SUBST(smbtorture4_path)
351 AC_ARG_WITH(smbtorture4_path,
352 [  --with-smbtorture4-path=PATH    The path to a samba4 smbtorture for make test (none)],
353 [ case "$withval" in
354   yes|no)
355     AC_MSG_ERROR([--with-smbtorture4-path should take a path])
356   ;;
357   * )
358     smbtorture4_path="$withval"
359     if test -z "$smbtorture4_path" -a ! -f $smbtorture4_path; then
360         AC_MSG_ERROR(['$smbtorture_path' does not  exist!]) 
361     fi
362   ;;
363  esac
366 # compile with optimization and without debugging by default, but
367 # allow people to set their own preference.
368 # do this here since AC_CACHE_CHECK apparently sets the CFLAGS to "-g -O2"
369 # if it has no value.  This prevent *very* large debug binaries from occurring
370 # by default.
371 if test "x$CFLAGS" = x; then
372   CFLAGS="-O"
375 CFLAGS="${CFLAGS} -D_SAMBA_BUILD_"
377 AC_ARG_ENABLE(developer, [  --enable-developer      Turn on developer warnings and debugging (default=no)],
378     [if eval "test x$enable_developer = xyes"; then
379         developer=yes
380         CFLAGS="${CFLAGS} -gstabs -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-align -Wwrite-strings -DDEBUG_PASSWORD -DDEVELOPER"
381         # Add -Wdeclaration-after-statement if compiler supports it
382         AC_CACHE_CHECK(
383           [that the C compiler understands -Wdeclaration-after-statement],
384           samba_cv_HAVE_Wdeclaration_after_statement, [
385           AC_TRY_RUN_STRICT([
386             int main(void)
387             {
388                 return 0;
389             }],[-Wdeclaration-after-statement],[$CPPFLAGS],[$LDFLAGS],
390             samba_cv_HAVE_Wdeclaration_after_statement=yes,
391             samba_cv_HAVE_Wdeclaration_after_statement=no,
392             samba_cv_HAVE_Wdeclaration_after_statement=cross)
393        ])
394        if test x"$samba_cv_HAVE_Wdeclaration_after_statement" = x"yes"; then
395             CFLAGS="${CFLAGS} -Wdeclaration-after-statement"
396        fi
397     fi])
399 AC_ARG_ENABLE(krb5developer, [  --enable-krb5developer  Turn on developer warnings and debugging, except -Wstrict-prototypes (default=no)],
400     [if eval "test x$enable_krb5developer = xyes"; then
401         developer=yes
402         CFLAGS="${CFLAGS} -gstabs -Wall -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -DDEBUG_PASSWORD -DDEVELOPER"
403     fi])
405 AC_ARG_ENABLE(dmalloc, [  --enable-dmalloc        Enable heap debugging [default=no]])
407 if test "x$enable_dmalloc" = xyes
408 then
409         AC_DEFINE(ENABLE_DMALLOC, 1, [Define to turn on dmalloc debugging])
410         AC_DEFINE(DMALLOC_FUNC_CHECK, 1, 
411                   [Define to check invariants around some common functions])
412         LIBS="$LIBS -ldmalloc"  
415 dnl Checks for programs.
418 ## for some reason this macro resets the CFLAGS
419 ## so save and restore
421 OLD_CFLAGS=${CFLAGS}
422 AC_PROG_CC
423 CFLAGS=${OLD_CFLAGS}
425 OLD_CFLAGS=${CFLAGS}
426 AC_PROG_CPP
427 CFLAGS=${OLD_CFLAGS}
429 AC_PROG_INSTALL
430 AC_PROG_AWK
431 AC_PATH_PROG(PERL, perl)
433 AC_CHECK_TOOL(AR, ar)
435 dnl Check if we use GNU ld
436 LD=ld
437 AC_PROG_LD_GNU
439 dnl Certain versions of GNU ld the default is not to have the 
440 dnl --allow-shlib-undefined flag defined.  This causes a stackload of
441 dnl warnings when building modules.
442 if test "$ac_cv_prog_gnu_ld" = "yes"; then
443         ac_cv_gnu_ld_version=`$LD -v 2>/dev/null | head -1`
444         AC_MSG_CHECKING(GNU ld release date)
445         changequote(,)dnl
446         ac_cv_gnu_ld_date=`echo $ac_cv_gnu_ld_version | sed -n 's,^.*\([2-9][0-9][0-9][0-9]\)[-]*\([01][0-9]\)[-]*\([0-3][0-9]\).*$,\1\2\3,p'`
447         changequote([,])dnl
448         AC_MSG_RESULT(${ac_cv_gnu_ld_date})
449         if test -n "$ac_cv_gnu_ld_date"; then
450         if test "$ac_cv_gnu_ld_date" -lt 20030217; then
451                 ac_cv_gnu_ld_no_default_allow_shlib_undefined=yes
452         fi
453         else
454            AC_MSG_CHECKING(GNU ld release version)
455            changequote(,)dnl
456            ac_cv_gnu_ld_vernr=`echo $ac_cv_gnu_ld_version | sed -n 's,^.*\([1-9][0-9]*\.[0-9][0-9]*\).*$,\1,p'`
457            ac_cv_gnu_ld_vernr_major=`echo $ac_cv_gnu_ld_vernr | cut -d '.' -f 1`
458            ac_cv_gnu_ld_vernr_minor=`echo $ac_cv_gnu_ld_vernr | cut -d '.' -f 2`
459            changequote([,])dnl
460            AC_MSG_RESULT(${ac_cv_gnu_ld_vernr})
461            AC_MSG_CHECKING(GNU ld release version major)
462            AC_MSG_RESULT(${ac_cv_gnu_ld_vernr_major})
463            AC_MSG_CHECKING(GNU ld release version minor)
464            AC_MSG_RESULT(${ac_cv_gnu_ld_vernr_minor})
465            if test "$ac_cv_gnu_ld_vernr_major" -lt 2 || test "$ac_cv_gnu_ld_vernr_minor" -lt 14; then
466              ac_cv_gnu_ld_no_default_allow_shlib_undefined=yes
467            fi
468         fi
471 dnl needed before AC_TRY_COMPILE
472 AC_ISC_POSIX
474 dnl look for executable suffix
475 AC_EXEEXT
477 dnl Check if C compiler understands -c and -o at the same time
478 AC_PROG_CC_C_O
479 if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
480       BROKEN_CC=
481 else
482       BROKEN_CC=#
484 AC_SUBST(BROKEN_CC)
486 dnl Check if the C compiler understands -Werror
487 AC_CACHE_CHECK([that the C compiler understands -Werror],samba_cv_HAVE_Werror, [
488  AC_TRY_RUN_STRICT([
489   int main(void)
490   {
491         return 0;
492   }],[-Werror],[$CPPFLAGS],[$LDFLAGS],
493   samba_cv_HAVE_Werror=yes,samba_cv_HAVE_Werror=no,samba_cv_HAVE_Werror=cross)])
494 if test x"$samba_cv_HAVE_Werror" = x"yes"; then
495    Werror_FLAGS="-Werror"
496 else 
497 dnl Check if the C compiler understands -w2
498 AC_CACHE_CHECK([that the C compiler understands -w2],samba_cv_HAVE_w2, [
499  AC_TRY_RUN_STRICT([
500   int main(void)
501   {
502         return 0;
503   }],[-w2],[$CPPFLAGS],[$LDFLAGS],
504   samba_cv_HAVE_w2=yes,samba_cv_HAVE_w2=no,samba_cv_HAVE_w2=cross)])
505 if test x"$samba_cv_HAVE_w2" = x"yes"; then
506    Werror_FLAGS="-w2"
510 dnl Check if the C compiler understands volatile (it should, being ANSI).
511 AC_CACHE_CHECK([that the C compiler understands volatile],samba_cv_volatile, [
512     AC_TRY_COMPILE([#include <sys/types.h>],[volatile int i = 0],
513         samba_cv_volatile=yes,samba_cv_volatile=no)])
514 if test x"$samba_cv_volatile" = x"yes"; then
515    AC_DEFINE(HAVE_VOLATILE, 1, [Whether the C compiler understands volatile])
518 UNAME_S=`(uname -s) 2>/dev/null` || UNAME_S="unknown"
519 AC_MSG_CHECKING(uname -s)
520 AC_MSG_RESULT(${UNAME_S})
522 UNAME_R=`(uname -r) 2>/dev/null` || UNAME_R="unknown"
523 AC_MSG_CHECKING(uname -r)
524 AC_MSG_RESULT(${UNAME_R})
526 UNAME_M=`(uname -m) 2>/dev/null` || UNAME_M="unknown"
527 AC_MSG_CHECKING(uname -m)
528 AC_MSG_RESULT(${UNAME_M})
530 UNAME_P=`(uname -p) 2>/dev/null` || UNAME_P="unknown"
531 AC_MSG_CHECKING(uname -p)
532 AC_MSG_RESULT(${UNAME_P})
534 AC_CANONICAL_SYSTEM
536 dnl Add #include for broken IRIX header files
537   case "$host_os" in
538         *irix6*) AC_ADD_INCLUDE(<standards.h>)
539         ;;
540 esac
542 AC_VALIDATE_CACHE_SYSTEM_TYPE
544 DYNEXP=
546 dnl Add modules that have to be built by default here
547 dnl These have to be built static:
548 default_static_modules="pdb_smbpasswd pdb_tdbsam rpc_lsa rpc_samr rpc_reg rpc_lsa_ds rpc_wks rpc_svcctl rpc_ntsvcs rpc_net rpc_netdfs rpc_srv rpc_spoolss rpc_eventlog auth_rhosts auth_sam auth_unix auth_winbind auth_server auth_domain auth_builtin"
550 dnl These are preferably build shared, and static if dlopen() is not available
551 default_shared_modules="vfs_recycle vfs_audit vfs_extd_audit vfs_full_audit vfs_netatalk vfs_fake_perms vfs_default_quota vfs_readonly vfs_cap vfs_expand_msdfs vfs_shadow_copy charset_CP850 charset_CP437 auth_script"
553 if test "x$developer" = xyes; then
554    default_static_modules="$default_static_modules rpc_echo"
555    default_shared_modules="$default_shared_modules charset_weird"
559 # Config CPPFLAG settings for strange OS's that must be set
560 # before other tests. Do NOT invoke AC_CHECK_HEADERS within this
561 # case statement; its first reference must be unconditional.
563 case "$host_os" in
564 # Try to work out if this is the native HPUX compiler that uses the -Ae flag.
565     *hpux*)
566     
567       AC_PROG_CC_FLAG(Ae)
568       # mmap on HPUX is completely broken...
569       AC_DEFINE(MMAP_BLACKLIST, 1, [Whether MMAP is broken])
570       if test $ac_cv_prog_cc_Ae = yes; then
571         CPPFLAGS="$CPPFLAGS -Ae"
572       fi
574 # Defines needed for HPUX support.
575 # HPUX has bigcrypt but (sometimes?) doesn't use it for
576 # password hashing - hence the USE_BOTH_CRYPT_CALLS define.
578       case `uname -r` in
579                         *9*|*10*)
580                                 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_POSIX_SOURCE -D_ALIGNMENT_REQUIRED=1 -D_MAX_ALIGNMENT=4 -DMAX_POSITIVE_LOCK_OFFSET=0x1ffffffffffLL"
581                                 AC_DEFINE(USE_BOTH_CRYPT_CALLS, 1, [Whether to use both of HPUX' crypt calls])
582                                 AC_DEFINE(_HPUX_SOURCE, 1, [Whether to use HPUX extensions])
583                                 AC_DEFINE(_POSIX_SOURCE, 1, [Whether to use POSIX compatible functions])
584                                 AC_DEFINE(_ALIGNMENT_REQUIRED,1,[Required alignment])
585                                 AC_DEFINE(_MAX_ALIGNMENT,4,[Maximum alignment])
586                                 ;;
587                         *11*)
588                                 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_POSIX_SOURCE -D_LARGEFILE64_SOURCE -D_ALIGNMENT_REQUIRED=1 -D_MAX_ALIGNMENT=4 -DMAX_POSITIVE_LOCK_OFFSET=0x1ffffffffffLL"
589                                 AC_DEFINE(USE_BOTH_CRYPT_CALLS, 1, [Whether to use both of HPUX' crypt calls])
590                                 AC_DEFINE(_HPUX_SOURCE, 1, [Whether to use HPUX extensions])
591                                 AC_DEFINE(_POSIX_SOURCE, 1, [Whether to use POSIX compatible functions])
592                                 AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to use large file support])
593                                 AC_DEFINE(_ALIGNMENT_REQUIRED, 1, [Required alignment])
594                                 AC_DEFINE(_MAX_ALIGNMENT, 4, [Maximum alignment])
595                                 ;;
596       esac
597       ;;
600 # CRAY Unicos has broken const handling
601        *unicos*)
602           AC_MSG_RESULT([disabling const])
603           CPPFLAGS="$CPPFLAGS -Dconst="
604           ;;
605         
607 # AIX4.x doesn't even admit to having large
608 # files *at all* unless the -D_LARGE_FILE or -D_LARGE_FILE_API flags are set.
610     *aix4*)
611           AC_MSG_RESULT([enabling large file support])
612       CPPFLAGS="$CPPFLAGS -D_LARGE_FILES"
613           AC_DEFINE(_LARGE_FILES, 1, [Whether to enable large file support])
614       ;;    
616 # Defines needed for Solaris 2.6/2.7 aka 7.0 to make it admit
617 # to the existance of large files..
618 # Note that -D_LARGEFILE64_SOURCE is different from the Sun
619 # recommendations on large file support, however it makes the
620 # compile work using gcc 2.7 and 2.8, whereas using the Sun
621 # recommendation makes the compile fail on gcc2.7. JRA.
623 # Solaris uses SYSV printing.  Make sure to set that here.  --jerry
625         *solaris*)
626                 AC_DEFINE(SYSV, 1, [Whether to enable System V compatibility])
627                 case `uname -r` in
628                         5.0|5.0.*|5.1|5.1.*|5.2|5.2.*|5.3|5.3.*|5.5|5.5.*)
629                                 AC_MSG_RESULT([no large file support])
630                                 ;;
631                         5.*)
632                         AC_MSG_RESULT([enabling large file support])
633                         if test "$ac_cv_prog_gcc" = yes; then
634                                 ${CC-cc} -v >conftest.c 2>&1
635                                 ac_cv_gcc_compiler_version_number=`grep 'gcc version' conftest.c`
636                                 rm -fr conftest.c
637                                 case "$ac_cv_gcc_compiler_version_number" in
638                                         *"gcc version 2.6"*|*"gcc version 2.7"*)
639                                                 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE -D_REENTRANT"
640                                                 LDFLAGS="$LDFLAGS -lthread"
641                                                 AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to enable large file support])
642                                                 ;;
643                                         *)
644                                                 CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE -D_REENTRANT -D_FILE_OFFSET_BITS=64"
645                                                 LDFLAGS="$LDFLAGS -lthread"
646                                                 AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to enable large file support])
647                                                 AC_DEFINE(_FILE_OFFSET_BITS, 64, [File offset bits])
648                                                 ;;
649                                 esac
650                         else
651                                 CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE -D_REENTRANT -D_FILE_OFFSET_BITS=64"
652                                 LDFLAGS="$LDFLAGS -lthread"
653                                 AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to enable large file support])
654                                 AC_DEFINE(_FILE_OFFSET_BITS, 64, [File offset bits])
655                         fi
656                         ;;
657                 esac
658                 ;;
660 # IRIX uses SYSV printing.  Make sure to set that here
662         *irix*)
663                 AC_DEFINE(SYSV, 1, [Whether to enable System V compatibility])
664                 ;;
665         *freebsd*|*dragonfly*)
666                 AC_DEFINE(FREEBSD, 1, [Whether the host os is FreeBSD])
667                 ;;
669 # VOS may need to have POSIX support and System V compatibility enabled.
671     *vos*)
672     case "$CPPFLAGS" in
673           *-D_POSIX_C_SOURCE*)
674                 ;;
675           *)
676                 CPPFLAGS="$CPPFLAGS -D_POSIX_C_SOURCE=200112L"
677                 AC_DEFINE(_POSIX_C_SOURCE, 200112L, [Whether to enable POSIX support])
678                 ;;
679     esac
680     case "$CPPFLAGS" in
681           *-D_SYSV*|*-D_SVID_SOURCE*)
682                 ;;
683           *)
684                 CPPFLAGS="$CPPFLAGS -D_SYSV"
685                 AC_DEFINE(_SYSV, 1, [Whether to enable System V compatibility])
686     esac
687     ;;
689 # Tests needed for SINIX large file support.
691     *sysv4*)
692       if test $host = mips-sni-sysv4 ; then
693         AC_MSG_CHECKING([for LFS support])
694         old_CPPFLAGS="$CPPFLAGS"
695         CPPFLAGS="-D_LARGEFILE64_SOURCE $CPPFLAGS"
696         AC_TRY_RUN([
697 #include <unistd.h>
698 main () {
699 #if _LFS64_LARGEFILE == 1
700 exit(0);
701 #else
702 exit(1);
703 #endif
704 }], [SINIX_LFS_SUPPORT=yes], [SINIX_LFS_SUPPORT=no], [SINIX_LFS_SUPPORT=cross])
705         CPPFLAGS="$old_CPPFLAGS"
706         if test x$SINIX_LFS_SUPPORT = xyes ; then
707           CPPFLAGS="-D_LARGEFILE64_SOURCE $CPPFLAGS"
708                   AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to enable large file support])
709           CFLAGS="`getconf LFS64_CFLAGS` $CFLAGS"
710           LDFLAGS="`getconf LFS64_LDFLAGS` $LDFLAGS"
711           LIBS="`getconf LFS64_LIBS` $LIBS"
712         fi
713       AC_MSG_RESULT([$SINIX_LFS_SUPPORT])
714       fi
715     ;;
717 # Tests for linux LFS support. Need kernel 2.4 and glibc2.2 or greater support.
719     *linux*)
720         AC_MSG_CHECKING([for LFS support])
721         old_CPPFLAGS="$CPPFLAGS"
722         CPPFLAGS="-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE $CPPFLAGS"
723        AC_TRY_RUN([
724 #include <unistd.h>
725 #include <sys/utsname.h>
726 #include <string.h>
727 #include <stdlib.h>
728 main() {
729 #if _LFS64_LARGEFILE == 1
730        struct utsname uts;
731        char *release;
732        int major, minor;
734        /* Ensure this is glibc 2.2 or higher */
735 #if defined(__GLIBC__) && defined(__GLIBC_MINOR__)
736        int libc_major = __GLIBC__;
737        int libc_minor = __GLIBC_MINOR__;
739        if (libc_major < 2)
740               exit(1);
741        if (libc_minor < 2)
742               exit(1);
743 #endif
745        /* Ensure this is kernel 2.4 or higher */
747        uname(&uts);
748        release = strdup(uts.release);
749        major = atoi(strsep(&release, "."));
750        minor = atoi(strsep(&release, "."));
752        if (major > 2 || (major == 2 && minor > 3))
753                exit(0);
754        exit(1);
755 #else
756        exit(1);
757 #endif
759 ], [LINUX_LFS_SUPPORT=yes], [LINUX_LFS_SUPPORT=no], [LINUX_LFS_SUPPORT=cross])
760         CPPFLAGS="$old_CPPFLAGS"
761         if test x$LINUX_LFS_SUPPORT = xyes ; then
762                 CPPFLAGS="-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE $CPPFLAGS"
763                 AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to enable large file support])
764                 AC_DEFINE(_FILE_OFFSET_BITS, 64, [File offset bits])
765                 AC_DEFINE(_GNU_SOURCE, 1, [Whether to use GNU libc extensions])
766         fi
767         AC_MSG_RESULT([$LINUX_LFS_SUPPORT])
768         ;;
771 # MacOS X is the *only* system that uses compose character in utf8. This
772 # is so horribly broken....
774     *darwin*)
775         AC_DEFINE(BROKEN_UNICODE_COMPOSE_CHARACTERS, 1, [Does this system use unicode compose characters])
776 # Add Fink directories for various packages, like dlcompat.
777 # Note: iconv does that explicitly below, but other packages
778 # don't.
779         CPPFLAGS="$CPPFLAGS -I/sw/include"
780         LDFLAGS="$LDFLAGS -L/sw/lib"
782 # If we have dlsym_prepend_underscore (from Fink's dlcompat),
783 # use that instead of plain dlsym.
785         AC_CHECK_LIB(dl,dlopen)
786         AC_CHECK_FUNCS(dlsym_prepend_underscore,[CPPFLAGS="$CPPFLAGS -Ddlsym=dlsym_prepend_underscore"])
788 # Add a system specific charset module.
790         default_shared_modules="$default_shared_modules charset_macosxfs"
791         ;;
792     *hurd*)
793         AC_MSG_CHECKING([for LFS support])
794         old_CPPFLAGS="$CPPFLAGS"
795         CPPFLAGS="-D_LARGEFILE64_SOURCE -D_GNU_SOURCE $CPPFLAGS"
796         AC_TRY_RUN([
797 #include <unistd.h>
798 main () {
799 #if _LFS64_LARGEFILE == 1
800 exit(0);
801 #else
802 exit(1);
803 #endif
804 }], [GLIBC_LFS_SUPPORT=yes], [GLIBC_LFS_SUPPORT=no], [GLIBC_LFS_SUPPORT=cross])
805         CPPFLAGS="$old_CPPFLAGS"
806         if test x$GLIBC_LFS_SUPPORT = xyes ; then
807           CPPFLAGS="-D_LARGEFILE64_SOURCE -D_GNU_SOURCE $CPPFLAGS"
808                   AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to enable large file support])
809           AC_DEFINE(_GNU_SOURCE, 1, [Whether to use GNU libc extensions])
810         fi
811       AC_MSG_RESULT([$GLIBC_LFS_SUPPORT])
812     ;;
814 esac
816 AC_INLINE
817 AC_HEADER_STDC
818 AC_HEADER_DIRENT
819 AC_HEADER_TIME
820 AC_HEADER_SYS_WAIT
821 AC_CHECK_HEADERS(aio.h arpa/inet.h sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h rpc/nettype.h)
822 AC_CHECK_HEADERS(unistd.h utime.h grp.h sys/id.h limits.h memory.h alloca.h)
823 AC_CHECK_HEADERS(rpc/rpc.h rpcsvc/nis.h rpcsvc/ypclnt.h)
824 AC_CHECK_HEADERS(sys/param.h ctype.h sys/wait.h sys/resource.h sys/ioctl.h sys/ipc.h sys/prctl.h)
825 AC_CHECK_HEADERS(sys/mman.h sys/filio.h sys/priv.h sys/shm.h string.h strings.h stdlib.h sys/socket.h)
826 AC_CHECK_HEADERS(sys/un.h)
827 AC_CHECK_HEADERS(sys/mount.h sys/vfs.h sys/fs/s5param.h sys/filsys.h termios.h termio.h)
828 AC_CHECK_HEADERS(sys/termio.h sys/statfs.h sys/dustat.h sys/statvfs.h stdarg.h sys/sockio.h)
829 AC_CHECK_HEADERS(sys/sysmacros.h security/_pam_macros.h dlfcn.h)
830 AC_CHECK_HEADERS(sys/syslog.h syslog.h execinfo.h)
831 AC_CHECK_HEADERS(langinfo.h locale.h)
833 AC_CHECK_HEADERS(rpcsvc/yp_prot.h,,,[[
834 #if HAVE_RPC_RPC_H
835 #include <rpc/rpc.h>
836 #endif
839 ## These fail to compile on IRIX so just check for their presence
840 AC_CHECK_HEADERS(sys/mode.h,,,)
842 # Look for Darwin headers
843 old_CPPFLAGS="$CPPFLAGS"
844 CPPFLAGS="-Iinclude $CPPFLAGS"
845 AC_CHECK_HEADERS([CoreFoundation/CFStringEncodingConverter.h], [], [AC_CHECK_HEADERS([CFStringEncodingConverter.h])])
846 CPPFLAGS="$old_CPPFLAGS"
848 # In valgrind 1.0.x, it's just valgrind.h.  In 1.9.x+ there's a
849 # subdirectory of headers.
850 AC_CHECK_HEADERS(valgrind.h valgrind/valgrind.h valgrind/memcheck.h)
852 # check for linux on amd64 since valgrind is not quite there yet
853 case "$host_os" in
854         *linux*)
855                 case "$UNAME_P" in
856                         *x86_64*)
857                                 AC_DEFINE(HAVE_64BIT_LINUX,1,[Whether we are running on 64bit linux])
858                                 ;;
859                 esac
860                 ;;
861 esac
865 # HPUX has a bug in that including shadow.h causes a re-definition of MAXINT.
866 # This causes configure to fail to detect it. Check for shadow separately on HPUX.
868 case "$host_os" in
869     *hpux*)
870                 AC_TRY_COMPILE([#include <shadow.h>],[struct spwd testme],
871                         ac_cv_header_shadow_h=yes,ac_cv_header_shadow_h=no)
872                 if test x"$ac_cv_header_shadow_h" = x"yes"; then
873                    AC_DEFINE(HAVE_SHADOW_H,1,[Whether we have shadow.h])
874                 fi
875         ;;
876 esac
877 AC_CHECK_HEADERS(shadow.h netinet/tcp.h netinet/in_systm.h netinet/in_ip.h)
878 AC_CHECK_HEADERS(nss.h nss_common.h nsswitch.h ns_api.h sys/security.h security/pam_appl.h)
879 AC_CHECK_HEADERS(stropts.h poll.h)
880 AC_CHECK_HEADERS(syscall.h sys/syscall.h)
882 AC_CHECK_HEADERS(sys/acl.h sys/attributes.h attr/xattr.h sys/xattr.h sys/extattr.h sys/uio.h)
883 AC_CHECK_HEADERS(sys/ea.h sys/proplist.h)
885 AC_CHECK_HEADERS(sys/cdefs.h glob.h)
887 AC_CHECK_HEADERS(netinet/ip.h,,,[[
888 #include <sys/types.h>
889 #if HAVE_SYS_SOCKET_H
890 #include <sys/socket.h>
891 #endif
892 #include <netinet/in.h>
893 #if HAVE_NETINET_IN_SYSTM_H
894 #include <netinet/in_systm.h>
895 #endif
898 AC_CHECK_HEADERS(net/if.h,,,[[
899 #include <sys/types.h>
900 #if HAVE_SYS_SOCKET_H
901 #include <sys/socket.h>
902 #endif
905 AC_CHECK_HEADERS(security/pam_modules.h,,,[[
906 #if HAVE_SECURITY_PAM_APPL_H
907 #include <security/pam_appl.h>
908 #endif
911 # For experimental utmp support (lastlog on some BSD-like systems)
912 AC_CHECK_HEADERS(utmp.h utmpx.h lastlog.h)
914 AC_CHECK_SIZEOF(int,cross)
915 AC_CHECK_SIZEOF(long,cross)
916 AC_CHECK_SIZEOF(short,cross)
918 AC_C_CONST
919 AC_C_INLINE
920 AC_C_BIGENDIAN
921 AC_C_CHAR_UNSIGNED
923 AC_TYPE_SIGNAL
924 AC_TYPE_UID_T
925 AC_TYPE_MODE_T
926 AC_TYPE_OFF_T
927 AC_TYPE_SIZE_T
928 AC_TYPE_PID_T
929 AC_STRUCT_ST_RDEV
930 AC_DIRENT_D_OFF
931 AC_CHECK_TYPE(ino_t,unsigned)
932 AC_CHECK_TYPE(loff_t,off_t)
933 AC_CHECK_TYPE(offset_t,loff_t)
934 AC_CHECK_TYPE(ssize_t, int)
935 AC_CHECK_TYPE(wchar_t, unsigned short)
937 ############################################
938 # for cups support we need libcups, and a handful of header files
940 AC_ARG_ENABLE(cups,
941 [  --enable-cups           Turn on CUPS support (default=auto)])
943 if test x$enable_cups != xno; then
944         AC_PATH_PROG(CUPS_CONFIG, cups-config)
946         if test "x$CUPS_CONFIG" != x; then
947                 AC_DEFINE(HAVE_CUPS,1,[Whether we have CUPS])
948                 CFLAGS="$CFLAGS `$CUPS_CONFIG --cflags`"
949                 LDFLAGS="$LDFLAGS `$CUPS_CONFIG --ldflags`"
950                 PRINT_LIBS="$PRINT_LIBS `$CUPS_CONFIG --libs`"
951         elif test x"$enable_cups" = x"yes"; then
952                 AC_MSG_ERROR(Cups support required but cups-config not located.  Make sure cups-devel related files are installed.)
953         fi
956 AC_ARG_ENABLE(iprint,
957 [  --enable-iprint         Turn on iPrint support (default=yes if cups is yes)])
959 if test x$enable_iprint != xno; then
960         if test "x$CUPS_CONFIG" != x; then
961                 AC_DEFINE(HAVE_IPRINT,1,[Whether we have iPrint])
962         elif test x"$enable_iprint" = x"yes"; then
963                 AC_MSG_ERROR(iPrint support required but cups not enabled.  Make sure cups-devel related files are installed and that cups is enabled.)
964         fi
967 ############################################
968 # we need dlopen/dlclose/dlsym/dlerror for PAM, the password database plugins and the plugin loading code
969 AC_SEARCH_LIBS(dlopen, [dl])
970 # dlopen/dlclose/dlsym/dlerror will be checked again later and defines will be set then
972 ############################################
973 # check if the compiler can do immediate structures
974 AC_CACHE_CHECK([for immediate structures],samba_cv_immediate_structures, [
975     AC_TRY_COMPILE([
976 #include <stdio.h>],
978    typedef struct {unsigned x;} FOOBAR;
979    #define X_FOOBAR(x) ((FOOBAR) { x })
980    #define FOO_ONE X_FOOBAR(1)
981    FOOBAR f = FOO_ONE;   
982    static struct {
983         FOOBAR y; 
984         } f2[] = {
985                 {FOO_ONE}
986         };   
988         samba_cv_immediate_structures=yes,samba_cv_immediate_structures=no)])
989 if test x"$samba_cv_immediate_structures" = x"yes"; then
990    AC_DEFINE(HAVE_IMMEDIATE_STRUCTURES,1,[Whether the compiler supports immediate structures])
993 ############################################
994 # check if the compiler can do immediate structures
995 AC_CACHE_CHECK([if the compiler will optimize out function calls],samba_cv_optimize_out_funcation_calls, [
996     AC_TRY_LINK([
997 #include <stdio.h>],
999                 if (0) {
1000                    this_function_does_not_exist();
1001                 } else {
1002                   return 1;
1003                 }
1006         samba_cv_optimize_out_funcation_calls=yes,samba_cv_optimize_out_funcation_calls=no)])
1007 if test x"$samba_cv_optimize_out_funcation_calls" = x"yes"; then
1008    AC_DEFINE(HAVE_COMPILER_WILL_OPTIMIZE_OUT_FNS,1,[Whether the compiler will optimize out function calls])
1011 ############################################
1012 # check for unix domain sockets
1013 AC_CACHE_CHECK([for unix domain sockets],samba_cv_unixsocket, [
1014     AC_TRY_COMPILE([
1015 #include <sys/types.h>
1016 #include <stdlib.h>
1017 #include <stddef.h>
1018 #include <sys/socket.h>
1019 #include <sys/un.h>],
1021   struct sockaddr_un sunaddr; 
1022   sunaddr.sun_family = AF_UNIX;
1024         samba_cv_unixsocket=yes,samba_cv_unixsocket=no)])
1025 if test x"$samba_cv_unixsocket" = x"yes"; then
1026    AC_DEFINE(HAVE_UNIXSOCKET,1,[If we need to build with unixscoket support])
1030 AC_CACHE_CHECK([for socklen_t type],samba_cv_socklen_t, [
1031     AC_TRY_COMPILE([
1032 #include <sys/types.h>
1033 #if STDC_HEADERS
1034 #include <stdlib.h>
1035 #include <stddef.h>
1036 #endif
1037 #include <sys/socket.h>],[socklen_t i = 0],
1038         samba_cv_socklen_t=yes,samba_cv_socklen_t=no)])
1039 if test x"$samba_cv_socklen_t" = x"yes"; then
1040    AC_DEFINE(HAVE_SOCKLEN_T_TYPE,1,[Whether we have the variable type socklen_t])
1043 AC_CACHE_CHECK([for sig_atomic_t type],samba_cv_sig_atomic_t, [
1044     AC_TRY_COMPILE([
1045 #include <sys/types.h>
1046 #if STDC_HEADERS
1047 #include <stdlib.h>
1048 #include <stddef.h>
1049 #endif
1050 #include <signal.h>],[sig_atomic_t i = 0],
1051         samba_cv_sig_atomic_t=yes,samba_cv_sig_atomic_t=no)])
1052 if test x"$samba_cv_sig_atomic_t" = x"yes"; then
1053    AC_DEFINE(HAVE_SIG_ATOMIC_T_TYPE,1,[Whether we have the atomic_t variable type])
1056 AC_CACHE_CHECK([for struct timespec type],samba_cv_struct_timespec, [
1057     AC_TRY_COMPILE([
1058 #include <sys/types.h>
1059 #if STDC_HEADERS
1060 #include <stdlib.h>
1061 #include <stddef.h>
1062 #endif
1063 #if TIME_WITH_SYS_TIME
1064 # include <sys/time.h>
1065 # include <time.h>
1066 #else
1067 # if HAVE_SYS_TIME_H
1068 #  include <sys/time.h>
1069 # else
1070 #  include <time.h>
1071 # endif
1072 #endif
1073 #if HAVE_AIO_H
1074 #include <aio.h>
1075 #endif
1076 ],[struct timespec ts;],
1077         samba_cv_struct_timespec=yes,samba_cv_struct_timespec=no)])
1078 if test x"$samba_cv_struct_timespec" = x"yes"; then
1079    AC_DEFINE(HAVE_STRUCT_TIMESPEC,1,[Whether we have struct timespec])
1082 # stupid headers have the functions but no declaration. grrrr.
1083 AC_HAVE_DECL(errno, [#include <errno.h>])
1084 AC_HAVE_DECL(setresuid, [#include <unistd.h>])
1085 AC_HAVE_DECL(setresgid, [#include <unistd.h>])
1086 AC_HAVE_DECL(asprintf, [#include <stdio.h>])
1087 AC_HAVE_DECL(vasprintf, [#include <stdio.h>])
1088 AC_HAVE_DECL(vsnprintf, [#include <stdio.h>])
1089 AC_HAVE_DECL(snprintf, [#include <stdio.h>])
1091 # and glibc has setresuid under linux but the function does
1092 # nothing until kernel 2.1.44! very dumb.
1093 AC_CACHE_CHECK([for real setresuid],samba_cv_have_setresuid,[
1094     AC_TRY_RUN([#include <errno.h>
1095 main() { setresuid(1,1,1); setresuid(2,2,2); exit(errno==EPERM?0:1);}],
1096         samba_cv_have_setresuid=yes,samba_cv_have_setresuid=no,samba_cv_have_setresuid=cross)])
1097 if test x"$samba_cv_have_setresuid" = x"yes"; then
1098     AC_DEFINE(HAVE_SETRESUID,1,[Whether the system has setresuid])
1101 # Do the same check for setresguid...
1103 AC_CACHE_CHECK([for real setresgid],samba_cv_have_setresgid,[
1104     AC_TRY_RUN([#include <unistd.h>
1105 #include <errno.h>
1106 main() { errno = 0; setresgid(1,1,1); exit(errno != 0 ? (errno==EPERM ? 0 : 1) : 0);}],
1107         samba_cv_have_setresgid=yes,samba_cv_have_setresgid=no,samba_cv_have_setresgid=cross)])
1108 if test x"$samba_cv_have_setresgid" = x"yes"; then
1109     AC_DEFINE(HAVE_SETRESGID,1,[Whether the system has setresgid])
1112 AC_FUNC_MEMCMP
1114 ###############################################
1115 # Readline included by default unless explicitly asked not to
1116 test "${with_readline+set}" != "set" && with_readline=yes
1118 # test for where we get readline() from
1119 AC_MSG_CHECKING(whether to use readline)
1120 AC_ARG_WITH(readline,
1121 [  --with-readline[=DIR]     Look for readline include/libs in DIR (default=auto) ],
1122 [  case "$with_readline" in
1123   yes)
1124     AC_MSG_RESULT(yes)
1126     AC_CHECK_HEADERS(readline.h history.h readline/readline.h)
1127     AC_CHECK_HEADERS(readline/history.h)
1129     AC_CHECK_HEADERS(readline.h readline/readline.h,[
1130       for termlib in ncurses curses termcap terminfo termlib tinfo; do
1131        AC_CHECK_LIB(${termlib}, tgetent, [TERMLIBS="-l${termlib}"; break])
1132       done
1133       AC_CHECK_LIB(readline, rl_callback_handler_install,
1134        [TERMLIBS="-lreadline $TERMLIBS"
1135        AC_DEFINE(HAVE_LIBREADLINE,1,[Whether the system has readline])
1136        break], [TERMLIBS=], $TERMLIBS)])
1137     ;;
1138   no)
1139     AC_MSG_RESULT(no)
1140     ;;
1141   *)
1142     AC_MSG_RESULT(yes)
1144     # Needed for AC_CHECK_HEADERS and AC_CHECK_LIB to look at
1145     # alternate readline path
1146     _ldflags=${LDFLAGS}
1147     _cppflags=${CPPFLAGS}
1149     # Add additional search path
1150     LDFLAGS="-L$with_readline/lib $LDFLAGS"
1151     CPPFLAGS="-I$with_readline/include $CPPFLAGS"
1153     AC_CHECK_HEADERS(readline.h history.h readline/readline.h)
1154     AC_CHECK_HEADERS(readline/history.h)
1156     AC_CHECK_HEADERS(readline.h readline/readline.h,[
1157       for termlib in ncurses curses termcap terminfo termlib; do
1158        AC_CHECK_LIB(${termlib}, tgetent, [TERMLIBS="-l${termlib}"; break])
1159       done
1160       AC_CHECK_LIB(readline, rl_callback_handler_install,
1161        [TERMLDFLAGS="-L$with_readline/lib"
1162        TERMCPPFLAGS="-I$with_readline/include"
1163        CPPFLAGS="-I$with_readline/include $CPPFLAGS"
1164        TERMLIBS="-lreadline $TERMLIBS"
1165        AC_DEFINE(HAVE_LIBREADLINE,1,[Whether the system has readline])
1166        break], [TERMLIBS= CPPFLAGS=$_cppflags], $TERMLIBS)])
1168     LDFLAGS=$_ldflags
1169     ;;
1170   esac],
1171   AC_MSG_RESULT(no)
1173 AC_SUBST(TERMLIBS)
1174 AC_SUBST(TERMLDFLAGS)
1176 # The readline API changed slightly from readline3 to readline4, so
1177 # code will generate warnings on one of them unless we have a few
1178 # special cases.
1179 AC_CHECK_LIB(readline, rl_completion_matches,
1180              [AC_DEFINE(HAVE_NEW_LIBREADLINE, 1, 
1181                         [Do we have rl_completion_matches?])],
1182              [],
1183              [$TERMLIBS])
1185 # The following test taken from the cvs sources
1186 # If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
1187 # The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
1188 # libsocket.so which has a bad implementation of gethostbyname (it
1189 # only looks in /etc/hosts), so we only look for -lsocket if we need
1190 # it.
1191 AC_CHECK_FUNCS(connect)
1192 if test x"$ac_cv_func_connect" = x"no"; then
1193     case "$LIBS" in
1194     *-lnsl*) ;;
1195     *) AC_CHECK_LIB(nsl_s, connect) ;;
1196     esac
1197     case "$LIBS" in
1198     *-lnsl*) ;;
1199     *) AC_CHECK_LIB(nsl, connect) ;;
1200     esac
1201     case "$LIBS" in
1202     *-lsocket*) ;;
1203     *) AC_CHECK_LIB(socket, connect) ;;
1204     esac
1205     case "$LIBS" in
1206     *-linet*) ;;
1207     *) AC_CHECK_LIB(inet, connect) ;;
1208     esac
1209     dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
1210     dnl has been cached.
1211     if test x"$ac_cv_lib_socket_connect" = x"yes" || 
1212        test x"$ac_cv_lib_inet_connect" = x"yes"; then
1213         # ac_cv_func_connect=yes
1214         # don't!  it would cause AC_CHECK_FUNC to succeed next time configure is run
1215         AC_DEFINE(HAVE_CONNECT,1,[Whether the system has connect()])
1216     fi
1219 ###############################################
1220 # test for where we get yp_get_default_domain() from
1221 AC_SEARCH_LIBS(yp_get_default_domain, [nsl])
1222 AC_CHECK_FUNCS(yp_get_default_domain)
1224 # Check if we have execl, if not we need to compile smbrun.
1225 AC_CHECK_FUNCS(execl)
1226 if test x"$ac_cv_func_execl" = x"no"; then
1227     EXTRA_BIN_PROGS="$EXTRA_BIN_PROGS bin/smbrun\$(EXEEXT)"
1230 AC_CHECK_FUNCS(dlopen dlclose dlsym dlerror waitpid getcwd strdup strndup strnlen strtoul strerror chown fchown chmod fchmod chroot link mknod mknod64)
1231 AC_CHECK_FUNCS(fstat strchr utime utimes getrlimit fsync memset strlcpy strlcat setpgid)
1232 AC_CHECK_FUNCS(memmove vsnprintf snprintf asprintf vasprintf setsid glob strpbrk pipe crypt16 getauthuid)
1233 AC_CHECK_FUNCS(strftime sigprocmask sigblock sigaction sigset innetgr setnetgrent getnetgrent endnetgrent)
1234 AC_CHECK_FUNCS(initgroups select poll rdchk getgrnam getgrent pathconf realpath)
1235 AC_CHECK_FUNCS(setpriv setgidx setuidx setgroups sysconf mktime rename ftruncate chsize stat64 fstat64)
1236 AC_CHECK_FUNCS(lstat64 fopen64 atexit grantpt dup2 lseek64 ftruncate64)
1237 AC_CHECK_FUNCS(fseek64 fseeko64 ftell64 ftello64 setluid getpwanam setlinebuf)
1238 AC_CHECK_FUNCS(opendir64 readdir64 seekdir64 telldir64 rewinddir64 closedir64)
1239 AC_CHECK_FUNCS(srandom random srand rand setenv usleep strcasecmp fcvt fcvtl symlink readlink)
1240 AC_CHECK_FUNCS(syslog vsyslog timegm)
1241 AC_CHECK_FUNCS(setlocale nl_langinfo)
1242 AC_CHECK_FUNCS(nanosleep)
1243 # setbuffer, shmget, shm_open are needed for smbtorture
1244 AC_CHECK_FUNCS(setbuffer shmget shm_open backtrace_symbols)
1245 AC_CHECK_HEADERS(libexc.h)
1246 AC_CHECK_LIB(exc, trace_back_stack)
1248 # syscall() is needed for smbwrapper.
1249 AC_CHECK_FUNCS(syscall)
1251 AC_CHECK_FUNCS(_dup _dup2 _opendir _readdir _seekdir _telldir _closedir)
1252 AC_CHECK_FUNCS(__dup __dup2 __opendir __readdir __seekdir __telldir __closedir)
1253 AC_CHECK_FUNCS(__getcwd _getcwd)
1254 AC_CHECK_FUNCS(__xstat __fxstat __lxstat)
1255 AC_CHECK_FUNCS(_stat _lstat _fstat __stat __lstat __fstat)
1256 AC_CHECK_FUNCS(_acl __acl _facl __facl _open __open _chdir __chdir)
1257 AC_CHECK_FUNCS(_close __close _fchdir __fchdir _fcntl __fcntl)
1258 AC_CHECK_FUNCS(getdents _getdents __getdents _lseek __lseek _read __read)
1259 AC_CHECK_FUNCS(getdirentries _write __write _fork __fork)
1260 AC_CHECK_FUNCS(_stat64 __stat64 _fstat64 __fstat64 _lstat64 __lstat64)
1261 AC_CHECK_FUNCS(__sys_llseek llseek _llseek __llseek readdir64 _readdir64 __readdir64)
1262 AC_CHECK_FUNCS(pread _pread __pread pread64 _pread64 __pread64)
1263 AC_CHECK_FUNCS(pwrite _pwrite __pwrite pwrite64 _pwrite64 __pwrite64)
1264 AC_CHECK_FUNCS(open64 _open64 __open64 creat64)
1265 AC_CHECK_FUNCS(prctl)
1267 AC_TRY_COMPILE([
1268 #ifdef HAVE_SYS_PRCTL_H
1269 #include <sys/prctl.h>
1270 #endif
1272 [int i; i = prtcl(0); ],
1273 AC_DEFINE(HAVE_PRCTL, 1, [Whether prctl is available]),[])
1278 case "$host_os" in
1279     *linux*)
1280        # glibc <= 2.3.2 has a broken getgrouplist
1281        AC_TRY_RUN([
1282 #include <unistd.h>
1283 #include <sys/utsname.h>
1284 main() {
1285        /* glibc up to 2.3 has a broken getgrouplist */
1286 #if defined(__GLIBC__) && defined(__GLIBC_MINOR__)
1287        int libc_major = __GLIBC__;
1288        int libc_minor = __GLIBC_MINOR__;
1290        if (libc_major < 2)
1291               exit(1);
1292        if ((libc_major == 2) && (libc_minor <= 3))
1293               exit(1);
1294 #endif
1295        exit(0);
1297 ], [linux_getgrouplist_ok=yes], [linux_getgrouplist_ok=no])
1298        if test x"$linux_getgrouplist_ok" = x"yes"; then
1299           AC_DEFINE(HAVE_GETGROUPLIST, 1, [Have good getgrouplist])
1300        fi
1301        ;;
1302     *)
1303        AC_CHECK_FUNCS(getgrouplist)
1304        ;;
1305 esac
1308 # stat64 family may need <sys/stat.h> on some systems, notably ReliantUNIX
1311 if test x$ac_cv_func_stat64 = xno ; then
1312   AC_MSG_CHECKING([for stat64 in <sys/stat.h>])
1313   AC_TRY_LINK([
1314 #if defined(HAVE_UNISTD_H)
1315 #include <unistd.h>
1316 #endif
1317 #include <sys/stat.h>
1318 ], [struct stat64 st64; exit(stat64(".",&st64));], [ac_cv_func_stat64=yes])
1319   AC_MSG_RESULT([$ac_cv_func_stat64])
1320   if test x$ac_cv_func_stat64 = xyes ; then
1321     AC_DEFINE(HAVE_STAT64,1,[Whether stat64() is available])
1322   fi
1325 if test x$ac_cv_func_lstat64 = xno ; then
1326   AC_MSG_CHECKING([for lstat64 in <sys/stat.h>])
1327   AC_TRY_LINK([
1328 #if defined(HAVE_UNISTD_H)
1329 #include <unistd.h>
1330 #endif
1331 #include <sys/stat.h>
1332 ], [struct stat64 st64; exit(lstat64(".",&st64));], [ac_cv_func_lstat64=yes])
1333   AC_MSG_RESULT([$ac_cv_func_lstat64])
1334   if test x$ac_cv_func_lstat64 = xyes ; then
1335     AC_DEFINE(HAVE_LSTAT64,[Whether lstat64() is available])
1336   fi
1339 if test x$ac_cv_func_fstat64 = xno ; then
1340   AC_MSG_CHECKING([for fstat64 in <sys/stat.h>])
1341   AC_TRY_LINK([
1342 #if defined(HAVE_UNISTD_H)
1343 #include <unistd.h>
1344 #endif
1345 #include <sys/stat.h>
1346 ], [struct stat64 st64; exit(fstat64(0,&st64));], [ac_cv_func_fstat64=yes])
1347   AC_MSG_RESULT([$ac_cv_func_fstat64])
1348   if test x$ac_cv_func_fstat64 = xyes ; then
1349     AC_DEFINE(HAVE_FSTAT64,1,[Whether fstat64() is available])
1350   fi
1353 #################################################
1354 # Check whether struct stat has timestamps with sub-second resolution.
1355 # At least IRIX and Solaris have these.
1357 # We check that 
1358 #       all of st_mtim, st_atim and st_ctim exist
1359 #       all of the members are in fact of type struct timespec
1361 # There is some conflicting standards weirdness about whether we should use
1362 # "struct timespec" or "timespec_t". Linux doesn't have timespec_t, so we
1363 # prefer struct timespec.
1365 AC_CACHE_CHECK([whether struct stat has sub-second timestamps], samba_stat_hires,
1366     [
1367         AC_TRY_COMPILE(
1368             [
1369 #if TIME_WITH_SYS_TIME
1370 # include <sys/time.h>
1371 # include <time.h>
1372 #else
1373 # if HAVE_SYS_TIME_H
1374 #  include <sys/time.h>
1375 # else
1376 #  include <time.h>
1377 # endif
1378 #endif
1379 #ifdef HAVE_SYS_STAT_H
1380 #include <sys/stat.h>
1381 #endif
1382             ],
1383             [
1384                 struct timespec t;
1385                 struct stat s = {0};
1386                 t.tv_sec = s.st_mtim.tv_sec;
1387                 t.tv_nsec = s.st_mtim.tv_nsec;
1388                 t.tv_sec = s.st_ctim.tv_sec;
1389                 t.tv_nsec = s.st_ctim.tv_nsec;
1390                 t.tv_sec = s.st_atim.tv_sec;
1391                 t.tv_nsec = s.st_atim.tv_nsec;
1392             ],
1393             samba_stat_hires=yes, samba_stat_hires=no)
1394     ])
1396 if test x"$samba_stat_hires" = x"yes" ; then
1397     AC_DEFINE(HAVE_STAT_ST_MTIM, 1, [whether struct stat contains st_mtim])
1398     AC_DEFINE(HAVE_STAT_ST_ATIM, 1, [whether struct stat contains st_atim])
1399     AC_DEFINE(HAVE_STAT_ST_CTIM, 1, [whether struct stat contains st_ctim])
1400     AC_DEFINE(HAVE_STAT_HIRES_TIMESTAMPS, 1,
1401             [whether struct stat has sub-second timestamps])
1404 AC_CACHE_CHECK([whether struct stat has sub-second timestamps without struct timespec], samba_stat_hires_notimespec,
1405     [
1406         AC_TRY_COMPILE(
1407             [
1408 #if TIME_WITH_SYS_TIME
1409 # include <sys/time.h>
1410 # include <time.h>
1411 #else
1412 # if HAVE_SYS_TIME_H
1413 #  include <sys/time.h>
1414 # else
1415 #  include <time.h>
1416 # endif
1417 #endif
1418 #ifdef HAVE_SYS_STAT_H
1419 #include <sys/stat.h>
1420 #endif
1421             ],
1422             [
1423                 struct timespec t;
1424                 struct stat s = {0};
1425                 t.tv_sec = s.st_mtime;
1426                 t.tv_nsec = s.st_mtimensec;
1427                 t.tv_sec = s.st_ctime;
1428                 t.tv_nsec = s.st_ctimensec;
1429                 t.tv_sec = s.st_atime;
1430                 t.tv_nsec = s.st_atimensec;
1431             ],
1432             samba_stat_hires=yes, samba_stat_hires=no)
1433     ])
1435 if test x"$samba_stat_hires_notimespec" = x"yes" ; then
1436     AC_DEFINE(HAVE_STAT_ST_MTIMENSEC, 1, [whether struct stat contains st_mtimensec])
1437     AC_DEFINE(HAVE_STAT_ST_ATIMENSEC, 1, [whether struct stat contains st_atimensec])
1438     AC_DEFINE(HAVE_STAT_ST_CTIMENSEC, 1, [whether struct stat contains st_ctimensec])
1439     AC_DEFINE(HAVE_STAT_HIRES_TIMESTAMPS, 1,
1440             [whether struct stat has sub-second timestamps without struct timespec])
1443 #####################################
1444 # we might need the resolv library on some systems
1445 AC_CHECK_LIB(resolv, dn_expand)
1448 # Check for the functions putprpwnam, set_auth_parameters,
1449 # getspnam, bigcrypt and getprpwnam in -lsec and -lsecurity
1450 # Needed for OSF1 and HPUX.
1453 AC_LIBTESTFUNC(security, putprpwnam)
1454 AC_LIBTESTFUNC(sec, putprpwnam)
1456 AC_LIBTESTFUNC(security, set_auth_parameters)
1457 AC_LIBTESTFUNC(sec, set_auth_parameters)
1459 # UnixWare 7.x has its getspnam in -lgen
1460 AC_LIBTESTFUNC(gen, getspnam)
1462 AC_LIBTESTFUNC(security, getspnam)
1463 AC_LIBTESTFUNC(sec, getspnam)
1465 AC_LIBTESTFUNC(security, bigcrypt)
1466 AC_LIBTESTFUNC(sec, bigcrypt)
1468 AC_LIBTESTFUNC(security, getprpwnam)
1469 AC_LIBTESTFUNC(sec, getprpwnam)
1471 ############################################
1472 # Check if we have libattr
1473 case "$host_os" in
1474   *osf*)
1475         AC_SEARCH_LIBS(getproplist, [proplist])
1476         AC_CHECK_FUNCS(getproplist fgetproplist setproplist fsetproplist)
1477         AC_CHECK_FUNCS(delproplist fdelproplist add_proplist_entry get_proplist_entry)
1478         AC_CHECK_FUNCS(sizeof_proplist_entry)
1479   ;;
1480   *)
1481         AC_SEARCH_LIBS(getxattr, [attr])
1482         AC_CHECK_FUNCS(getxattr lgetxattr fgetxattr listxattr llistxattr)
1483         AC_CHECK_FUNCS(getea fgetea lgetea listea flistea llistea)
1484         AC_CHECK_FUNCS(removeea fremoveea lremoveea setea fsetea lsetea)
1485         AC_CHECK_FUNCS(flistxattr removexattr lremovexattr fremovexattr)
1486         AC_CHECK_FUNCS(setxattr lsetxattr fsetxattr)
1487         AC_CHECK_FUNCS(attr_get attr_list attr_set attr_remove)
1488         AC_CHECK_FUNCS(attr_getf attr_listf attr_setf attr_removef)
1489   ;;
1490 esac
1492 # Check if we have extattr
1493 case "$host_os" in
1494   *freebsd4* | *dragonfly* )
1495     AC_DEFINE(BROKEN_EXTATTR, 1, [Does extattr API work])
1496     ;;
1497   *)
1498     AC_CHECK_FUNCS(extattr_delete_fd extattr_delete_file extattr_delete_link)
1499     AC_CHECK_FUNCS(extattr_get_fd extattr_get_file extattr_get_link)
1500     AC_CHECK_FUNCS(extattr_list_fd extattr_list_file extattr_list_link)
1501     AC_CHECK_FUNCS(extattr_set_fd extattr_set_file extattr_set_link)
1502     ;;
1503 esac
1505 # Assume non-shared by default and override below
1506 BLDSHARED="false"
1508 # these are the defaults, good for lots of systems
1509 HOST_OS="$host_os"
1510 LDSHFLAGS="-shared"
1511 SONAMEFLAG="#"
1512 NSSSONAMEVERSIONSUFFIX=""
1513 SHLD="\${CC} \${CFLAGS}"
1514 PICFLAGS=""
1515 PICSUFFIX="po"
1516 SHLIBEXT="so"
1518 if test "$enable_shared" = "yes"; then
1519   # this bit needs to be modified for each OS that is suported by
1520   # smbwrapper. You need to specify how to create a shared library and
1521   # how to compile C code to produce PIC object files
1523   AC_MSG_CHECKING([ability to build shared libraries])
1525   # and these are for particular systems
1526   case "$host_os" in
1527                 *linux*)   AC_DEFINE(LINUX,1,[Whether the host os is linux])
1528                         BLDSHARED="true"
1529                         if test "${ac_cv_gnu_ld_no_default_allow_shlib_undefined}" = "yes"; then
1530                                 LDSHFLAGS="-shared -Wl,-Bsymbolic -Wl,--allow-shlib-undefined" 
1531                         else
1532                                 LDSHFLAGS="-shared -Wl,-Bsymbolic" 
1533                         fi
1534                         DYNEXP="-Wl,--export-dynamic"
1535                         PICFLAGS="-fPIC"
1536                         SONAMEFLAG="-Wl,-soname="
1537                         NSSSONAMEVERSIONSUFFIX=".2"
1538                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1539                         ;;
1540                 *solaris*) AC_DEFINE(SUNOS5,1,[Whether the host os is solaris])
1541                         BLDSHARED="true"
1542                         LDSHFLAGS="-G"
1543                         SONAMEFLAG="-h "
1544                         if test "${GCC}" = "yes"; then
1545                                 PICFLAGS="-fPIC"
1546                                 SONAMEFLAG="-Wl,-soname="
1547                                 NSSSONAMEVERSIONSUFFIX=".1"
1548                                 if test "${ac_cv_prog_gnu_ld}" = "yes"; then
1549                                         DYNEXP="-Wl,-E"
1550                                 fi
1551                         else
1552                                 PICFLAGS="-KPIC"
1553                                 ## ${CFLAGS} added for building 64-bit shared 
1554                                 ## libs using Sun's Compiler
1555                                 LDSHFLAGS="-G \${CFLAGS}"
1556                                 PICSUFFIX="po.o"
1557                         fi
1558                         AC_DEFINE(STAT_ST_BLOCKSIZE,512,[The size of a block])
1559                         AC_DEFINE(BROKEN_GETGRNAM,1,[Does getgrnam work correctly])
1560                         ;;
1561                 *sunos*) AC_DEFINE(SUNOS4,1,[Whether the host os is sunos4])
1562                         BLDSHARED="true"
1563                         LDSHFLAGS="-G"
1564                         SONAMEFLAG="-Wl,-h,"
1565                         PICFLAGS="-KPIC"   # Is this correct for SunOS
1566                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1567                         AC_DEFINE(BROKEN_GETGRNAM,1,[Does getgrnam work correctly])
1568                         ;;
1569                 *netbsd* | *freebsd* | *dragonfly* )  
1570                         BLDSHARED="true"
1571                         LDSHFLAGS="-shared"
1572                         DYNEXP="-Wl,--export-dynamic"
1573                         SONAMEFLAG="-Wl,-soname,"
1574                         PICFLAGS="-fPIC -DPIC"
1575                         AC_DEFINE(STAT_ST_BLOCKSIZE,512,[The size of a block])
1576                         AC_DEFINE(BROKEN_GETGRNAM,1,[Does getgrnam work correctly])
1577                         ;;
1578                 *openbsd*)  BLDSHARED="true"
1579                         LDSHFLAGS="-shared"
1580                         DYNEXP="-Wl,-Bdynamic"
1581                         SONAMEFLAG="-Wl,-soname,"
1582                         PICFLAGS="-fPIC"
1583                         AC_DEFINE(STAT_ST_BLOCKSIZE,512,[The size of a block])
1584                         AC_DEFINE(BROKEN_GETGRNAM,1,[Does getgrnam work correctly])
1585                         ;;
1586                 *irix*) AC_DEFINE(IRIX,1,[Whether the host os is irix])
1587                         case "$host_os" in
1588                         *irix6*) AC_DEFINE(IRIX6,1,[Whether the host os is irix6])
1589                         ;;
1590                         esac
1591                         BLDSHARED="true"
1592                         LDSHFLAGS="-set_version sgi1.0 -shared"
1593                         SONAMEFLAG="-soname "
1594                         SHLD="\${LD}"
1595                         if test "${GCC}" = "yes"; then
1596                                 PICFLAGS="-fPIC"
1597                         else 
1598                                 PICFLAGS="-KPIC"
1599                         fi
1600                         AC_DEFINE(STAT_ST_BLOCKSIZE,512,[The size of a block])
1601                         ;;
1602                 *aix*) AC_DEFINE(AIX,1,[Whether the host os is aix])
1603                         BLDSHARED="true"
1604                         LDSHFLAGS="-Wl,-G,-bexpall"
1605                         DYNEXP="-Wl,-brtl,-bexpall,-bbigtoc"
1606                         PICFLAGS="-O2"
1607                         if test "${GCC}" != "yes"; then
1608                                 ## for funky AIX compiler using strncpy()
1609                                 CFLAGS="$CFLAGS -D_LINUX_SOURCE_COMPAT -qmaxmem=32000"
1610                         fi
1612                         AC_DEFINE(STAT_ST_BLOCKSIZE,DEV_BSIZE,[The size of a block])
1613                         AC_DEFINE(BROKEN_STRNLEN,1,[Does strnlen work correctly])
1614                         AC_DEFINE(BROKEN_STRNDUP,1,[Does strndup work correctly])
1615                         ;;
1616                 *hpux*) AC_DEFINE(HPUX,1,[Whether the host os is HPUX])
1617                         # Use special PIC flags for the native HP-UX compiler.
1618                         if test $ac_cv_prog_cc_Ae = yes; then
1619                                 BLDSHARED="true"
1620                                 SHLD="cc"
1621                                 LDSHFLAGS="-b -Wl,-B,symbolic,-b,-z"
1622                                 SONAMEFLAG="-Wl,+h "
1623                                 PICFLAGS="+z"
1624                         elif test "${GCC}" = "yes"; then
1625                                 PICFLAGS="-fPIC"
1626                         fi
1627                         if test "$host_cpu" = "ia64"; then
1628                                 SHLIBEXT="so"
1629                                 DYNEXP="-Wl,-E,+b/usr/local/lib/hpux32:/usr/lib/hpux32"
1630                         else
1631                                 SHLIBEXT="sl"
1632                                 DYNEXP="-Wl,-E,+b/usr/local/lib:/usr/lib"
1633                         fi
1634                         AC_DEFINE(STAT_ST_BLOCKSIZE,8192,[The size of a block])
1635                         AC_DEFINE(POSIX_ACL_NEEDS_MASK,1,[Does a POSIX ACL need a mask element])
1636                         ;;
1637                 *qnx*) AC_DEFINE(QNX,1,[Whether the host os is qnx])
1638                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1639                         ;;
1640                 *osf*) AC_DEFINE(OSF1,1,[Whether the host os is osf1])
1641                         BLDSHARED="true"
1642                         LDSHFLAGS="-shared"
1643                         SONAMEFLAG="-Wl,-soname,"
1644                         PICFLAGS="-fPIC"
1645                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1646                         AC_DEFINE(BROKEN_GETGRNAM,1,[Does getgrnam work correctly])
1647                         ;;
1648                 *sco*) AC_DEFINE(SCO,1,[Whether the host os is sco unix])
1649                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1650                         ;;
1651                 *unixware*) AC_DEFINE(UNIXWARE,1,[Whether the host os is unixware])
1652                         BLDSHARED="true"
1653                         LDSHFLAGS="-shared"
1654                         SONAMEFLAG="-Wl,-soname,"
1655                         PICFLAGS="-KPIC"
1656                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1657                         ;;
1658                 *next2*) AC_DEFINE(NEXT2,1,[Whether the host os is NeXT v2])
1659                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1660                         ;;
1661                 *dgux*) AC_CHECK_PROG( ROFF, groff, [groff -etpsR -Tascii -man])
1662                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1663                         ;;
1664                 *sysv4*) AC_DEFINE(SYSV,1,[Whether this is a system V system])
1665                         case "$host" in
1666                                 *-univel-*)     if [ test "$GCC" != yes ]; then
1667                                                 AC_DEFINE(HAVE_MEMSET,1,[Whether memset() is available])
1668                                         fi
1669                                         LDSHFLAGS="-G"
1670                                         DYNEXP="-Bexport"
1671                                 ;;
1672                                 *mips-sni-sysv4*) AC_DEFINE(RELIANTUNIX,1,[Whether the host os is reliantunix]);;
1673                         esac
1674                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1675                         ;;
1677                 *sysv5*) AC_DEFINE(SYSV,1,[Whether this is a system V system])
1678                         if [ test "$GCC" != yes ]; then
1679                                 AC_DEFINE(HAVE_MEMSET,1,[Whether memset() is available])
1680                         fi
1681                         LDSHFLAGS="-G"
1682                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1683                         ;;
1684                 *vos*) AC_DEFINE(STAT_ST_BLOCKSIZE,4096)
1685                         BLDSHARED="false"
1686                         LDSHFLAGS=""
1687                         ;;
1689                 *darwin*)   AC_DEFINE(DARWINOS,1,[Whether the host os is Darwin/MacOSX])
1690                         BLDSHARED="true"
1691                         LDSHFLAGS="-bundle -flat_namespace -undefined suppress"
1692                         SHLIBEXT="dylib"
1693                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1694                         ;;
1696                 *)
1697                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1698                         ;;
1699   esac
1700   AC_SUBST(DYNEXP)
1701   AC_MSG_RESULT($BLDSHARED)
1702   AC_MSG_CHECKING([linker flags for shared libraries])
1703   AC_MSG_RESULT([$LDSHFLAGS])
1704   AC_MSG_CHECKING([compiler flags for position-independent code])
1705   AC_MSG_RESULT([$PICFLAGS])
1708 #######################################################
1709 # test whether building a shared library actually works
1710 if test $BLDSHARED = true; then
1711 AC_CACHE_CHECK([whether building shared libraries actually works], 
1712                [ac_cv_shlib_works],[
1713    # try building a trivial shared library
1714    ac_cv_shlib_works=no
1715    # The $SHLD and $LDSHFLAGS variables may contain references to other
1716    # variables so they need to be eval'ed.
1717    $CC $CPPFLAGS $CFLAGS $PICFLAGS -c -o \
1718         shlib.$PICSUFFIX ${srcdir-.}/tests/shlib.c && \
1719    `eval echo $SHLD` `eval echo $LDSHFLAGS` -o "shlib.$SHLIBEXT" \
1720         shlib.$PICSUFFIX && ac_cv_shlib_works=yes
1721    rm -f "shlib.$SHLIBEXT" shlib.$PICSUFFIX
1723 if test $ac_cv_shlib_works = no; then
1724    BLDSHARED=false
1728 ################
1730 AC_CACHE_CHECK([for long long],samba_cv_have_longlong,[
1731 AC_TRY_RUN([#include <stdio.h>
1732 main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
1733 samba_cv_have_longlong=yes,samba_cv_have_longlong=no,samba_cv_have_longlong=cross)])
1734 if test x"$samba_cv_have_longlong" = x"yes"; then
1735     AC_DEFINE(HAVE_LONGLONG,1,[Whether the host supports long long's])
1739 # Check if the compiler supports the LL prefix on long long integers.
1740 # AIX needs this.
1742 AC_CACHE_CHECK([for LL suffix on long long integers],samba_cv_compiler_supports_ll, [
1743     AC_TRY_COMPILE([#include <stdio.h>],[long long i = 0x8000000000LL],
1744         samba_cv_compiler_supports_ll=yes,samba_cv_compiler_supports_ll=no)])
1745 if test x"$samba_cv_compiler_supports_ll" = x"yes"; then
1746    AC_DEFINE(COMPILER_SUPPORTS_LL,1,[Whether the compiler supports the LL prefix on long long integers])
1749   
1750 AC_CACHE_CHECK([for 64 bit off_t],samba_cv_SIZEOF_OFF_T,[
1751 AC_TRY_RUN([#include <stdio.h>
1752 #include <sys/stat.h>
1753 main() { exit((sizeof(off_t) == 8) ? 0 : 1); }],
1754 samba_cv_SIZEOF_OFF_T=yes,samba_cv_SIZEOF_OFF_T=no,samba_cv_SIZEOF_OFF_T=cross)])
1755 if test x"$samba_cv_SIZEOF_OFF_T" = x"yes"; then
1756     AC_DEFINE(SIZEOF_OFF_T,8,[The size of the 'off_t' type])
1759 AC_CACHE_CHECK([for off64_t],samba_cv_HAVE_OFF64_T,[
1760 AC_TRY_RUN([
1761 #if defined(HAVE_UNISTD_H)
1762 #include <unistd.h>
1763 #endif
1764 #include <stdio.h>
1765 #include <sys/stat.h>
1766 main() { struct stat64 st; off64_t s; if (sizeof(off_t) == sizeof(off64_t)) exit(1); exit((lstat64("/dev/null", &st)==0)?0:1); }],
1767 samba_cv_HAVE_OFF64_T=yes,samba_cv_HAVE_OFF64_T=no,samba_cv_HAVE_OFF64_T=cross)])
1768 if test x"$samba_cv_HAVE_OFF64_T" = x"yes"; then
1769     AC_DEFINE(HAVE_OFF64_T,1,[Whether off64_t is available])
1772 AC_CACHE_CHECK([for 64 bit ino_t],samba_cv_SIZEOF_INO_T,[
1773 AC_TRY_RUN([
1774 #if defined(HAVE_UNISTD_H)
1775 #include <unistd.h>
1776 #endif
1777 #include <stdio.h>
1778 #include <sys/stat.h>
1779 main() { exit((sizeof(ino_t) == 8) ? 0 : 1); }],
1780 samba_cv_SIZEOF_INO_T=yes,samba_cv_SIZEOF_INO_T=no,samba_cv_SIZEOF_INO_T=cross)])
1781 if test x"$samba_cv_SIZEOF_INO_T" = x"yes"; then
1782     AC_DEFINE(SIZEOF_INO_T,8,[The size of the 'ino_t' type])
1785 AC_CACHE_CHECK([for ino64_t],samba_cv_HAVE_INO64_T,[
1786 AC_TRY_RUN([
1787 #if defined(HAVE_UNISTD_H)
1788 #include <unistd.h>
1789 #endif
1790 #include <stdio.h>
1791 #include <sys/stat.h>
1792 main() { struct stat64 st; ino64_t s; if (sizeof(ino_t) == sizeof(ino64_t)) exit(1); exit((lstat64("/dev/null", &st)==0)?0:1); }],
1793 samba_cv_HAVE_INO64_T=yes,samba_cv_HAVE_INO64_T=no,samba_cv_HAVE_INO64_T=cross)])
1794 if test x"$samba_cv_HAVE_INO64_T" = x"yes"; then
1795     AC_DEFINE(HAVE_INO64_T,1,[Whether the 'ino64_t' type is available])
1798 AC_CACHE_CHECK([for 64 bit dev_t],samba_cv_SIZEOF_DEV_T,[
1799 AC_TRY_RUN([
1800 #if defined(HAVE_UNISTD_H)
1801 #include <unistd.h>
1802 #endif
1803 #include <stdio.h>
1804 #include <sys/stat.h>
1805 main() { exit((sizeof(dev_t) == 8) ? 0 : 1); }],
1806 samba_cv_SIZEOF_DEV_T=yes,samba_cv_SIZEOF_DEV_T=no,samba_cv_SIZEOF_DEV_T=cross)])
1807 if test x"$samba_cv_SIZEOF_DEV_T" = x"yes"; then
1808     AC_DEFINE(SIZEOF_DEV_T,8,[The size of the 'dev_t' type])
1811 AC_CACHE_CHECK([for dev64_t],samba_cv_HAVE_DEV64_T,[
1812 AC_TRY_RUN([
1813 #if defined(HAVE_UNISTD_H)
1814 #include <unistd.h>
1815 #endif
1816 #include <stdio.h>
1817 #include <sys/stat.h>
1818 main() { struct stat64 st; dev64_t s; if (sizeof(dev_t) == sizeof(dev64_t)) exit(1); exit((lstat64("/dev/null", &st)==0)?0:1); }],
1819 samba_cv_HAVE_DEV64_T=yes,samba_cv_HAVE_DEV64_T=no,samba_cv_HAVE_DEV64_T=cross)])
1820 if test x"$samba_cv_HAVE_DEV64_T" = x"yes"; then
1821     AC_DEFINE(HAVE_DEV64_T,1,[Whether the 'dev64_t' type is available])
1824 AC_CACHE_CHECK([for struct dirent64],samba_cv_HAVE_STRUCT_DIR64,[
1825 AC_TRY_COMPILE([
1826 #if defined(HAVE_UNISTD_H)
1827 #include <unistd.h>
1828 #endif
1829 #include <sys/types.h>
1830 #include <dirent.h>],
1831 [DIR64 de;],
1832 samba_cv_HAVE_STRUCT_DIR64=yes,samba_cv_HAVE_STRUCT_DIR64=no)])
1833 if test x"$samba_cv_HAVE_STRUCT_DIR64" = x"yes" && test x"$ac_cv_func_readdir64" = x"yes"; then
1834     AC_DEFINE(HAVE_STRUCT_DIR64,1,[Whether the 'DIR64' abstract data type is available])
1837 AC_CACHE_CHECK([for struct dirent64],samba_cv_HAVE_STRUCT_DIRENT64,[
1838 AC_TRY_COMPILE([
1839 #if defined(HAVE_UNISTD_H)
1840 #include <unistd.h>
1841 #endif
1842 #include <sys/types.h>
1843 #include <dirent.h>],
1844 [struct dirent64 de;],
1845 samba_cv_HAVE_STRUCT_DIRENT64=yes,samba_cv_HAVE_STRUCT_DIRENT64=no)])
1846 if test x"$samba_cv_HAVE_STRUCT_DIRENT64" = x"yes" && test x"$ac_cv_func_readdir64" = x"yes"; then
1847     AC_DEFINE(HAVE_STRUCT_DIRENT64,1,[Whether the 'dirent64' struct is available])
1850 AC_CACHE_CHECK([for major macro],samba_cv_HAVE_DEVICE_MAJOR_FN,[
1851 AC_TRY_RUN([
1852 #if defined(HAVE_UNISTD_H)
1853 #include <unistd.h>
1854 #endif
1855 #include <sys/types.h>
1856 main() { dev_t dev; int i = major(dev); return 0; }],
1857 samba_cv_HAVE_DEVICE_MAJOR_FN=yes,samba_cv_HAVE_DEVICE_MAJOR_FN=no,samba_cv_HAVE_DEVICE_MAJOR_FN=cross)])
1858 if test x"$samba_cv_HAVE_DEVICE_MAJOR_FN" = x"yes"; then
1859     AC_DEFINE(HAVE_DEVICE_MAJOR_FN,1,[Whether the major macro for dev_t is available])
1862 AC_CACHE_CHECK([for minor macro],samba_cv_HAVE_DEVICE_MINOR_FN,[
1863 AC_TRY_RUN([
1864 #if defined(HAVE_UNISTD_H)
1865 #include <unistd.h>
1866 #endif
1867 #include <sys/types.h>
1868 main() { dev_t dev; int i = minor(dev); return 0; }],
1869 samba_cv_HAVE_DEVICE_MINOR_FN=yes,samba_cv_HAVE_DEVICE_MINOR_FN=no,samba_cv_HAVE_DEVICE_MINOR_FN=cross)])
1870 if test x"$samba_cv_HAVE_DEVICE_MINOR_FN" = x"yes"; then
1871     AC_DEFINE(HAVE_DEVICE_MINOR_FN,1,[Whether the minor macro for dev_t is available])
1874 AC_CACHE_CHECK([for makedev macro],samba_cv_HAVE_MAKEDEV,[
1875 AC_TRY_RUN([
1876 #if defined(HAVE_UNISTD_H)
1877 #include <unistd.h>
1878 #endif
1879 #include <sys/types.h>
1880 main() { dev_t dev = makedev(1,2); return 0; }],
1881 samba_cv_HAVE_MAKEDEV=yes,samba_cv_HAVE_MAKEDEV=no,samba_cv_HAVE_MAKEDEV=cross)])
1882 if test x"$samba_cv_HAVE_MAKEDEV" = x"yes"; then
1883     AC_DEFINE(HAVE_MAKEDEV,1,[Whether the macro for makedev is available])
1886 AC_CACHE_CHECK([for unsigned char],samba_cv_HAVE_UNSIGNED_CHAR,[
1887 AC_TRY_RUN([#include <stdio.h>
1888 main() { char c; c=250; exit((c > 0)?0:1); }],
1889 samba_cv_HAVE_UNSIGNED_CHAR=yes,samba_cv_HAVE_UNSIGNED_CHAR=no,samba_cv_HAVE_UNSIGNED_CHAR=cross)])
1890 if test x"$samba_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then
1891     AC_DEFINE(HAVE_UNSIGNED_CHAR,1,[Whether the 'unsigned char' type is available])
1894 AC_CACHE_CHECK([for sin_len in sock],samba_cv_HAVE_SOCK_SIN_LEN,[
1895 AC_TRY_COMPILE([#include <sys/types.h>
1896 #include <sys/socket.h>
1897 #include <netinet/in.h>],
1898 [struct sockaddr_in sock; sock.sin_len = sizeof(sock);],
1899 samba_cv_HAVE_SOCK_SIN_LEN=yes,samba_cv_HAVE_SOCK_SIN_LEN=no)])
1900 if test x"$samba_cv_HAVE_SOCK_SIN_LEN" = x"yes"; then
1901     AC_DEFINE(HAVE_SOCK_SIN_LEN,1,[Whether the sockaddr_in struct has a sin_len property])
1904 AC_CACHE_CHECK([whether seekdir returns void],samba_cv_SEEKDIR_RETURNS_VOID,[
1905 AC_TRY_COMPILE([#include <sys/types.h>
1906 #include <dirent.h>
1907 void seekdir(DIR *d, long loc) { return; }],[return 0;],
1908 samba_cv_SEEKDIR_RETURNS_VOID=yes,samba_cv_SEEKDIR_RETURNS_VOID=no)])
1909 if test x"$samba_cv_SEEKDIR_RETURNS_VOID" = x"yes"; then
1910     AC_DEFINE(SEEKDIR_RETURNS_VOID,1,[Whether seekdir returns void])
1913 AC_CACHE_CHECK([for __FUNCTION__ macro],samba_cv_HAVE_FUNCTION_MACRO,[
1914 AC_TRY_COMPILE([#include <stdio.h>], [printf("%s\n", __FUNCTION__);],
1915 samba_cv_HAVE_FUNCTION_MACRO=yes,samba_cv_HAVE_FUNCTION_MACRO=no)])
1916 if test x"$samba_cv_HAVE_FUNCTION_MACRO" = x"yes"; then
1917     AC_DEFINE(HAVE_FUNCTION_MACRO,1,[Whether there is a __FUNCTION__ macro])
1920 AC_CACHE_CHECK([if gettimeofday takes tz argument],samba_cv_HAVE_GETTIMEOFDAY_TZ,[
1921 AC_TRY_RUN([
1922 #include <sys/time.h>
1923 #include <unistd.h>
1924 main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}],
1925            samba_cv_HAVE_GETTIMEOFDAY_TZ=yes,samba_cv_HAVE_GETTIMEOFDAY_TZ=no,samba_cv_HAVE_GETTIMEOFDAY_TZ=cross)])
1926 if test x"$samba_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then
1927     AC_DEFINE(HAVE_GETTIMEOFDAY_TZ,1,[Whether gettimeofday() is available])
1930 AC_CACHE_CHECK([for va_copy],samba_cv_HAVE_VA_COPY,[
1931 AC_TRY_LINK([#include <stdarg.h>
1932 va_list ap1,ap2;], [va_copy(ap1,ap2);],
1933 samba_cv_HAVE_VA_COPY=yes,
1934 samba_cv_HAVE_VA_COPY=no)])
1935 if test x"$samba_cv_HAVE_VA_COPY" = x"yes"; then
1936     AC_DEFINE(HAVE_VA_COPY,1,[Whether va_copy() is available])
1937 else
1938     AC_CACHE_CHECK([for __va_copy],samba_cv_HAVE___VA_COPY,[
1939     AC_TRY_LINK([#include <stdarg.h>
1940     va_list ap1,ap2;], [__va_copy(ap1,ap2);],
1941     samba_cv_HAVE___VA_COPY=yes,
1942     samba_cv_HAVE___VA_COPY=no)])
1943     if test x"$samba_cv_HAVE___VA_COPY" = x"yes"; then
1944         AC_DEFINE(HAVE___VA_COPY,1,[Whether __va_copy() is available])
1945     fi
1948 AC_CACHE_CHECK([for C99 vsnprintf],samba_cv_HAVE_C99_VSNPRINTF,[
1949 AC_TRY_RUN([
1950 #include <sys/types.h>
1951 #include <stdarg.h>
1952 void foo(const char *format, ...) { 
1953        va_list ap;
1954        int len;
1955        char buf[5];
1957        va_start(ap, format);
1958        len = vsnprintf(buf, 0, format, ap);
1959        va_end(ap);
1960        if (len != 5) exit(1);
1962        va_start(ap, format);
1963        len = vsnprintf(0, 0, format, ap);
1964        va_end(ap);
1965        if (len != 5) exit(1);
1967        if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
1969        exit(0);
1971 main() { foo("hello"); }
1973 samba_cv_HAVE_C99_VSNPRINTF=yes,samba_cv_HAVE_C99_VSNPRINTF=no,samba_cv_HAVE_C99_VSNPRINTF=cross)])
1974 if test x"$samba_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
1975     AC_DEFINE(HAVE_C99_VSNPRINTF,1,[Whether there is a C99 compliant vsnprintf])
1978 AC_CACHE_CHECK([for broken readdir],samba_cv_HAVE_BROKEN_READDIR,[
1979 AC_TRY_RUN([#include <sys/types.h>
1980 #include <dirent.h>
1981 main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
1982 if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
1983 di->d_name[0] == 0) exit(0); exit(1);} ],
1984 samba_cv_HAVE_BROKEN_READDIR=yes,samba_cv_HAVE_BROKEN_READDIR=no,samba_cv_HAVE_BROKEN_READDIR=cross)])
1985 if test x"$samba_cv_HAVE_BROKEN_READDIR" = x"yes"; then
1986     AC_DEFINE(HAVE_BROKEN_READDIR,1,[Whether readdir() is broken])
1989 AC_CACHE_CHECK([for utimbuf],samba_cv_HAVE_UTIMBUF,[
1990 AC_TRY_COMPILE([#include <sys/types.h>
1991 #include <utime.h>],
1992 [struct utimbuf tbuf;  tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
1993 samba_cv_HAVE_UTIMBUF=yes,samba_cv_HAVE_UTIMBUF=no,samba_cv_HAVE_UTIMBUF=cross)])
1994 if test x"$samba_cv_HAVE_UTIMBUF" = x"yes"; then
1995     AC_DEFINE(HAVE_UTIMBUF,1,[Whether struct utimbuf is available])
1998 ##############
1999 # Check utmp details, but only if our OS offers utmp.h
2000 if test x"$ac_cv_header_utmp_h" = x"yes"; then
2001 dnl  utmp and utmpx come in many flavours
2002 dnl  We need to check for many of them
2003 dnl  But we don't need to do each and every one, because our code uses
2004 dnl  mostly just the utmp (not utmpx) fields.
2006 AC_CHECK_FUNCS(pututline pututxline updwtmp updwtmpx getutmpx)
2008 AC_CACHE_CHECK([for ut_name in utmp],samba_cv_HAVE_UT_UT_NAME,[
2009 AC_TRY_COMPILE([#include <sys/types.h>
2010 #include <utmp.h>],
2011 [struct utmp ut;  ut.ut_name[0] = 'a';],
2012 samba_cv_HAVE_UT_UT_NAME=yes,samba_cv_HAVE_UT_UT_NAME=no,samba_cv_HAVE_UT_UT_NAME=cross)])
2013 if test x"$samba_cv_HAVE_UT_UT_NAME" = x"yes"; then
2014     AC_DEFINE(HAVE_UT_UT_NAME,1,[Whether the utmp struct has a property ut_name])
2015 fi 
2017 AC_CACHE_CHECK([for ut_user in utmp],samba_cv_HAVE_UT_UT_USER,[
2018 AC_TRY_COMPILE([#include <sys/types.h>
2019 #include <utmp.h>],
2020 [struct utmp ut;  ut.ut_user[0] = 'a';],
2021 samba_cv_HAVE_UT_UT_USER=yes,samba_cv_HAVE_UT_UT_USER=no,samba_cv_HAVE_UT_UT_USER=cross)])
2022 if test x"$samba_cv_HAVE_UT_UT_USER" = x"yes"; then
2023     AC_DEFINE(HAVE_UT_UT_USER,1,[Whether the utmp struct has a property ut_user])
2024 fi 
2026 AC_CACHE_CHECK([for ut_id in utmp],samba_cv_HAVE_UT_UT_ID,[
2027 AC_TRY_COMPILE([#include <sys/types.h>
2028 #include <utmp.h>],
2029 [struct utmp ut;  ut.ut_id[0] = 'a';],
2030 samba_cv_HAVE_UT_UT_ID=yes,samba_cv_HAVE_UT_UT_ID=no,samba_cv_HAVE_UT_UT_ID=cross)])
2031 if test x"$samba_cv_HAVE_UT_UT_ID" = x"yes"; then
2032     AC_DEFINE(HAVE_UT_UT_ID,1,[Whether the utmp struct has a property ut_id])
2033 fi 
2035 AC_CACHE_CHECK([for ut_host in utmp],samba_cv_HAVE_UT_UT_HOST,[
2036 AC_TRY_COMPILE([#include <sys/types.h>
2037 #include <utmp.h>],
2038 [struct utmp ut;  ut.ut_host[0] = 'a';],
2039 samba_cv_HAVE_UT_UT_HOST=yes,samba_cv_HAVE_UT_UT_HOST=no,samba_cv_HAVE_UT_UT_HOST=cross)])
2040 if test x"$samba_cv_HAVE_UT_UT_HOST" = x"yes"; then
2041     AC_DEFINE(HAVE_UT_UT_HOST,1,[Whether the utmp struct has a property ut_host])
2042 fi 
2044 AC_CACHE_CHECK([for ut_time in utmp],samba_cv_HAVE_UT_UT_TIME,[
2045 AC_TRY_COMPILE([#include <sys/types.h>
2046 #include <utmp.h>],
2047 [struct utmp ut;  time_t t; ut.ut_time = t;],
2048 samba_cv_HAVE_UT_UT_TIME=yes,samba_cv_HAVE_UT_UT_TIME=no,samba_cv_HAVE_UT_UT_TIME=cross)])
2049 if test x"$samba_cv_HAVE_UT_UT_TIME" = x"yes"; then
2050     AC_DEFINE(HAVE_UT_UT_TIME,1,[Whether the utmp struct has a property ut_time])
2051 fi 
2053 AC_CACHE_CHECK([for ut_tv in utmp],samba_cv_HAVE_UT_UT_TV,[
2054 AC_TRY_COMPILE([#include <sys/types.h>
2055 #include <utmp.h>],
2056 [struct utmp ut;  struct timeval tv; ut.ut_tv = tv;],
2057 samba_cv_HAVE_UT_UT_TV=yes,samba_cv_HAVE_UT_UT_TV=no,samba_cv_HAVE_UT_UT_TV=cross)])
2058 if test x"$samba_cv_HAVE_UT_UT_TV" = x"yes"; then
2059     AC_DEFINE(HAVE_UT_UT_TV,1,[Whether the utmp struct has a property ut_tv])
2060 fi 
2062 AC_CACHE_CHECK([for ut_type in utmp],samba_cv_HAVE_UT_UT_TYPE,[
2063 AC_TRY_COMPILE([#include <sys/types.h>
2064 #include <utmp.h>],
2065 [struct utmp ut;  ut.ut_type = 0;],
2066 samba_cv_HAVE_UT_UT_TYPE=yes,samba_cv_HAVE_UT_UT_TYPE=no,samba_cv_HAVE_UT_UT_TYPE=cross)])
2067 if test x"$samba_cv_HAVE_UT_UT_TYPE" = x"yes"; then
2068     AC_DEFINE(HAVE_UT_UT_TYPE,1,[Whether the utmp struct has a property ut_type])
2069 fi 
2071 AC_CACHE_CHECK([for ut_pid in utmp],samba_cv_HAVE_UT_UT_PID,[
2072 AC_TRY_COMPILE([#include <sys/types.h>
2073 #include <utmp.h>],
2074 [struct utmp ut;  ut.ut_pid = 0;],
2075 samba_cv_HAVE_UT_UT_PID=yes,samba_cv_HAVE_UT_UT_PID=no,samba_cv_HAVE_UT_UT_PID=cross)])
2076 if test x"$samba_cv_HAVE_UT_UT_PID" = x"yes"; then
2077     AC_DEFINE(HAVE_UT_UT_PID,1,[Whether the utmp struct has a property ut_pid])
2078 fi 
2080 AC_CACHE_CHECK([for ut_exit in utmp],samba_cv_HAVE_UT_UT_EXIT,[
2081 AC_TRY_COMPILE([#include <sys/types.h>
2082 #include <utmp.h>],
2083 [struct utmp ut;  ut.ut_exit.e_exit = 0;],
2084 samba_cv_HAVE_UT_UT_EXIT=yes,samba_cv_HAVE_UT_UT_EXIT=no,samba_cv_HAVE_UT_UT_EXIT=cross)])
2085 if test x"$samba_cv_HAVE_UT_UT_EXIT" = x"yes"; then
2086     AC_DEFINE(HAVE_UT_UT_EXIT,1,[Whether the utmp struct has a property ut_exit])
2087 fi 
2089 AC_CACHE_CHECK([for ut_addr in utmp],samba_cv_HAVE_UT_UT_ADDR,[
2090 AC_TRY_COMPILE([#include <sys/types.h>
2091 #include <utmp.h>],
2092 [struct utmp ut;  ut.ut_addr = 0;],
2093 samba_cv_HAVE_UT_UT_ADDR=yes,samba_cv_HAVE_UT_UT_ADDR=no,samba_cv_HAVE_UT_UT_ADDR=cross)])
2094 if test x"$samba_cv_HAVE_UT_UT_ADDR" = x"yes"; then
2095     AC_DEFINE(HAVE_UT_UT_ADDR,1,[Whether the utmp struct has a property ut_addr])
2096 fi 
2098 if test x$ac_cv_func_pututline = xyes ; then
2099   AC_CACHE_CHECK([whether pututline returns pointer],samba_cv_PUTUTLINE_RETURNS_UTMP,[
2100   AC_TRY_COMPILE([#include <sys/types.h>
2101 #include <utmp.h>],
2102   [struct utmp utarg; struct utmp *utreturn; utreturn = pututline(&utarg);],
2103   samba_cv_PUTUTLINE_RETURNS_UTMP=yes,samba_cv_PUTUTLINE_RETURNS_UTMP=no)])
2104   if test x"$samba_cv_PUTUTLINE_RETURNS_UTMP" = x"yes"; then
2105       AC_DEFINE(PUTUTLINE_RETURNS_UTMP,1,[Whether pututline returns pointer])
2106   fi
2109 AC_CACHE_CHECK([for ut_syslen in utmpx],samba_cv_HAVE_UX_UT_SYSLEN,[
2110 AC_TRY_COMPILE([#include <sys/types.h>
2111 #include <utmpx.h>],
2112 [struct utmpx ux;  ux.ut_syslen = 0;],
2113 samba_cv_HAVE_UX_UT_SYSLEN=yes,samba_cv_HAVE_UX_UT_SYSLEN=no,samba_cv_HAVE_UX_UT_SYSLEN=cross)])
2114 if test x"$samba_cv_HAVE_UX_UT_SYSLEN" = x"yes"; then
2115     AC_DEFINE(HAVE_UX_UT_SYSLEN,1,[Whether the utmpx struct has a property ut_syslen])
2116 fi 
2119 # end utmp details
2122 ICONV_LOCATION=standard
2123 LOOK_DIRS="/usr /usr/local /sw /opt"
2124 AC_ARG_WITH(libiconv,
2125 [  --with-libiconv=BASEDIR Use libiconv in BASEDIR/lib and BASEDIR/include (default=auto) ],
2127   if test "$withval" = "no" ; then
2128     AC_MSG_ERROR([argument to --with-libiconv must be a directory])
2129   else
2130      if test "$withval" != "yes" ; then
2131         ICONV_PATH_SPEC=yes
2132         LOOK_DIRS="$withval"
2133      fi
2134   fi
2137 for i in $LOOK_DIRS ; do
2138     save_LIBS=$LIBS
2139     save_LDFLAGS=$LDFLAGS
2140     save_CPPFLAGS=$CPPFLAGS
2141     ICONV_FOUND="no"
2142     unset libext
2143     CPPFLAGS="$CPPFLAGS -I$i/include"
2144 dnl This is here to handle -withval stuff for --with-libiconv
2145 dnl Perhaps we should always add a -L
2147 dnl Check lib and lib32 library variants to cater for IRIX ABI-specific
2148 dnl installation paths. This gets a little tricky since we might have iconv
2149 dnl in both libiconv and in libc. In this case the jm_ICONV test will always
2150 dnl succeed when the header is found. To counter this, make sure the 
2151 dnl library directory is there and check the ABI directory first (which
2152 dnl should be harmless on other systems.
2153 dnl For IA64 HPUX systems, the libs are located in lib/hpux32 instead of lib.
2154     for l in "lib32" "lib" "lib/hpux32"; do
2155         if test -d "$i/$l" ; then
2156                 LDFLAGS="$save_LDFLAGS -L$i/$l"
2157         LIBS=
2158         export LDFLAGS LIBS CPPFLAGS
2159 dnl Try to find iconv(3)
2160                 jm_ICONV($i/$l)
2161                 if test x"$ICONV_FOUND" = "xyes" ; then
2162             libext="$l"
2163             break;
2164         fi
2165         fi
2166     done
2168     if test x"$ICONV_FOUND" = "xyes" ; then
2169         LDFLAGS=$save_LDFLAGS
2170         LIB_ADD_DIR(LDFLAGS, "$i/$libext")
2171         CFLAGS_ADD_DIR(CPPFLAGS, "$i/include")
2172         LIBS="$save_LIBS"
2173         ICONV_LOCATION=$i
2174         export LDFLAGS LIBS CPPFLAGS
2175 dnl Now, check for a working iconv ... we want to do it here because
2176 dnl there might be a working iconv further down the list of LOOK_DIRS
2178         ############
2179         # check for iconv in libc
2180         ic_save_LIBS="$LIBS"
2181         if test x"$ICONV_PATH_SPEC" = "xyes" ; then
2182            LIBS="$LIBS -L$ICONV_LOCATION/$libext"
2183         fi
2184         if test x"$jm_cv_lib_iconv" != x; then
2185            LIBS="$LIBS -l$jm_cv_lib_iconv"
2186         fi
2187 dnl        AC_CACHE_CHECK([for working iconv],samba_cv_HAVE_NATIVE_ICONV,[
2188         default_dos_charset=no
2189         default_display_charset=no
2190         default_unix_charset=no
2192         # check for default dos charset name
2193         for j in CP850 IBM850 ; do
2194             rjs_CHARSET($j)
2195             if test x"$ICONV_CHARSET" = x"$j"; then
2196                 default_dos_charset="\"$j\""
2197                 break
2198             fi
2199         done
2200         # check for default display charset name
2201         for j in ASCII 646 ; do
2202             rjs_CHARSET($j)
2203             if test x"$ICONV_CHARSET" = x"$j"; then
2204                 default_display_charset="\"$j\""
2205                 break
2206             fi
2207         done
2208         # check for default unix charset name
2209         for j in UTF-8 UTF8 ; do
2210             rjs_CHARSET($j)
2211             if test x"$ICONV_CHARSET" = x"$j"; then
2212                 default_unix_charset="\"$j\""
2213                 break
2214             fi
2215         done
2216         
2217         if test "$default_dos_charset" != "no" -a \
2218                 "$default_dos_charset" != "cross" -a \
2219                 "$default_display_charset" != "no" -a \ 
2220                 "$default_display_charset" != "cross" -a \
2221                 "$default_unix_charset" != "no" -a \
2222                 "$default_unix_charset" != "cross"
2223         then
2224                 samba_cv_HAVE_NATIVE_ICONV=yes
2225         else if test "$default_dos_charset" = "cross" -o \
2226                      "$default_display_charset" = "cross" -o \
2227                      "$default_unix_charset" = "cross"
2228         then
2229                 samba_cv_HAVE_NATIVE_ICONV=cross
2230         else
2231                 samba_cv_HAVE_NATIVE_ICONV=no
2232         fi
2233         fi
2234 dnl ])
2236         LIBS="$ic_save_LIBS"
2237         if test x"$samba_cv_HAVE_NATIVE_ICONV" = x"yes"; then
2238            CPPFLAGS=$save_CPPFLAGS
2239            LDFLAGS=$save_LDFLAGS
2240            LIBS=$save_LIBS
2241            if test x"$jm_cv_lib_iconv" != x; then
2242               LIBS="$LIBS -l$jm_cv_lib_iconv"
2243            fi
2244            dnl Add the flags we need to CPPFLAGS and LDFLAGS
2245            CFLAGS_ADD_DIR(CPPFLAGS, "$i/include")
2246            LIB_ADD_DIR(LDFLAGS, "$i/$libext")
2247            export CPPFLAGS
2248            AC_DEFINE(HAVE_NATIVE_ICONV,1,[Whether to use native iconv])
2249            AC_DEFINE_UNQUOTED(DEFAULT_DOS_CHARSET,$default_dos_charset,[Default dos charset name])
2250            AC_DEFINE_UNQUOTED(DEFAULT_DISPLAY_CHARSET,$default_display_charset,[Default display charset name])
2251            AC_DEFINE_UNQUOTED(DEFAULT_UNIX_CHARSET,$default_unix_charset,[Default unix charset name])
2252            break
2253         fi
2254 dnl We didn't find a working iconv, so keep going
2255     fi
2256 dnl We only need to clean these up here for the next pass through the loop
2257     CPPFLAGS=$save_CPPFLAGS
2258     LDFLAGS=$save_LDFLAGS
2259     LIBS=$save_LIBS
2260     export LDFLAGS LIBS CPPFLAGS
2261 done
2262 unset libext
2265 if test x"$ICONV_FOUND" = x"no" -o x"$samba_cv_HAVE_NATIVE_ICONV" != x"yes" ; then
2266     AC_MSG_WARN([Sufficient support for iconv function was not found. 
2267     Install libiconv from http://freshmeat.net/projects/libiconv/ for better charset compatibility!])
2268    AC_DEFINE_UNQUOTED(DEFAULT_DOS_CHARSET,"ASCII",[Default dos charset name])
2269    AC_DEFINE_UNQUOTED(DEFAULT_DISPLAY_CHARSET,"ASCII",[Default display charset name])
2270    AC_DEFINE_UNQUOTED(DEFAULT_UNIX_CHARSET,"UTF8",[Default unix charset name])
2274 AC_CACHE_CHECK([for Linux kernel oplocks],samba_cv_HAVE_KERNEL_OPLOCKS_LINUX,[
2275 AC_TRY_RUN([
2276 #include <sys/types.h>
2277 #include <fcntl.h>
2278 #ifndef F_GETLEASE
2279 #define F_GETLEASE      1025
2280 #endif
2281 main() {
2282        int fd = open("/dev/null", O_RDONLY);
2283        return fcntl(fd, F_GETLEASE, 0) == -1;
2286 samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=yes,samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=no,samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=cross)])
2287 if test x"$samba_cv_HAVE_KERNEL_OPLOCKS_LINUX" = x"yes"; then
2288     AC_DEFINE(HAVE_KERNEL_OPLOCKS_LINUX,1,[Whether to use linux kernel oplocks])
2291 AC_CACHE_CHECK([for kernel change notify support],samba_cv_HAVE_KERNEL_CHANGE_NOTIFY,[
2292 AC_TRY_RUN([
2293 #include <sys/types.h>
2294 #include <fcntl.h>
2295 #include <signal.h>
2296 #ifndef F_NOTIFY
2297 #define F_NOTIFY 1026
2298 #endif
2299 main() {
2300         exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ?  1 : 0);
2303 samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=yes,samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=no,samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=cross)])
2304 if test x"$samba_cv_HAVE_KERNEL_CHANGE_NOTIFY" = x"yes"; then
2305     AC_DEFINE(HAVE_KERNEL_CHANGE_NOTIFY,1,[Whether kernel notifies changes])
2308 #################################################
2309 # Check if FAM notifications are available. For FAM info, see
2310 #       http://oss.sgi.com/projects/fam/
2311 #       http://savannah.nongnu.org/projects/fam/
2313 AC_CHECK_HEADERS(fam.h, [samba_cv_HAVE_FAM_H=yes], [samba_cv_HAVE_FAM_H=no])
2314 if test x"$samba_cv_HAVE_FAM_H" = x"yes"; then
2315     # On IRIX, libfam requires libC, but other FAM implementations might not
2316     # need it.
2317     AC_CHECK_LIB(fam, FAMOpen2,
2318             [samba_cv_HAVE_LIBFAM=yes; samba_fam_libs="-lfam"],
2319             [samba_cv_HAVE_LIBFAM=no])
2321     if test x"$samba_cv_HAVE_LIBFAM" = x"no" ; then
2322         samba_fam_xtra=-lC
2323         AC_CHECK_LIB_EXT(fam, samba_fam_xtra, FAMOpen2,
2324                 [samba_cv_HAVE_LIBFAM=yes; samba_fam_libs="-lfam -lC"],
2325                 [samba_cv_HAVE_LIBFAM=no])
2326         unset samba_fam_xtra
2327     fi
2330 if test x"$samba_cv_HAVE_LIBFAM" = x"yes" ; then
2331     AC_DEFINE(HAVE_FAM_CHANGE_NOTIFY, 1,
2332             [Whether FAM is file notifications are available])
2333     AC_TRY_COMPILE([#include <fam.h>],
2334                 [FAMCodes code = FAMChanged;],
2335                 AC_DEFINE(HAVE_FAM_H_FAMCODES_TYPEDEF, 1,
2336                     [Whether fam.h contains a typedef for enum FAMCodes]),
2337                 [])
2340 AC_CACHE_CHECK([for kernel share modes],samba_cv_HAVE_KERNEL_SHARE_MODES,[
2341 AC_TRY_RUN([
2342 #include <sys/types.h>
2343 #include <fcntl.h>
2344 #include <signal.h>
2345 #include <sys/file.h>
2346 #ifndef LOCK_MAND
2347 #define LOCK_MAND       32
2348 #define LOCK_READ       64
2349 #endif
2350 main() {
2351         exit(flock(open("/dev/null", O_RDWR), LOCK_MAND|LOCK_READ) != 0);
2354 samba_cv_HAVE_KERNEL_SHARE_MODES=yes,samba_cv_HAVE_KERNEL_SHARE_MODES=no,samba_cv_HAVE_KERNEL_SHARE_MODES=cross)])
2355 if test x"$samba_cv_HAVE_KERNEL_SHARE_MODES" = x"yes"; then
2356     AC_DEFINE(HAVE_KERNEL_SHARE_MODES,1,[Whether the kernel supports share modes])
2360 AC_CACHE_CHECK([for IRIX kernel oplock type definitions],samba_cv_HAVE_KERNEL_OPLOCKS_IRIX,[
2361 AC_TRY_COMPILE([#include <sys/types.h>
2362 #include <fcntl.h>],
2363 [oplock_stat_t t; t.os_state = OP_REVOKE; t.os_dev = 1; t.os_ino = 1;],
2364 samba_cv_HAVE_KERNEL_OPLOCKS_IRIX=yes,samba_cv_HAVE_KERNEL_OPLOCKS_IRIX=no)])
2365 if test x"$samba_cv_HAVE_KERNEL_OPLOCKS_IRIX" = x"yes"; then
2366     AC_DEFINE(HAVE_KERNEL_OPLOCKS_IRIX,1,[Whether IRIX kernel oplock type definitions are available])
2369 #################################################
2370 # Check for POSIX capability support
2372 AC_CHECK_HEADER(sys/capability.h, [samba_cv_HAVE_SYS_CAPABILITY_H=yes;
2373     AC_DEFINE(HAVE_SYS_CAPABILITY_H, 1, Whether sys/capability.h is present)],
2374     [], [])
2376 if test x"$samba_cv_HAVE_SYS_CAPABILITY_H" = x"yes"; then
2378     ac_save_LIBS=$LIBS
2379     AC_LIBTESTFUNC(cap, cap_get_proc)
2381     AC_CACHE_CHECK([for POSIX capabilities],
2382             samba_cv_HAVE_POSIX_CAPABILITIES,
2383             [
2384                 AC_TRY_RUN([
2385 #include <sys/types.h>
2386 #include <sys/capability.h>
2387 main() {
2388  cap_t cap;
2389  cap_value_t vals[1];
2390  if (!(cap = cap_get_proc()))
2391    exit(1);
2392  vals[0] = CAP_CHOWN;
2393  cap_set_flag(cap, CAP_INHERITABLE, 1, vals, CAP_CLEAR);
2394  cap_set_proc(cap);
2395  exit(0);
2397                 samba_cv_HAVE_POSIX_CAPABILITIES=yes,
2398                 samba_cv_HAVE_POSIX_CAPABILITIES=no,
2399                 samba_cv_HAVE_POSIX_CAPABILITIES=cross)
2400             ])
2402 if test x"$samba_cv_HAVE_POSIX_CAPABILITIES" = x"yes"; then
2403     AC_DEFINE(HAVE_POSIX_CAPABILITIES, 1,
2404             [Whether POSIX capabilities are available])
2405 else
2406     LIBS=$ac_save_LIBS
2412 # Check for int16, uint16, int32 and uint32 in rpc/types.h included from rpc/rpc.h
2413 # This is *really* broken but some systems (DEC OSF1) do this.... JRA.
2416 AC_CACHE_CHECK([for int16 typedef included by rpc/rpc.h],samba_cv_HAVE_INT16_FROM_RPC_RPC_H,[
2417 AC_TRY_COMPILE([#include <sys/types.h>
2418 #if defined(HAVE_RPC_RPC_H)
2419 #include <rpc/rpc.h>
2420 #endif],
2421 [int16 testvar;],
2422 samba_cv_HAVE_INT16_FROM_RPC_RPC_H=yes,samba_cv_HAVE_INT16_FROM_RPC_RPC_H=no)])
2423 if test x"$samba_cv_HAVE_INT16_FROM_RPC_RPC_H" = x"yes"; then
2424     AC_DEFINE(HAVE_INT16_FROM_RPC_RPC_H,1,[Whether int16 typedef is included by rpc/rpc.h])
2427 AC_CACHE_CHECK([for uint16 typedef included by rpc/rpc.h],samba_cv_HAVE_UINT16_FROM_RPC_RPC_H,[
2428 AC_TRY_COMPILE([#include <sys/types.h>
2429 #if defined(HAVE_RPC_RPC_H)
2430 #include <rpc/rpc.h>
2431 #endif],
2432 [uint16 testvar;],
2433 samba_cv_HAVE_UINT16_FROM_RPC_RPC_H=yes,samba_cv_HAVE_UINT16_FROM_RPC_RPC_H=no)])
2434 if test x"$samba_cv_HAVE_UINT16_FROM_RPC_RPC_H" = x"yes"; then
2435     AC_DEFINE(HAVE_UINT16_FROM_RPC_RPC_H,1,[Whether uint16 typedef is included by rpc/rpc.h])
2438 AC_CACHE_CHECK([for int32 typedef included by rpc/rpc.h],samba_cv_HAVE_INT32_FROM_RPC_RPC_H,[
2439 AC_TRY_COMPILE([#include <sys/types.h>
2440 #if defined(HAVE_RPC_RPC_H)
2441 #include <rpc/rpc.h>
2442 #endif],
2443 [int32 testvar;],
2444 samba_cv_HAVE_INT32_FROM_RPC_RPC_H=yes,samba_cv_HAVE_INT32_FROM_RPC_RPC_H=no)])
2445 if test x"$samba_cv_HAVE_INT32_FROM_RPC_RPC_H" = x"yes"; then
2446     AC_DEFINE(HAVE_INT32_FROM_RPC_RPC_H,1,[Whether int32 typedef is included by rpc/rpc.h])
2449 AC_CACHE_CHECK([for uint32 typedef included by rpc/rpc.h],samba_cv_HAVE_UINT32_FROM_RPC_RPC_H,[
2450 AC_TRY_COMPILE([#include <sys/types.h>
2451 #if defined(HAVE_RPC_RPC_H)
2452 #include <rpc/rpc.h>
2453 #endif],
2454 [uint32 testvar;],
2455 samba_cv_HAVE_UINT32_FROM_RPC_RPC_H=yes,samba_cv_HAVE_UINT32_FROM_RPC_RPC_H=no)])
2456 if test x"$samba_cv_HAVE_UINT32_FROM_RPC_RPC_H" = x"yes"; then
2457     AC_DEFINE(HAVE_UINT32_FROM_RPC_RPC_H,1,[Whether uint32 typedef is included by rpc/rpc.h])
2461 dnl Some systems (SCO) have a problem including
2462 dnl <prot.h> and <rpc/rpc.h> due to AUTH_ERROR being defined
2463 dnl as a #define in <prot.h> and as part of an enum
2464 dnl in <rpc/rpc.h>.
2467 AC_CACHE_CHECK([for conflicting AUTH_ERROR define in rpc/rpc.h],samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT,[
2468 AC_TRY_COMPILE([#include <sys/types.h>
2469 #ifdef HAVE_SYS_SECURITY_H
2470 #include <sys/security.h>
2471 #include <prot.h>
2472 #endif  /* HAVE_SYS_SECURITY_H */
2473 #if defined(HAVE_RPC_RPC_H)
2474 #include <rpc/rpc.h>
2475 #endif],
2476 [int testvar;],
2477 samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT=no,samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT=yes)])
2478 if test x"$samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT" = x"yes"; then
2479     AC_DEFINE(HAVE_RPC_AUTH_ERROR_CONFLICT,1,[Whether there is a conflicting AUTH_ERROR define in rpc/rpc.h])
2482 AC_MSG_CHECKING([for test routines])
2483 AC_TRY_RUN([#include "${srcdir-.}/tests/trivial.c"],
2484            AC_MSG_RESULT(yes),
2485            AC_MSG_ERROR([cant find test code. Aborting config]),
2486            AC_MSG_WARN([cannot run when cross-compiling]))
2488 AC_CACHE_CHECK([for ftruncate extend],samba_cv_HAVE_FTRUNCATE_EXTEND,[
2489 AC_TRY_RUN([#include "${srcdir-.}/tests/ftruncate.c"],
2490            samba_cv_HAVE_FTRUNCATE_EXTEND=yes,samba_cv_HAVE_FTRUNCATE_EXTEND=no,samba_cv_HAVE_FTRUNCATE_EXTEND=cross)])
2491 if test x"$samba_cv_HAVE_FTRUNCATE_EXTEND" = x"yes"; then
2492     AC_DEFINE(HAVE_FTRUNCATE_EXTEND,1,[Truncate extend])
2495 AC_CACHE_CHECK([for AF_LOCAL socket support], samba_cv_HAVE_WORKING_AF_LOCAL, [
2496 AC_TRY_RUN([#include "${srcdir-.}/tests/unixsock.c"],
2497            samba_cv_HAVE_WORKING_AF_LOCAL=yes,
2498            samba_cv_HAVE_WORKING_AF_LOCAL=no,
2499            samba_cv_HAVE_WORKING_AF_LOCAL=cross)])
2500 if test x"$samba_cv_HAVE_WORKING_AF_LOCAL" != xno
2501 then
2502     AC_DEFINE(HAVE_WORKING_AF_LOCAL, 1, [Define if you have working AF_LOCAL sockets])
2505 AC_CACHE_CHECK([for broken getgroups],samba_cv_HAVE_BROKEN_GETGROUPS,[
2506 AC_TRY_RUN([#include "${srcdir-.}/tests/getgroups.c"],
2507            samba_cv_HAVE_BROKEN_GETGROUPS=yes,samba_cv_HAVE_BROKEN_GETGROUPS=no,samba_cv_HAVE_BROKEN_GETGROUPS=cross)])
2508 if test x"$samba_cv_HAVE_BROKEN_GETGROUPS" = x"yes"; then
2509     AC_DEFINE(HAVE_BROKEN_GETGROUPS,1,[Whether getgroups is broken])
2512 AC_CACHE_CHECK([whether getpass should be replaced],samba_cv_REPLACE_GETPASS,[
2513 SAVE_CPPFLAGS="$CPPFLAGS"
2514 CPPFLAGS="$CPPFLAGS -I${srcdir-.}/ -I${srcdir-.}/include -I${srcdir-.}/ubiqx -I${srcdir-.}/popt"
2515 AC_TRY_COMPILE([
2516 #define REPLACE_GETPASS 1
2517 #define NO_PROTO_H 1
2518 #define NO_CONFIG_H 1
2519 #define main dont_declare_main
2520 #include "${srcdir-.}/lib/getsmbpass.c"
2521 #undef main
2522 ],[],samba_cv_REPLACE_GETPASS=yes,samba_cv_REPLACE_GETPASS=no)
2523 CPPFLAGS="$SAVE_CPPFLAGS"
2525 if test x"$samba_cv_REPLACE_GETPASS" = x"yes"; then
2526         AC_DEFINE(REPLACE_GETPASS,1,[Whether getpass should be replaced])
2529 AC_CACHE_CHECK([for broken inet_ntoa],samba_cv_REPLACE_INET_NTOA,[
2530 AC_TRY_RUN([
2531 #include <stdio.h>
2532 #include <sys/types.h>
2533 #include <netinet/in.h>
2534 #ifdef HAVE_ARPA_INET_H
2535 #include <arpa/inet.h>
2536 #endif
2537 main() { struct in_addr ip; ip.s_addr = 0x12345678;
2538 if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
2539     strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(0); } 
2540 exit(1);}],
2541            samba_cv_REPLACE_INET_NTOA=yes,samba_cv_REPLACE_INET_NTOA=no,samba_cv_REPLACE_INET_NTOA=cross)])
2542 if test x"$samba_cv_REPLACE_INET_NTOA" = x"yes"; then
2543     AC_DEFINE(REPLACE_INET_NTOA,1,[Whether inet_ntoa should be replaced])
2546 AC_CACHE_CHECK([for secure mkstemp],samba_cv_HAVE_SECURE_MKSTEMP,[
2547 AC_TRY_RUN([#include <stdlib.h>
2548 #include <sys/types.h>
2549 #include <sys/stat.h>
2550 #include <unistd.h>
2551 main() { 
2552   struct stat st;
2553   char tpl[20]="/tmp/test.XXXXXX"; 
2554   int fd = mkstemp(tpl); 
2555   if (fd == -1) exit(1);
2556   unlink(tpl);
2557   if (fstat(fd, &st) != 0) exit(1);
2558   if ((st.st_mode & 0777) != 0600) exit(1);
2559   exit(0);
2561 samba_cv_HAVE_SECURE_MKSTEMP=yes,
2562 samba_cv_HAVE_SECURE_MKSTEMP=no,
2563 samba_cv_HAVE_SECURE_MKSTEMP=cross)])
2564 if test x"$samba_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then
2565     AC_DEFINE(HAVE_SECURE_MKSTEMP,1,[Whether mkstemp is secure])
2568 AC_CACHE_CHECK([for sysconf(_SC_NGROUPS_MAX)],samba_cv_SYSCONF_SC_NGROUPS_MAX,[
2569 AC_TRY_RUN([#include <unistd.h>
2570 main() { exit(sysconf(_SC_NGROUPS_MAX) == -1 ? 1 : 0); }],
2571 samba_cv_SYSCONF_SC_NGROUPS_MAX=yes,samba_cv_SYSCONF_SC_NGROUPS_MAX=no,samba_cv_SYSCONF_SC_NGROUPS_MAX=cross)])
2572 if test x"$samba_cv_SYSCONF_SC_NGROUPS_MAX" = x"yes"; then
2573     AC_DEFINE(SYSCONF_SC_NGROUPS_MAX,1,[Whether sysconf(_SC_NGROUPS_MAX) is available])
2576 AC_CACHE_CHECK([for sysconf(_SC_NPROC_ONLN)],samba_cv_SYSCONF_SC_NPROC_ONLN,[
2577 AC_TRY_RUN([#include <unistd.h>
2578 main() { exit(sysconf(_SC_NPROC_ONLN) == -1 ? 1 : 0); }],
2579 samba_cv_SYSCONF_SC_NPROC_ONLN=yes,samba_cv_SYSCONF_SC_NPROC_ONLN=no,samba_cv_SYSCONF_SC_NPROC_ONLN=cross)])
2580 if test x"$samba_cv_SYSCONF_SC_NPROC_ONLN" = x"yes"; then
2581     AC_DEFINE(SYSCONF_SC_NPROC_ONLN,1,[Whether sysconf(_SC_NPROC_ONLN) is available])
2584 AC_CACHE_CHECK([for root],samba_cv_HAVE_ROOT,[
2585 AC_TRY_RUN([main() { exit(getuid() != 0); }],
2586            samba_cv_HAVE_ROOT=yes,samba_cv_HAVE_ROOT=no,samba_cv_HAVE_ROOT=cross)])
2587 if test x"$samba_cv_HAVE_ROOT" = x"yes"; then
2588     AC_DEFINE(HAVE_ROOT,1,[Whether current user is root])
2589 else
2590     AC_MSG_WARN(running as non-root will disable some tests)
2593 ##################
2594 # look for a method of finding the list of network interfaces
2595 iface=no;
2596 AC_CACHE_CHECK([for iface AIX],samba_cv_HAVE_IFACE_AIX,[
2597 AC_TRY_RUN([
2598 #define HAVE_IFACE_AIX 1
2599 #define AUTOCONF_TEST 1
2600 #include "confdefs.h"
2601 #include "${srcdir-.}/lib/interfaces.c"],
2602            samba_cv_HAVE_IFACE_AIX=yes,samba_cv_HAVE_IFACE_AIX=no,samba_cv_HAVE_IFACE_AIX=cross)])
2603 if test x"$samba_cv_HAVE_IFACE_AIX" = x"yes"; then
2604     iface=yes;AC_DEFINE(HAVE_IFACE_AIX,1,[Whether iface AIX is available])
2607 if test $iface = no; then
2608 AC_CACHE_CHECK([for iface ifconf],samba_cv_HAVE_IFACE_IFCONF,[
2609 AC_TRY_RUN([
2610 #define HAVE_IFACE_IFCONF 1
2611 #define AUTOCONF_TEST 1
2612 #include "confdefs.h"
2613 #include "${srcdir-.}/lib/interfaces.c"],
2614            samba_cv_HAVE_IFACE_IFCONF=yes,samba_cv_HAVE_IFACE_IFCONF=no,samba_cv_HAVE_IFACE_IFCONF=cross)])
2615 if test x"$samba_cv_HAVE_IFACE_IFCONF" = x"yes"; then
2616     iface=yes;AC_DEFINE(HAVE_IFACE_IFCONF,1,[Whether iface ifconf is available])
2620 if test $iface = no; then
2621 AC_CACHE_CHECK([for iface ifreq],samba_cv_HAVE_IFACE_IFREQ,[
2622 AC_TRY_RUN([
2623 #define HAVE_IFACE_IFREQ 1
2624 #define AUTOCONF_TEST 1
2625 #include "confdefs.h"
2626 #include "${srcdir-.}/lib/interfaces.c"],
2627            samba_cv_HAVE_IFACE_IFREQ=yes,samba_cv_HAVE_IFACE_IFREQ=no,samba_cv_HAVE_IFACE_IFREQ=cross)])
2628 if test x"$samba_cv_HAVE_IFACE_IFREQ" = x"yes"; then
2629     iface=yes;AC_DEFINE(HAVE_IFACE_IFREQ,1,[Whether iface ifreq is available])
2634 ################################################
2635 # look for a method of setting the effective uid
2636 seteuid=no;
2637 if test $seteuid = no; then
2638 AC_CACHE_CHECK([for setresuid],samba_cv_USE_SETRESUID,[
2639 AC_TRY_RUN([
2640 #define AUTOCONF_TEST 1
2641 #define USE_SETRESUID 1
2642 #include "confdefs.h"
2643 #include "${srcdir-.}/lib/util_sec.c"],
2644            samba_cv_USE_SETRESUID=yes,samba_cv_USE_SETRESUID=no,samba_cv_USE_SETRESUID=cross)])
2645 if test x"$samba_cv_USE_SETRESUID" = x"yes"; then
2646     seteuid=yes;AC_DEFINE(USE_SETRESUID,1,[Whether setresuid() is available])
2651 if test $seteuid = no; then
2652 AC_CACHE_CHECK([for setreuid],samba_cv_USE_SETREUID,[
2653 AC_TRY_RUN([
2654 #define AUTOCONF_TEST 1
2655 #define USE_SETREUID 1
2656 #include "confdefs.h"
2657 #include "${srcdir-.}/lib/util_sec.c"],
2658            samba_cv_USE_SETREUID=yes,samba_cv_USE_SETREUID=no,samba_cv_USE_SETREUID=cross)])
2659 if test x"$samba_cv_USE_SETREUID" = x"yes"; then
2660     seteuid=yes;AC_DEFINE(USE_SETREUID,1,[Whether setreuid() is available])
2664 if test $seteuid = no; then
2665 AC_CACHE_CHECK([for seteuid],samba_cv_USE_SETEUID,[
2666 AC_TRY_RUN([
2667 #define AUTOCONF_TEST 1
2668 #define USE_SETEUID 1
2669 #include "confdefs.h"
2670 #include "${srcdir-.}/lib/util_sec.c"],
2671            samba_cv_USE_SETEUID=yes,samba_cv_USE_SETEUID=no,samba_cv_USE_SETEUID=cross)])
2672 if test x"$samba_cv_USE_SETEUID" = x"yes"; then
2673     seteuid=yes;AC_DEFINE(USE_SETEUID,1,[Whether seteuid() is available])
2677 if test $seteuid = no; then
2678 AC_CACHE_CHECK([for setuidx],samba_cv_USE_SETUIDX,[
2679 AC_TRY_RUN([
2680 #define AUTOCONF_TEST 1
2681 #define USE_SETUIDX 1
2682 #include "confdefs.h"
2683 #include "${srcdir-.}/lib/util_sec.c"],
2684            samba_cv_USE_SETUIDX=yes,samba_cv_USE_SETUIDX=no,samba_cv_USE_SETUIDX=cross)])
2685 if test x"$samba_cv_USE_SETUIDX" = x"yes"; then
2686     seteuid=yes;AC_DEFINE(USE_SETUIDX,1,[Whether setuidx() is available])
2691 AC_CACHE_CHECK([for working mmap],samba_cv_HAVE_MMAP,[
2692 AC_TRY_RUN([#include "${srcdir-.}/tests/shared_mmap.c"],
2693            samba_cv_HAVE_MMAP=yes,samba_cv_HAVE_MMAP=no,samba_cv_HAVE_MMAP=cross)])
2694 if test x"$samba_cv_HAVE_MMAP" = x"yes"; then
2695     AC_DEFINE(HAVE_MMAP,1,[Whether mmap works])
2698 AC_CACHE_CHECK([for fcntl locking],samba_cv_HAVE_FCNTL_LOCK,[
2699 AC_TRY_RUN([#include "${srcdir-.}/tests/fcntl_lock.c"],
2700            samba_cv_HAVE_FCNTL_LOCK=yes,samba_cv_HAVE_FCNTL_LOCK=no,samba_cv_HAVE_FCNTL_LOCK=cross)])
2701 if test x"$samba_cv_HAVE_FCNTL_LOCK" = x"yes"; then
2702     AC_DEFINE(HAVE_FCNTL_LOCK,1,[Whether fcntl locking is available])
2705 AC_CACHE_CHECK([for broken (glibc2.1/x86) 64 bit fcntl locking],samba_cv_HAVE_BROKEN_FCNTL64_LOCKS,[
2706 AC_TRY_RUN([#include "${srcdir-.}/tests/fcntl_lock64.c"],
2707            samba_cv_HAVE_BROKEN_FCNTL64_LOCKS=yes,samba_cv_HAVE_BROKEN_FCNTL64_LOCKS=no,samba_cv_HAVE_BROKEN_FCNTL64_LOCKS=cross)])
2708 if test x"$samba_cv_HAVE_BROKEN_FCNTL64_LOCKS" = x"yes"; then
2709     AC_DEFINE(HAVE_BROKEN_FCNTL64_LOCKS,1,[Whether fcntl64 locks are broken])
2711 else
2714 dnl Don't check for 64 bit fcntl locking if we know that the
2715 dnl glibc2.1 broken check has succeeded.
2716 dnl 
2718   AC_CACHE_CHECK([for 64 bit fcntl locking],samba_cv_HAVE_STRUCT_FLOCK64,[
2719   AC_TRY_RUN([
2720 #if defined(HAVE_UNISTD_H)
2721 #include <unistd.h>
2722 #endif
2723 #include <stdio.h>
2724 #include <stdlib.h>
2726 #ifdef HAVE_FCNTL_H
2727 #include <fcntl.h>
2728 #endif
2730 #ifdef HAVE_SYS_FCNTL_H
2731 #include <sys/fcntl.h>
2732 #endif
2733 main() { struct flock64 fl64;
2734 #if defined(F_SETLKW64) && defined(F_SETLK64) && defined(F_GETLK64)
2735 exit(0);
2736 #else
2737 exit(1);
2738 #endif
2740        samba_cv_HAVE_STRUCT_FLOCK64=yes,samba_cv_HAVE_STRUCT_FLOCK64=no,samba_cv_HAVE_STRUCT_FLOCK64=cross)])
2742   if test x"$samba_cv_HAVE_STRUCT_FLOCK64" = x"yes"; then
2743       AC_DEFINE(HAVE_STRUCT_FLOCK64,1,[Whether the flock64 struct is available])
2744   fi
2747 AC_CACHE_CHECK([for st_blocks in struct stat],samba_cv_HAVE_STAT_ST_BLOCKS,[
2748 AC_TRY_COMPILE([#include <sys/types.h>
2749 #include <sys/stat.h>
2750 #include <unistd.h>],
2751 [struct stat st;  st.st_blocks = 0;],
2752 samba_cv_HAVE_STAT_ST_BLOCKS=yes,samba_cv_HAVE_STAT_ST_BLOCKS=no,samba_cv_HAVE_STAT_ST_BLOCKS=cross)])
2753 if test x"$samba_cv_HAVE_STAT_ST_BLOCKS" = x"yes"; then
2754     AC_DEFINE(HAVE_STAT_ST_BLOCKS,1,[Whether the stat struct has a st_block property])
2755 fi 
2757 AC_CACHE_CHECK([for st_blksize in struct stat],samba_cv_HAVE_STAT_ST_BLKSIZE,[
2758 AC_TRY_COMPILE([#include <sys/types.h>
2759 #include <sys/stat.h>
2760 #include <unistd.h>],
2761 [struct stat st;  st.st_blksize = 0;],
2762 samba_cv_HAVE_STAT_ST_BLKSIZE=yes,samba_cv_HAVE_STAT_ST_BLKSIZE=no,samba_cv_HAVE_STAT_ST_BLKSIZE=cross)])
2763 if test x"$samba_cv_HAVE_STAT_ST_BLKSIZE" = x"yes"; then
2764     AC_DEFINE(HAVE_STAT_ST_BLKSIZE,1,[Whether the stat struct has a st_blksize property])
2767 case "$host_os" in
2768 *linux*)
2769 AC_CACHE_CHECK([for broken RedHat 7.2 system header files],samba_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS,[
2770 AC_TRY_COMPILE([
2771 #ifdef HAVE_SYS_VFS_H
2772 #include <sys/vfs.h>
2773 #endif
2774 #ifdef HAVE_SYS_CAPABILITY_H
2775 #include <sys/capability.h>
2776 #endif
2777 ],[int i;],
2778    samba_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS=no,samba_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS=yes)])
2779 if test x"$samba_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS" = x"yes"; then
2780    AC_DEFINE(BROKEN_REDHAT_7_SYSTEM_HEADERS,1,[Broken RedHat 7.2 system header files])
2783 esac
2785 AC_CACHE_CHECK([for broken nisplus include files],samba_cv_BROKEN_NISPLUS_INCLUDE_FILES,[
2786 AC_TRY_COMPILE([
2787 #include <sys/types.h>
2788 #include <sys/acl.h>
2789 #if defined(HAVE_RPCSVC_NIS_H)
2790 #include <rpcsvc/nis.h>
2791 #endif],
2792 [int i;],
2793 samba_cv_BROKEN_NISPLUS_INCLUDE_FILES=no,samba_cv_BROKEN_NISPLUS_INCLUDE_FILES=yes)])
2794 if test x"$samba_cv_BROKEN_NISPLUS_INCLUDE_FILES" = x"yes"; then
2795         AC_DEFINE(BROKEN_NISPLUS_INCLUDE_FILES,1,[Whether the nisplus include files are broken])
2798 AC_CACHE_CHECK([if the realpath function allows a NULL argument],samba_cv_REALPATH_TAKES_NULL,[
2799 AC_TRY_RUN([
2800 #include <stdio.h>
2801 #include <limits.h>
2802 main() {
2803         char *newpath = realpath("/tmp", NULL);
2804         exit ((newpath != NULL) ? 0 : 1);
2807 samba_cv_REALPATH_TAKES_NULL=yes,samba_cv_REALPATH_TAKES_NULL=no,samba_cv_REALPATH_TAKES_NULL=cross)])
2808 if test x"$samba_cv_REALPATH_TAKES_NULL" = x"yes"; then
2809     AC_DEFINE(REALPATH_TAKES_NULL,1,[Whether the realpath function allows NULL])
2812 #################################################
2813 # check for smbwrapper support
2814 AC_MSG_CHECKING(whether to use smbwrapper)
2815 AC_ARG_WITH(smbwrapper,
2816 [  --with-smbwrapper       Include SMB wrapper support (default=no) ],
2817 [ case "$withval" in
2818   yes)
2819     AC_MSG_RESULT(yes)
2820     AC_DEFINE(WITH_SMBWRAPPER,1,[Whether to include smbwrapper support])
2821         WRAPPROG="bin/smbsh\$(EXEEXT)"
2822         WRAP="bin/smbwrapper.$SHLIBEXT"
2823         WRAP_OBJS="\$(SMBW_OBJ1) \$(SMBWRAPPER_OBJ1)"
2824         WRAP_INC="-I\$(srcdir)/smbwrapper"
2826 # Conditions under which smbwrapper should not be built.
2828         if test x$PICFLAGS = x; then
2829            echo No support for PIC code - disabling smbwrapper and smbsh
2830            WRAPPROG=""
2831            WRAP=""
2832            WRAP_OBJS=""
2833            WRAP_INC=""
2834         elif test x$ac_cv_func_syscall = xno; then
2835            AC_MSG_RESULT([No syscall() -- disabling smbwrapper and smbsh])
2836            WRAPPROG=""
2837            WRAP=""
2838            WRAP_OBJS=""
2839            WRAP_INC=""
2840         fi
2841         EXTRA_ALL_TARGETS="$EXTRA_ALL_TARGETS $WRAPPROG $WRAP"
2842         SMBWRAPPER="$WRAPPROG $WRAP"
2843         SMBWRAP_OBJS="$WRAP_OBJS"
2844         SMBWRAP_INC="$WRAP_INC"
2845     ;;
2846   *)
2847     AC_MSG_RESULT(no)
2848     ;;
2849   esac ],
2850   AC_MSG_RESULT(no)
2853 #################################################
2854 # check for AFS clear-text auth support
2855 samba_cv_WITH_AFS=no
2856 AC_MSG_CHECKING(whether to use AFS clear-text auth)
2857 AC_ARG_WITH(afs,
2858 [  --with-afs              Include AFS clear-text auth support (default=no) ],
2859 [ case "$withval" in
2860   yes|auto)
2861     AC_MSG_RESULT($withval)
2862     samba_cv_WITH_AFS=$withval
2863     ;;
2864   *)
2865     AC_MSG_RESULT(no)
2866     ;;
2867   esac ],
2868   AC_MSG_RESULT(no)
2871 ####################################################
2872 # check for Linux-specific AFS fake-kaserver support
2873 samba_cv_WITH_FAKE_KASERVER=no
2874 AC_MSG_CHECKING(whether to use AFS fake-kaserver)
2875 AC_ARG_WITH(fake-kaserver,
2876 [  --with-fake-kaserver    Include AFS fake-kaserver support (default=no) ],
2877 [ case "$withval" in
2878   yes|auto)
2879     AC_MSG_RESULT($withval)
2880     samba_cv_WITH_FAKE_KASERVER=$withval
2881     ;;
2882   *)
2883     AC_MSG_RESULT(no)
2884     ;;
2885   esac ],
2886   AC_MSG_RESULT(no)
2889 #################################################
2890 # decide whether we can support WITH_AFS and / or WITH_FAKE_KASERVER
2891 if test x"$samba_cv_WITH_AFS" != x"no" ||
2892    test x"$samba_cv_WITH_FAKE_KASERVER" != x"no"; then
2894     # see if this box has the afs-headers in /usr/include/afs
2895     AC_MSG_CHECKING(for /usr/include/afs)
2896     if test -d /usr/include/afs; then
2897           CFLAGS="$CFLAGS -I/usr/include/afs"
2898           CPPFLAGS="$CPPFLAGS -I/usr/include/afs"
2899           AC_MSG_RESULT(yes)
2900     else
2901       AC_MSG_RESULT(no)
2902     fi
2903    
2904     # check for afs.h
2905     have_afs_headers=no
2906     AC_CHECK_HEADERS(afs.h afs/afs.h)
2907     if test x"$ac_cv_header_afs_h" = x"no" && test x"$ac_cv_header_afs_afs_h" = x"no"; then
2908         if test x"$samba_cv_WITH_FAKE_KASERVER" = x"auto" ||
2909            test x"$samba_cv_WITH_AFS" = x"auto"; then
2910                 AC_MSG_WARN([AFS cannot be supported without afs.h])
2911         else
2912                 AC_MSG_ERROR([AFS cannot be supported without afs.h])
2913         fi
2914     else
2915         have_afs_headers=yes
2916     fi
2919 if test x"$samba_cv_WITH_FAKE_KASERVER" != x"no" && test x"$have_afs_headers" = x"yes"; then
2920     AC_DEFINE(WITH_FAKE_KASERVER,1,[Whether to include AFS fake-kaserver support])
2923 #################################################
2924 # check whether to compile AFS/NT ACL mapping module
2925 samba_cv_WITH_VFS_AFSACL=no
2926 AC_MSG_CHECKING(whether to use AFS fake-kaserver)
2927 AC_ARG_WITH(vfs-afsacl,
2928 [  --with-vfs-afsacl       Include AFS to NT ACL mapping module (default=no) ],
2929 [ case "$withval" in
2930   yes|auto)
2931     AC_MSG_RESULT($withval)
2932     samba_cv_WITH_VFS_AFSACL=yes
2933     ;;
2934   *)
2935     AC_MSG_RESULT(no)
2936     ;;
2937   esac ],
2938   AC_MSG_RESULT(no)
2941 if test x"$samba_cv_WITH_VFS_AFSACL" = x"yes"; then
2942    default_shared_modules="$default_shared_modules vfs_afsacl"
2944         
2945 if test x"$samba_cv_WITH_AFS" != x"no" && test x"$have_afs_headers" = x"yes"; then
2946     AC_DEFINE(WITH_AFS,1,[Whether to include AFS clear-text auth support])
2949 #################################################
2950 # check for the DFS clear-text auth system
2951 AC_MSG_CHECKING(whether to use DFS clear-text auth)
2952 AC_ARG_WITH(dfs,
2953 [  --with-dce-dfs          Include DCE/DFS clear-text auth support (default=no)],
2954 [ case "$withval" in
2955   yes)
2956     AC_MSG_RESULT(yes)
2957     AC_DEFINE(WITH_DFS,1,[Whether to include DFS support])
2958     ;;
2959   *)
2960     AC_MSG_RESULT(no)
2961     ;;
2962   esac ],
2963   AC_MSG_RESULT(no)
2966 ########################################################
2967 # Compile with LDAP support?
2969 with_ldap_support=auto
2970 AC_MSG_CHECKING([for LDAP support])
2972 AC_ARG_WITH(ldap,
2973 [  --with-ldap             LDAP support (default yes)],
2974 [ case "$withval" in
2975     yes|no)
2976         with_ldap_support=$withval
2977         ;;
2978   esac ])
2980 AC_MSG_RESULT($with_ldap_support)
2982 SMBLDAP=""
2983 AC_SUBST(SMBLDAP)
2984 SMBLDAPUTIL=""
2985 AC_SUBST(SMBLDAPUTIL)
2986 if test x"$with_ldap_support" != x"no"; then
2988   ##################################################################
2989   # first test for ldap.h and lber.h
2990   # (ldap.h is required for this test)
2991   AC_CHECK_HEADERS(ldap.h lber.h)
2992   
2993   if test x"$ac_cv_header_ldap_h" != x"yes"; then
2994         if test x"$with_ldap_support" = x"yes"; then
2995          AC_MSG_ERROR(ldap.h is needed for LDAP support)
2996         else
2997          AC_MSG_WARN(ldap.h is needed for LDAP support)
2998         fi
2999         
3000         with_ldap_support=no
3001   fi
3004 if test x"$with_ldap_support" != x"no"; then
3005   ac_save_LIBS=$LIBS
3007   ##################################################################
3008   # we might need the lber lib on some systems. To avoid link errors
3009   # this test must be before the libldap test
3010   AC_CHECK_LIB_EXT(lber, LDAP_LIBS, ber_scanf)
3012   ########################################################
3013   # now see if we can find the ldap libs in standard paths
3014   AC_CHECK_LIB_EXT(ldap, LDAP_LIBS, ldap_init)
3016   ########################################################
3017   # If we have LDAP, does it's rebind procedure take 2 or 3 arguments?
3018   # Check found in pam_ldap 145.
3019   AC_CHECK_FUNC_EXT(ldap_set_rebind_proc,$LDAP_LIBS)
3021   LIBS="$LIBS $LDAP_LIBS"
3022   AC_CACHE_CHECK(whether ldap_set_rebind_proc takes 3 arguments, smb_ldap_cv_ldap_set_rebind_proc, [
3023     AC_TRY_COMPILE([
3024         #include <lber.h>
3025         #include <ldap.h>], 
3026         [ldap_set_rebind_proc(0, 0, 0);], 
3027         [smb_ldap_cv_ldap_set_rebind_proc=3], 
3028         [smb_ldap_cv_ldap_set_rebind_proc=2]
3029     ) 
3030   ])
3031   
3032   AC_DEFINE_UNQUOTED(LDAP_SET_REBIND_PROC_ARGS, $smb_ldap_cv_ldap_set_rebind_proc, [Number of arguments to ldap_set_rebind_proc])
3034   AC_CHECK_FUNC_EXT(ldap_dn2ad_canonical,$LDAP_LIBS)    
3035   
3036   if test x"$ac_cv_lib_ext_ldap_ldap_init" = x"yes"; then
3037     AC_DEFINE(HAVE_LDAP,1,[Whether ldap is available])
3038     CPPFLAGS="$CPPFLAGS -DLDAP_DEPRECATED"
3039     default_static_modules="$default_static_modules pdb_ldap idmap_ldap";
3040     default_shared_modules="$default_shared_modules";
3041     SMBLDAP="lib/smbldap.o"
3042     SMBLDAPUTIL="lib/smbldap_util.o"
3043     with_ldap_support=yes
3044     AC_MSG_CHECKING(whether LDAP support is used)
3045     AC_MSG_RESULT(yes)
3046   else
3047     if test x"$with_ldap_support" = x"yes"; then
3048         AC_MSG_ERROR(libldap is needed for LDAP support)
3049     else
3050         AC_MSG_WARN(libldap is needed for LDAP support)
3051     fi
3052     
3053     LDAP_LIBS=""
3054     with_ldap_support=no
3055   fi
3056   LIBS=$ac_save_LIBS
3060 #################################################
3061 # active directory support
3063 with_ads_support=auto
3064 AC_MSG_CHECKING([for Active Directory and krb5 support])
3066 AC_ARG_WITH(ads,
3067 [  --with-ads              Active Directory support (default auto)],
3068 [ case "$withval" in
3069     yes|no)
3070         with_ads_support="$withval"
3071         ;;
3072   esac ])
3074 AC_MSG_RESULT($with_ads_support)
3076 FOUND_KRB5=no
3077 KRB5_LIBS=""
3079 if test x"$with_ldap_support" != x"yes"; then
3080     if test x"$with_ads_support" = x"yes"; then
3081         AC_MSG_ERROR(Active Directory Support requires LDAP support)
3082     elif test x"$with_ads_support" != x"no"; then
3083         AC_MSG_WARN(Active Directory Support requires LDAP support)
3084     fi
3085     with_ads_support=no
3088 AC_CHECK_FUNC_EXT(ldap_initialize,$LDAP_LIBS)
3090 if test x"$ac_cv_func_ext_ldap_initialize" != x"yes"; then
3091     if test x"$with_ads_support" = x"yes"; then
3092         AC_MSG_ERROR(Active Directory Support requires ldap_initialize)
3093     fi
3094     AC_MSG_WARN(Active Directory Support requires ldap_initialize)
3095     with_ads_support=no
3098 AC_CHECK_FUNC_EXT(ldap_domain2hostlist,$LDAP_LIBS)
3100 if test x"$ac_cv_func_ext_ldap_domain2hostlist" != x"yes"; then
3101     if test x"$with_ads_support" = x"yes"; then
3102         AC_MSG_ERROR(Active Directory Support requires ldap_domain2hostlist)
3103     fi
3104     AC_MSG_WARN(Active Directory Support requires ldap_domain2hostlist)
3105     with_ads_support=no
3108 AC_CHECK_FUNC_EXT(ldap_add_result_entry,$LDAP_LIBS)
3110 if test x"$ac_cv_func_ext_ldap_add_result_entry" != x"yes"; then
3111     if test x"$with_ads_support" = x"yes"; then
3112         AC_MSG_ERROR(Active Directory Support requires ldap_add_result_entry)
3113     fi
3114     AC_MSG_WARN(Active Directory Support requires ldap_add_result_entry)
3115     with_ads_support=no
3118 if test x"$with_ads_support" != x"no"; then
3120   # Do no harm to the values of CFLAGS and LIBS while testing for
3121   # Kerberos support.
3123   if test x$FOUND_KRB5 = x"no"; then
3124     #################################################
3125     # check for location of Kerberos 5 install
3126     AC_MSG_CHECKING(for kerberos 5 install path)
3127     AC_ARG_WITH(krb5,
3128     [  --with-krb5=base-dir    Locate Kerberos 5 support (default=/usr)],
3129     [ case "$withval" in
3130       no)
3131         AC_MSG_RESULT(no krb5-path given)
3132         ;;
3133       yes)
3134         AC_MSG_RESULT(/usr)
3135         FOUND_KRB5=yes
3136         ;;
3137       *)
3138         AC_MSG_RESULT($withval)
3139         KRB5_CFLAGS="-I$withval/include"
3140         KRB5_CPPFLAGS="-I$withval/include"
3141         KRB5_LDFLAGS="-L$withval/lib"
3142         FOUND_KRB5=yes
3143         if test -x "$withval/bin/krb5-config"; then
3144                 KRB5CONFIG=$withval/bin/krb5-config
3145         fi
3146         ;;
3147       esac ],
3148       AC_MSG_RESULT(no krb5-path given)
3149     )
3150   fi
3152   #################################################
3153   # check for krb5-config from recent MIT and Heimdal kerberos 5
3154   AC_PATH_PROG(KRB5CONFIG, krb5-config)
3155   AC_MSG_CHECKING(for working krb5-config)
3156   if test -x "$KRB5CONFIG"; then
3157     ac_save_CFLAGS=$CFLAGS
3158     CFLAGS="";export CFLAGS
3159     ac_save_LDFLAGS=$LDFLAGS
3160     LDFLAGS="";export LDFLAGS
3161     KRB5_LIBS="`$KRB5CONFIG --libs gssapi`"
3162     KRB5_LDFLAGS="`$KRB5CONFIG --libs gssapi | sed s/-lgss.*//`"
3163     KRB5_CFLAGS="`$KRB5CONFIG --cflags | sed s/@INCLUDE_des@//`" 
3164     KRB5_CPPFLAGS="`$KRB5CONFIG --cflags | sed s/@INCLUDE_des@//`"
3165     CFLAGS=$ac_save_CFLAGS;export CFLAGS
3166     LDFLAGS=$ac_save_LDFLAGS;export LDFLAGS
3167     FOUND_KRB5=yes
3168     AC_MSG_RESULT(yes)
3169   else
3170     AC_MSG_RESULT(no. Fallback to previous krb5 detection strategy)
3171   fi
3173   if test x$FOUND_KRB5 = x"no"; then
3174     #################################################
3175     # see if this box has the SuSE location for the heimdal krb implementation
3176     AC_MSG_CHECKING(for /usr/include/heimdal)
3177     if test -d /usr/include/heimdal; then
3178       if test -f /usr/lib/heimdal/lib/libkrb5.a; then
3179           KRB5_CFLAGS="-I/usr/include/heimdal"
3180           KRB5_CPPFLAGS="-I/usr/include/heimdal"
3181           KRB5_LDFLAGS="-L/usr/lib/heimdal/lib"
3182           AC_MSG_RESULT(yes)
3183       else
3184           KRB5_CFLAGS="-I/usr/include/heimdal"
3185           KRB5_CPPFLAGS="-I/usr/include/heimdal"
3186           AC_MSG_RESULT(yes)
3187       fi
3188     else
3189       AC_MSG_RESULT(no)
3190     fi
3191   fi
3193   if test x$FOUND_KRB5 = x"no"; then
3194     #################################################
3195     # see if this box has the RedHat location for kerberos
3196     AC_MSG_CHECKING(for /usr/kerberos)
3197     if test -d /usr/kerberos -a -f /usr/kerberos/lib/libkrb5.a; then
3198       KRB5_LDFLAGS="-L/usr/kerberos/lib"
3199       KRB5_CFLAGS="-I/usr/kerberos/include"
3200       KRB5_CPPFLAGS="-I/usr/kerberos/include"
3201       AC_MSG_RESULT(yes)
3202     else
3203       AC_MSG_RESULT(no)
3204     fi
3205   fi
3207   ac_save_CFLAGS=$CFLAGS
3208   ac_save_CPPFLAGS=$CPPFLAGS
3209   ac_save_LDFLAGS=$LDFLAGS
3211   CFLAGS="$KRB5_CFLAGS $CFLAGS"
3212   CPPFLAGS="$KRB5_CPPFLAGS $CPPFLAGS"
3213   LDFLAGS="$KRB5_LDFLAGS $LDFLAGS"
3215   KRB5_LIBS="$KRB5_LDFLAGS $KRB5_LIBS"
3217   # now check for krb5.h. Some systems have the libraries without the headers!
3218   # note that this check is done here to allow for different kerberos
3219   # include paths
3220   AC_CHECK_HEADERS(krb5.h)
3222   if test x"$ac_cv_header_krb5_h" = x"no"; then
3224     # Give a warning if AD support was not explicitly requested,
3225     # i.e with_ads_support = auto, otherwise die with an error.
3227     if test x"$with_ads_support" = x"yes"; then
3228       AC_MSG_ERROR([Active Directory cannot be supported without krb5.h])
3229     else
3230       AC_MSG_WARN([Active Directory cannot be supported without krb5.h])
3231     fi
3233     # Turn off AD support and restore CFLAGS and LIBS variables
3235     with_ads_support="no"
3236     
3237     CFLAGS=$ac_save_CFLAGS
3238     CPPFLAGS=$ac_save_CPPFLAGS
3239     LDFLAGS=$ac_save_LDFLAGS
3240   fi
3243 # Now we have determined whether we really want ADS support
3245 if test x"$with_ads_support" != x"no"; then
3246   ac_save_LIBS=$LIBS
3248   # now check for gssapi headers.  This is also done here to allow for
3249   # different kerberos include paths
3250   AC_CHECK_HEADERS(gssapi.h gssapi/gssapi_generic.h gssapi/gssapi.h com_err.h)
3252   ##################################################################
3253   # we might need the k5crypto and com_err libraries on some systems
3254   AC_CHECK_LIB_EXT(com_err, KRB5_LIBS, _et_list)
3255   AC_CHECK_LIB_EXT(k5crypto, KRB5_LIBS, krb5_encrypt_data)
3257   # Heimdal checks.
3258   AC_CHECK_LIB_EXT(crypto, KRB5_LIBS, des_set_key)
3259   AC_CHECK_LIB_EXT(asn1, KRB5_LIBS, copy_Authenticator)
3260   AC_CHECK_LIB_EXT(roken, KRB5_LIBS, roken_getaddrinfo_hostspec)
3262   # Heimdal checks. On static Heimdal gssapi must be linked before krb5.
3263   AC_CHECK_LIB_EXT(gssapi, KRB5_LIBS, gss_display_status,[],[],
3264                                 AC_DEFINE(HAVE_GSSAPI,1,[Whether GSSAPI is available]))
3266   ########################################################
3267   # now see if we can find the krb5 libs in standard paths
3268   # or as specified above
3269   AC_CHECK_LIB_EXT(krb5, KRB5_LIBS, krb5_mk_req_extended)
3270   AC_CHECK_LIB_EXT(krb5, KRB5_LIBS, krb5_kt_compare)
3272   ########################################################
3273   # now see if we can find the gssapi libs in standard paths
3274   AC_CHECK_LIB_EXT(gssapi_krb5, KRB5_LIBS,gss_display_status,[],[],
3275             AC_DEFINE(HAVE_GSSAPI,1,[Whether GSSAPI is available]))
3277   AC_CHECK_FUNC_EXT(krb5_set_real_time, $KRB5_LIBS)
3278   AC_CHECK_FUNC_EXT(krb5_set_default_in_tkt_etypes, $KRB5_LIBS)
3279   AC_CHECK_FUNC_EXT(krb5_set_default_tgs_ktypes, $KRB5_LIBS)
3280   AC_CHECK_FUNC_EXT(krb5_principal2salt, $KRB5_LIBS)
3281   AC_CHECK_FUNC_EXT(krb5_use_enctype, $KRB5_LIBS)
3282   AC_CHECK_FUNC_EXT(krb5_string_to_key, $KRB5_LIBS) 
3283   AC_CHECK_FUNC_EXT(krb5_get_pw_salt, $KRB5_LIBS)
3284   AC_CHECK_FUNC_EXT(krb5_string_to_key_salt, $KRB5_LIBS) 
3285   AC_CHECK_FUNC_EXT(krb5_auth_con_setkey, $KRB5_LIBS)
3286   AC_CHECK_FUNC_EXT(krb5_auth_con_setuseruserkey, $KRB5_LIBS) 
3287   AC_CHECK_FUNC_EXT(krb5_locate_kdc, $KRB5_LIBS)
3288   AC_CHECK_FUNC_EXT(krb5_get_permitted_enctypes, $KRB5_LIBS) 
3289   AC_CHECK_FUNC_EXT(krb5_get_default_in_tkt_etypes, $KRB5_LIBS) 
3290   AC_CHECK_FUNC_EXT(krb5_free_ktypes, $KRB5_LIBS)
3291   AC_CHECK_FUNC_EXT(krb5_free_data_contents, $KRB5_LIBS)
3292   AC_CHECK_FUNC_EXT(krb5_principal_get_comp_string, $KRB5_LIBS)
3293   AC_CHECK_FUNC_EXT(krb5_free_unparsed_name, $KRB5_LIBS)
3294   AC_CHECK_FUNC_EXT(krb5_free_keytab_entry_contents, $KRB5_LIBS)
3295   AC_CHECK_FUNC_EXT(krb5_kt_free_entry, $KRB5_LIBS)
3296   AC_CHECK_FUNC_EXT(krb5_krbhst_get_addrinfo, $KRB5_LIBS)
3297   AC_CHECK_FUNC_EXT(krb5_c_enctype_compare, $KRB5_LIBS)
3298   AC_CHECK_FUNC_EXT(krb5_enctypes_compatible_keys, $KRB5_LIBS)
3299   AC_CHECK_FUNC_EXT(krb5_crypto_init, $KRB5_LIBS)
3300   AC_CHECK_FUNC_EXT(krb5_crypto_destroy, $KRB5_LIBS)
3301   AC_CHECK_FUNC_EXT(krb5_decode_ap_req, $KRB5_LIBS)
3302   AC_CHECK_FUNC_EXT(decode_krb5_ap_req, $KRB5_LIBS)
3303   AC_CHECK_FUNC_EXT(krb5_free_ap_req, $KRB5_LIBS)
3304   AC_CHECK_FUNC_EXT(free_AP_REQ, $KRB5_LIBS)
3305   AC_CHECK_FUNC_EXT(krb5_c_verify_checksum, $KRB5_LIBS)
3306   AC_CHECK_FUNC_EXT(krb5_principal_compare_any_realm, $KRB5_LIBS)
3307   AC_CHECK_FUNC_EXT(krb5_parse_name_norealm, $KRB5_LIBS)
3308   AC_CHECK_FUNC_EXT(krb5_princ_size, $KRB5_LIBS)
3309   AC_CHECK_FUNC_EXT(krb5_get_init_creds_opt_set_pac_request, $KRB5_LIBS)
3310   AC_CHECK_FUNC_EXT(krb5_get_renewed_creds, $KRB5_LIBS)
3311   AC_CHECK_FUNC_EXT(krb5_get_kdc_cred, $KRB5_LIBS)
3313   LIBS="$KRB5_LIBS $LIBS"
3315   AC_CACHE_CHECK(whether krb5_verify_checksum takes 7 arguments, smb_krb5_verify_checksum, [
3316     AC_TRY_COMPILE([
3317         #include <krb5.h>], 
3318         [krb5_verify_checksum(0, 0, 0, 0, 0, 0, 0);], 
3319         [smb_krb5_verify_checksum=7], 
3320         [smb_krb5_verify_checksum=6], 
3321     ) 
3322   ])
3323   AC_DEFINE_UNQUOTED(KRB5_VERIFY_CHECKSUM_ARGS, $smb_krb5_verify_checksum, [Number of arguments to krb5_verify_checksum])
3325   AC_CACHE_CHECK([for checksum in krb5_checksum],
3326                 samba_cv_HAVE_CHECKSUM_IN_KRB5_CHECKSUM,[
3327     AC_TRY_COMPILE([#include <krb5.h>],
3328       [krb5_checksum cksum; cksum.checksum.length = 0;],
3329       samba_cv_HAVE_CHECKSUM_IN_KRB5_CHECKSUM=yes,
3330       samba_cv_HAVE_CHECKSUM_IN_KRB5_CHECKSUM=no)])
3332   if test x"$samba_cv_HAVE_CHECKSUM_IN_KRB5_CHECKSUM" = x"yes"; then
3333     AC_DEFINE(HAVE_CHECKSUM_IN_KRB5_CHECKSUM,1,
3334                [Whether the krb5_checksum struct has a checksum property])
3335   fi
3337   AC_CACHE_CHECK([for etype in EncryptedData],
3338                 samba_cv_HAVE_ETYPE_IN_ENCRYPTEDDATA,[
3339     AC_TRY_COMPILE([#include <krb5.h>],
3340       [EncryptedData edata; edata.etype = 0;],
3341       samba_cv_HAVE_ETYPE_IN_ENCRYPTEDDATA=yes,
3342       samba_cv_HAVE_ETYPE_IN_ENCRYPTEDDATA=no)])
3344   if test x"$samba_cv_HAVE_ETYPE_IN_ENCRYPTEDDATA" = x"yes"; then
3345     AC_DEFINE(HAVE_ETYPE_IN_ENCRYPTEDDATA,1,
3346                [Whether the EncryptedData struct has a etype property])
3347   fi
3349   AC_CACHE_CHECK([for ticket pointer in krb5_ap_req],
3350                 samba_cv_HAVE_TICKET_POINTER_IN_KRB5_AP_REQ,[
3351     AC_TRY_COMPILE([#include <krb5.h>],
3352       [krb5_ap_req *ap_req; ap_req->ticket = NULL;],
3353       samba_cv_HAVE_TICKET_POINTER_IN_KRB5_AP_REQ=yes,
3354       samba_cv_HAVE_TICKET_POINTER_IN_KRB5_AP_REQ=no)])
3356   if test x"$samba_cv_HAVE_TICKET_POINTER_IN_KRB5_AP_REQ" = x"yes"; then
3357     AC_DEFINE(HAVE_TICKET_POINTER_IN_KRB5_AP_REQ,1,
3358                [Whether the krb5_ap_req struct has a ticket pointer])
3359   fi
3361   AC_CACHE_CHECK([for krb5_crypto type],
3362                 samba_cv_HAVE_KRB5_CRYPTO,[
3363     AC_TRY_COMPILE([#include <krb5.h>],
3364       [krb5_crypto crypto;],
3365       samba_cv_HAVE_KRB5_CRYPTO=yes,
3366       samba_cv_HAVE_KRB5_CRYPTO=no)])
3368   if test x"$samba_cv_HAVE_KRB5_CRYPTO" = x"yes"; then
3369     AC_DEFINE(HAVE_KRB5_CRYPTO,1,
3370                [Whether the type krb5_crypto exists])
3371   fi
3373   AC_CACHE_CHECK([for krb5_encrypt_block type],
3374                 samba_cv_HAVE_KRB5_ENCRYPT_BLOCK,[
3375     AC_TRY_COMPILE([#include <krb5.h>],
3376       [krb5_encrypt_block block;],
3377       samba_cv_HAVE_KRB5_ENCRYPT_BLOCK=yes,
3378       samba_cv_HAVE_KRB5_ENCRYPT_BLOCK=no)])
3380   if test x"$samba_cv_HAVE_KRB5_ENCRYPT_BLOCK" = x"yes"; then
3381     AC_DEFINE(HAVE_KRB5_ENCRYPT_BLOCK,1,
3382                [Whether the type krb5_encrypt_block exists])
3383   fi
3385   AC_CACHE_CHECK([for addrtype in krb5_address],
3386                 samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS,[
3387     AC_TRY_COMPILE([#include <krb5.h>],
3388       [krb5_address kaddr; kaddr.addrtype = ADDRTYPE_INET;],
3389       samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS=yes,
3390       samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS=no)])
3392   if test x"$samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS" = x"yes"; then
3393     AC_DEFINE(HAVE_ADDRTYPE_IN_KRB5_ADDRESS,1,
3394                [Whether the krb5_address struct has a addrtype property])
3395   fi
3397   AC_CACHE_CHECK([for addr_type in krb5_address],
3398                  samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS,[
3399     AC_TRY_COMPILE([#include <krb5.h>],
3400       [krb5_address kaddr; kaddr.addr_type = KRB5_ADDRESS_INET;],
3401       samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS=yes,
3402       samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS=no)])
3404   if test x"$samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS" = x"yes"; then
3405     AC_DEFINE(HAVE_ADDR_TYPE_IN_KRB5_ADDRESS,1,
3406               [Whether the krb5_address struct has a addr_type property])
3407   fi
3409   AC_CACHE_CHECK([for enc_part2 in krb5_ticket], 
3410                  samba_cv_HAVE_KRB5_TKT_ENC_PART2,
3411                  [AC_TRY_COMPILE([#include <krb5.h>],
3412     [krb5_ticket tkt; tkt.enc_part2->authorization_data[0]->contents = NULL;],
3413     samba_cv_HAVE_KRB5_TKT_ENC_PART2=yes,samba_cv_HAVE_KRB5_TKT_ENC_PART2=no)])
3415   if test x"$samba_cv_HAVE_KRB5_TKT_ENC_PART2" = x"yes"; then
3416     AC_DEFINE(HAVE_KRB5_TKT_ENC_PART2,1,
3417               [Whether the krb5_ticket struct has a enc_part2 property])
3418   fi
3420   AC_CACHE_CHECK([for keyblock in krb5_creds],
3421                  samba_cv_HAVE_KRB5_KEYBLOCK_IN_CREDS,[
3422     AC_TRY_COMPILE([#include <krb5.h>],
3423       [krb5_creds creds; krb5_keyblock kb; creds.keyblock = kb;],
3424       samba_cv_HAVE_KRB5_KEYBLOCK_IN_CREDS=yes,
3425       samba_cv_HAVE_KRB5_KEYBLOCK_IN_CREDS=no)])
3427   if test x"$samba_cv_HAVE_KRB5_KEYBLOCK_IN_CREDS" = x"yes"; then
3428     AC_DEFINE(HAVE_KRB5_KEYBLOCK_IN_CREDS,1,
3429               [Whether the krb5_creds struct has a keyblock property])
3430   fi
3432   AC_CACHE_CHECK([for session in krb5_creds],
3433                  samba_cv_HAVE_KRB5_SESSION_IN_CREDS,[
3434     AC_TRY_COMPILE([#include <krb5.h>],
3435       [krb5_creds creds; krb5_keyblock kb; creds.session = kb;],
3436       samba_cv_HAVE_KRB5_SESSION_IN_CREDS=yes,
3437       samba_cv_HAVE_KRB5_SESSION_IN_CREDS=no)])
3439   if test x"$samba_cv_HAVE_KRB5_SESSION_IN_CREDS" = x"yes"; then
3440     AC_DEFINE(HAVE_KRB5_SESSION_IN_CREDS,1,
3441               [Whether the krb5_creds struct has a session property])
3442   fi
3444   AC_CACHE_CHECK([for keyvalue in krb5_keyblock],
3445                  samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE,[
3446     AC_TRY_COMPILE([#include <krb5.h>],
3447       [krb5_keyblock key; key.keyvalue.data = NULL;],
3448       samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE=yes,
3449       samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE=no)])
3451   if test x"$samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE" = x"yes"; then
3452     AC_DEFINE(HAVE_KRB5_KEYBLOCK_KEYVALUE,1,
3453               [Whether the krb5_keyblock struct has a keyvalue property])
3454   fi
3456   AC_CACHE_CHECK([for ENCTYPE_ARCFOUR_HMAC_MD5],
3457                  samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5,[
3458     AC_TRY_COMPILE([#include <krb5.h>],
3459       [krb5_enctype enctype; enctype = ENCTYPE_ARCFOUR_HMAC_MD5;],
3460       samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5=yes,
3461       samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5=no)])
3462   AC_CACHE_CHECK([for KEYTYPE_ARCFOUR_56],
3463                  samba_cv_HAVE_KEYTYPE_ARCFOUR_56,[
3464     AC_TRY_COMPILE([#include <krb5.h>],
3465       [krb5_keytype keytype; keytype = KEYTYPE_ARCFOUR_56;],
3466       samba_cv_HAVE_KEYTYPE_ARCFOUR_56=yes,
3467       samba_cv_HAVE_KEYTYPE_ARCFOUR_56=no)])
3468 # Heimdals with KEYTYPE_ARCFOUR but not KEYTYPE_ARCFOUR_56 are broken
3469 # w.r.t. arcfour and windows, so we must not enable it here
3470   if test x"$samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5" = x"yes" -a\
3471           x"$samba_cv_HAVE_KEYTYPE_ARCFOUR_56" = x"yes"; then
3472     AC_DEFINE(HAVE_ENCTYPE_ARCFOUR_HMAC_MD5,1,
3473               [Whether the ENCTYPE_ARCFOUR_HMAC_MD5 key type is available])
3474   fi
3476   AC_CACHE_CHECK([for AP_OPTS_USE_SUBKEY],
3477                  samba_cv_HAVE_AP_OPTS_USE_SUBKEY,[
3478     AC_TRY_COMPILE([#include <krb5.h>],
3479       [krb5_flags ap_options; ap_options = AP_OPTS_USE_SUBKEY;],
3480       samba_cv_HAVE_AP_OPTS_USE_SUBKEY=yes,
3481       samba_cv_HAVE_AP_OPTS_USE_SUBKEY=no)])
3483   if test x"$samba_cv_HAVE_AP_OPTS_USE_SUBKEY" = x"yes"; then
3484     AC_DEFINE(HAVE_AP_OPTS_USE_SUBKEY,1,
3485               [Whether the AP_OPTS_USE_SUBKEY ap option is available])
3486   fi
3488   AC_CACHE_CHECK([for KV5M_KEYTAB],
3489                  samba_cv_HAVE_KV5M_KEYTAB,[
3490     AC_TRY_COMPILE([#include <krb5.h>],
3491       [krb5_keytab_entry entry; entry.magic = KV5M_KEYTAB;],
3492       samba_cv_HAVE_KV5M_KEYTAB=yes,
3493       samba_cv_HAVE_KV5M_KEYTAB=no)])
3495   if test x"$samba_cv_HAVE_KV5M_KEYTAB" = x"yes"; then
3496       AC_DEFINE(HAVE_KV5M_KEYTAB,1,
3497              [Whether the KV5M_KEYTAB option is available])
3498   fi
3500   AC_CACHE_CHECK([for KRB5_KU_OTHER_CKSUM],
3501                  samba_cv_HAVE_KRB5_KU_OTHER_CKSUM,[
3502     AC_TRY_COMPILE([#include <krb5.h>],
3503       [krb5_keyusage usage = KRB5_KU_OTHER_CKSUM;],
3504       samba_cv_HAVE_KRB5_KU_OTHER_CKSUM=yes,
3505       samba_cv_HAVE_KRB5_KU_OTHER_CKSUM=no)])
3507   if test x"$samba_cv_HAVE_KRB5_KU_OTHER_CKSUM" = x"yes"; then
3508     AC_DEFINE(HAVE_KRB5_KU_OTHER_CKSUM,1,
3509               [Whether KRB5_KU_OTHER_CKSUM is available])
3510   fi
3511   
3512   AC_CACHE_CHECK([for KRB5_KEYUSAGE_APP_DATA_CKSUM],
3513                  samba_cv_HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM,[
3514     AC_TRY_COMPILE([#include <krb5.h>],
3515       [krb5_keyusage usage = KRB5_KEYUSAGE_APP_DATA_CKSUM;],
3516       samba_cv_HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM=yes,
3517       samba_cv_HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM=no)])
3519   if test x"$samba_cv_HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM" = x"yes"; then
3520     AC_DEFINE(HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM,1,
3521               [Whether KRB5_KEYUSAGE_APP_DATA_CKSUM is available])
3522   fi
3524   AC_CACHE_CHECK([for the krb5_princ_component macro],
3525                 samba_cv_HAVE_KRB5_PRINC_COMPONENT,[
3526     AC_TRY_LINK([#include <krb5.h>],
3527       [const krb5_data *pkdata; krb5_context context; krb5_principal principal; pkdata = krb5_princ_component(context, principal, 0);],
3528       samba_cv_HAVE_KRB5_PRINC_COMPONENT=yes,
3529       samba_cv_HAVE_KRB5_PRINC_COMPONENT=no)])
3531   if test x"$samba_cv_HAVE_KRB5_PRINC_COMPONENT" = x"yes"; then
3532     AC_DEFINE(HAVE_KRB5_PRINC_COMPONENT,1,
3533                [Whether krb5_princ_component is available])
3534   fi
3536   AC_CACHE_CHECK([for key in krb5_keytab_entry],
3537                  samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY,[
3538     AC_TRY_COMPILE([#include <krb5.h>],
3539       [krb5_keytab_entry entry; krb5_keyblock e; entry.key = e;],
3540       samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY=yes,
3541       samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY=no)])
3543   if test x"$samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY" = x"yes"; then
3544     AC_DEFINE(HAVE_KRB5_KEYTAB_ENTRY_KEY,1,
3545               [Whether krb5_keytab_entry has key member])
3546   fi
3548   AC_CACHE_CHECK([for keyblock in krb5_keytab_entry],
3549                  samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK,[
3550     AC_TRY_COMPILE([#include <krb5.h>],
3551       [krb5_keytab_entry entry; entry.keyblock.keytype = 0;],
3552       samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK=yes,
3553       samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK=no)])
3555   if test x"$samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK" = x"yes"; then
3556     AC_DEFINE(HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK,1,
3557               [Whether krb5_keytab_entry has keyblock member])
3558   fi
3560   if test x"$ac_cv_lib_ext_krb5_krb5_mk_req_extended" = x"yes"; then
3561     AC_DEFINE(HAVE_KRB5,1,[Whether to have KRB5 support])
3562     AC_DEFINE(WITH_ADS,1,[Whether to include Active Directory support])
3563     AC_MSG_CHECKING(whether Active Directory and krb5 support is used)
3564     AC_MSG_RESULT(yes)
3565   else
3566     if test x"$with_ads_support" = x"yes"; then
3567         AC_MSG_ERROR(libkrb5 is needed for Active Directory support)
3568     else
3569         AC_MSG_WARN(libkrb5 is needed for Active Directory support)
3570     fi
3571     KRB5_LIBS=""
3572     with_ads_support=no 
3573   fi
3575   AC_CACHE_CHECK([for WRFILE: keytab support],
3576                 samba_cv_HAVE_WRFILE_KEYTAB,[
3577     AC_TRY_RUN([
3578 #include<krb5.h>
3579   main()
3580   {
3581     krb5_context context;
3582     krb5_keytab keytab;
3584     krb5_init_context(&context);
3585     return krb5_kt_resolve(context, "WRFILE:api", &keytab);
3586   }],
3587   samba_cv_HAVE_WRFILE_KEYTAB=yes,
3588   samba_cv_HAVE_WRFILE_KEYTAB=no)])
3590   if test x"$samba_cv_HAVE_WRFILE_KEYTAB" = x"yes"; then
3591       AC_DEFINE(HAVE_WRFILE_KEYTAB,1,
3592                [Whether the WRFILE:-keytab is supported])
3593   fi
3595   AC_CACHE_CHECK([for krb5_princ_realm returns krb5_realm or krb5_data],
3596                samba_cv_KRB5_PRINC_REALM_RETURNS_REALM,[
3597     AC_TRY_COMPILE([#include <krb5.h>],
3598     [
3599     krb5_context context;
3600     krb5_principal principal;
3601     krb5_realm realm; realm = *krb5_princ_realm(context, principal);],
3602     samba_cv_KRB5_PRINC_REALM_RETURNS_REALM=yes,
3603     samba_cv_KRB5_PRINC_REALM_RETURNS_REALM=no)])
3605   if test x"$samba_cv_KRB5_PRINC_REALM_RETURNS_REALM" = x"yes"; then
3606     AC_DEFINE(KRB5_PRINC_REALM_RETURNS_REALM,1,
3607               [Whether krb5_princ_realm returns krb5_realm or krb5_data])
3608   fi
3610 LIBS="$ac_save_LIBS"
3613 AC_CHECK_LIB_EXT(nscd, NSCD_LIBS, nscd_flush_cache)
3615 #################################################
3616 # check for automount support
3617 AC_MSG_CHECKING(whether to use automount)
3618 AC_ARG_WITH(automount,
3619 [  --with-automount        Include automount support (default=no)],
3620 [ case "$withval" in
3621   yes)
3622     AC_MSG_RESULT(yes)
3623     AC_DEFINE(WITH_AUTOMOUNT,1,[Whether to include automount support])
3624     ;;
3625   *)
3626     AC_MSG_RESULT(no)
3627     ;;
3628   esac ],
3629   AC_MSG_RESULT(no)
3632 #################################################
3633 # check for smbmount support
3634 AC_MSG_CHECKING(whether to use smbmount)
3635 AC_ARG_WITH(smbmount,
3636 [  --with-smbmount         Include smbmount (Linux only) support (default=no)],
3637 [ case "$withval" in
3638   yes)
3639         case "$host_os" in
3640         *linux*)
3641                 AC_MSG_RESULT(yes)
3642                 AC_DEFINE(WITH_SMBMOUNT,1,[Whether to build smbmount])
3643                 EXTRA_BIN_PROGS="$EXTRA_BIN_PROGS bin/smbmount bin/smbmnt bin/smbumount"
3644                 ;;
3645         *)
3646                 AC_MSG_ERROR(not on a linux system!)
3647                 ;;
3648         esac
3649     ;;
3650   *)
3651     AC_MSG_RESULT(no)
3652     ;;
3653   esac ],
3654   AC_MSG_RESULT(no)
3657 #################################################
3658 # check for mount- and umount.cifs support
3659 CIFSMOUNT_PROGS=""
3660 INSTALL_CIFSMOUNT=""
3661 UNINSTALL_CIFSMOUNT=""
3662 AC_MSG_CHECKING(whether to build mount.cifs and umount.cifs)
3663 AC_ARG_WITH(cifsmount,
3664 [  --with-cifsmount        Include mount.cifs and umount.cifs (Linux only) support (default=yes)],
3665 [ case "$withval" in
3666   no)
3667         AC_MSG_RESULT(no)
3668         ;;
3669   *)
3670         case "$host_os" in
3671         *linux*)
3672                 AC_MSG_RESULT(yes)
3673                 AC_DEFINE(WITH_CIFSMOUNT,1,[Whether to build mount.cifs and umount.cifs])
3674                 CIFSMOUNT_PROGS="bin/mount.cifs bin/umount.cifs"
3675                 INSTALL_CIFSMOUNT="installcifsmount"
3676                 UNINSTALL_CIFSMOUNT="uninstallcifsmount"
3677                 ;;
3678         *)
3679                 AC_MSG_ERROR(not on a linux system!)
3680                 ;;
3681         esac
3682     ;;
3683   esac ],
3684 [ case "$host_os" in
3685   *linux*)
3686         AC_MSG_RESULT(yes)
3687         AC_DEFINE(WITH_CIFSMOUNT,1,[Whether to build mount.cifs and umount.cifs])
3688         CIFSMOUNT_PROGS="bin/mount.cifs bin/umount.cifs"
3689         INSTALL_CIFSMOUNT="installcifsmount"
3690         UNINSTALL_CIFSMOUNT="uninstallcifsmount"
3691         ;;
3692   *)
3693         AC_MSG_RESULT(no)
3694         ;;
3695   esac ]
3699 #################################################
3700 # check for a PAM clear-text auth, accounts, password and session support
3701 with_pam_for_crypt=no
3702 AC_MSG_CHECKING(whether to use PAM)
3703 AC_ARG_WITH(pam,
3704 [  --with-pam              Include PAM support (default=no)],
3705 [ case "$withval" in
3706   yes)
3707     AC_MSG_RESULT(yes)
3708     if test x"$ac_cv_header_security_pam_appl_h" = x"no"; then
3709        if test x"$ac_cv_header_security_pam_modules_h" = x"no"; then
3710           if test x"$ac_cv_header_security__pam_macros_h" = x"no"; then
3711              AC_MSG_ERROR(--with-pam specified but no PAM headers found)
3712           fi
3713        fi
3714     fi
3715     AC_DEFINE(WITH_PAM,1,[Whether to include PAM support])
3716     AUTH_LIBS="$AUTH_LIBS -lpam"
3717     with_pam_for_crypt=yes
3718     ;;
3719   *)
3720     AC_MSG_RESULT(no)
3721     ;;
3722   esac ],
3723   AC_MSG_RESULT(no)
3726 # we can't build a pam module if we don't have pam.
3727 AC_CHECK_LIB(pam, pam_get_data, [AC_DEFINE(HAVE_LIBPAM,1,[Whether libpam is available])])
3729 #################################################
3730 # check for pam_smbpass support
3731 PAM_MODULES=""
3732 INSTALL_PAM_MODULES=""
3733 UNINSTALL_PAM_MODULES=""
3734 AC_MSG_CHECKING(whether to use pam_smbpass)
3735 AC_ARG_WITH(pam_smbpass,
3736 [  --with-pam_smbpass      Build PAM module for authenticating against passdb backends (default=no)],
3737 [ case "$withval" in
3738   yes)
3739     AC_MSG_RESULT(yes)
3741        # Conditions under which pam_smbpass should not be built.
3743        if test x$PICFLAGS = x; then
3744           AC_MSG_ERROR([No support for PIC code])
3745        elif test x"$ac_cv_header_security_pam_appl_h" = x"no"; then
3746           AC_MSG_ERROR([No security/pam_appl.h found])
3747        elif test x$ac_cv_lib_pam_pam_get_data = xno; then
3748           AC_MSG_ERROR([No libpam found])
3749        else
3750           AUTH_LIBS="$AUTH_LIBS -lpam"
3751           PAM_MODULES="pam_smbpass"
3752           INSTALL_PAM_MODULES="installpammodules"
3753           UNINSTALL_PAM_MODULES="uninstallpammodules"
3754        fi
3755     ;;
3756   *)
3757     AC_MSG_RESULT(no)
3758     ;;
3759   esac ],
3760   AC_MSG_RESULT(no)
3764 ###############################################
3765 # test for where we get crypt() from
3766 AC_SEARCH_LIBS(crypt, [crypt],
3767   [test "$ac_cv_search_crypt" = "none required" || AUTH_LIBS="-lcrypt $AUTH_LIBS"
3768   AC_DEFINE(HAVE_CRYPT,1,[Whether the system has the crypt() function])])
3771 ## moved after the check for -lcrypt in order to
3772 ## ensure that the necessary libraries are included
3773 ## check checking for truncated salt.  Wrapped by the
3774 ## $with_pam_for_crypt variable as above   --jerry
3776 if test $with_pam_for_crypt = no; then
3777 AC_CACHE_CHECK([for a crypt that needs truncated salt],samba_cv_HAVE_TRUNCATED_SALT,[
3778 crypt_LIBS="$LIBS"
3779 LIBS="$AUTH_LIBS $LIBS"
3780 AC_TRY_RUN([#include "${srcdir-.}/tests/crypttest.c"],
3781         samba_cv_HAVE_TRUNCATED_SALT=no,samba_cv_HAVE_TRUNCATED_SALT=yes,samba_cv_HAVE_TRUNCATED_SALT=cross)
3782 LIBS="$crypt_LIBS"])
3783 if test x"$samba_cv_HAVE_TRUNCATED_SALT" = x"yes"; then
3784         AC_DEFINE(HAVE_TRUNCATED_SALT,1,[Whether crypt needs truncated salt])
3789 ########################################################################################
3791 ## TESTS FOR SAM BACKENDS.  KEEP THESE GROUPED TOGETHER
3793 ########################################################################################
3795 #################################################
3796 # check for a LDAP password database configuration backwards compatibility
3797 AC_MSG_CHECKING(whether to use LDAP SAM 2.2 compatible configuration)
3798 AC_ARG_WITH(ldapsam,
3799 [  --with-ldapsam          Include LDAP SAM 2.2 compatible configuration (default=no)],
3800 [ case "$withval" in
3801   yes)
3802     AC_MSG_RESULT(yes)
3803     AC_DEFINE(WITH_LDAP_SAMCONFIG,1,[Whether to include 2.2 compatible LDAP SAM configuration])
3804     ;;
3805   *)
3806     AC_MSG_RESULT(no)
3807     ;;
3808   esac ],
3809   AC_MSG_RESULT(no)
3812 ########################################################################################
3814 ## END OF TESTS FOR SAM BACKENDS.  
3816 ########################################################################################
3818 #################################################
3819 # check for a NISPLUS_HOME support 
3820 AC_MSG_CHECKING(whether to use NISPLUS_HOME)
3821 AC_ARG_WITH(nisplus-home,
3822 [  --with-nisplus-home     Include NISPLUS_HOME support (default=no)],
3823 [ case "$withval" in
3824   yes)
3825     AC_MSG_RESULT(yes)
3826     AC_DEFINE(WITH_NISPLUS_HOME,1,[Whether to include nisplus_home support])
3827     ;;
3828   *)
3829     AC_MSG_RESULT(no)
3830     ;;
3831   esac ],
3832   AC_MSG_RESULT(no)
3835 #################################################
3836 # check for syslog logging
3837 AC_MSG_CHECKING(whether to use syslog logging)
3838 AC_ARG_WITH(syslog,
3839 [  --with-syslog           Include experimental SYSLOG support (default=no)],
3840 [ case "$withval" in
3841   yes)
3842     AC_MSG_RESULT(yes)
3843     AC_DEFINE(WITH_SYSLOG,1,[Whether to include experimental syslog support])
3844     ;;
3845   *)
3846     AC_MSG_RESULT(no)
3847     ;;
3848   esac ],
3849   AC_MSG_RESULT(no)
3852 #################################################
3853 # check for a shared memory profiling support
3854 AC_MSG_CHECKING(whether to use profiling)
3855 AC_ARG_WITH(profiling-data,
3856 [  --with-profiling-data   Include gathering source code profile information (default=no)],
3857 [ case "$withval" in
3858   yes)
3859     AC_MSG_RESULT(yes)
3860     AC_DEFINE(WITH_PROFILE,1,[Whether to use profiling])
3861     ;;
3862   *)
3863     AC_MSG_RESULT(no)
3864     ;;
3865   esac ],
3866   AC_MSG_RESULT(no)
3870 #################################################
3871 # check for experimental disk-quotas support
3873 samba_cv_WITH_QUOTAS=auto
3874 samba_cv_TRY_QUOTAS=no
3875 samba_cv_RUN_QUOTA_TESTS=auto
3876 samba_cv_WITH_SYS_QUOTAS=auto
3877 samba_cv_TRY_SYS_QUOTAS=auto
3878 samba_cv_SYSQUOTA_FOUND=no
3880 AC_MSG_CHECKING(whether to try disk-quotas support)
3881 AC_ARG_WITH(quotas,
3882 [  --with-quotas           Include disk-quota support (default=no)],
3883 [ case "$withval" in
3884   yes)
3885     AC_MSG_RESULT(yes)
3886     samba_cv_WITH_QUOTAS=yes
3887     samba_cv_TRY_QUOTAS=yes
3888     samba_cv_RUN_QUOTA_TESTS=yes
3889     #set sys quotas to auto in this case
3890     samba_cv_TRY_SYS_QUOTAS=auto
3891     ;;
3892   auto)
3893     AC_MSG_RESULT(auto)
3894     samba_cv_WITH_QUOTAS=auto
3895     samba_cv_TRY_QUOTAS=auto
3896     samba_cv_RUN_QUOTA_TESTS=auto
3897     #set sys quotas to auto in this case
3898     samba_cv_TRY_SYS_QUOTAS=auto
3899     ;;
3900   no)
3901     AC_MSG_RESULT(no)
3902     samba_cv_WITH_QUOTAS=no
3903     samba_cv_TRY_QUOTAS=no
3904     samba_cv_RUN_QUOTA_TESTS=no
3905     ;;
3906   *)
3907     AC_MSG_RESULT(${samba_cv_TRY_QUOTAS})
3908     ;;
3909   esac ],
3910   AC_MSG_RESULT(${samba_cv_TRY_QUOTAS})
3913 AC_MSG_CHECKING(whether to try the new lib/sysquotas.c interface)
3914 AC_ARG_WITH(sys-quotas,
3915 [  --with-sys-quotas       Include lib/sysquotas.c support (default=auto)],
3916 [ case "$withval" in
3917   yes)
3918     AC_MSG_RESULT(yes)
3919     samba_cv_WITH_SYS_QUOTAS=yes
3920     samba_cv_TRY_SYS_QUOTAS=yes
3921     samba_cv_RUN_QUOTA_TESTS=yes
3922     ;;
3923   auto)
3924     AC_MSG_RESULT(auto)
3925     samba_cv_WITH_SYS_QUOTAS=auto
3926     samba_cv_TRY_SYS_QUOTAS=auto
3927     samba_cv_RUN_QUOTA_TESTS=auto
3928     ;;
3929   no)
3930     AC_MSG_RESULT(no)
3931     samba_cv_WITH_SYS_QUOTAS=no
3932     samba_cv_TRY_SYS_QUOTAS=no
3933     ;;
3934   *)
3935     AC_MSG_RESULT(${samba_cv_TRY_SYS_QUOTAS})
3936     ;;
3937   esac ],
3938   AC_MSG_RESULT(${samba_cv_TRY_SYS_QUOTAS})
3941 if test x"$samba_cv_TRY_SYS_QUOTAS" = x"auto"; then
3942 AC_MSG_CHECKING(whether to try the lib/sysquotas.c interface on ${host_os})
3943   case "$host_os" in
3944         *linux*)
3945             AC_MSG_RESULT(yes)
3946             samba_cv_TRY_SYS_QUOTAS=yes
3947             samba_cv_RUN_QUOTA_TESTS=yes
3948             ;;
3949         *)
3950             AC_MSG_RESULT(no)
3951             samba_cv_TRY_SYS_QUOTAS=no
3952             ;;
3953   esac
3956 #############################################
3957 # only check for quota stuff if --with-quotas
3958 if test x"$samba_cv_RUN_QUOTA_TESTS" != x"no"; then
3960 case "$host_os" in
3961         # on linux we didn't need to test we have builtin support
3962         *linux*)
3963             samba_cv_SYSQUOTA_FOUND=yes
3964             AC_DEFINE(HAVE_QUOTACTL_LINUX,1,[Whether Linux quota support is available])
3965             samba_cv_sysquotas_file="lib/sysquotas_linux.c"
3966             AC_MSG_CHECKING(whether to use the lib/sysquotas_linux.c builtin support)
3967             AC_MSG_RESULT(yes)
3969             AC_DEFINE(HAVE_LINUX_XFS_QUOTAS,1,[Whether Linux xfs quota support is available])
3970             samba_cv_found_xfs_header=yes
3971             AC_MSG_CHECKING(whether to use the lib/sysquotas_xfs.c builtin support)
3972             AC_MSG_RESULT(yes)
3973             ;;
3974         *solaris*)
3975             # need to set this define when using static linking (BUG 1473)
3976             CPPFLAGS="$CPPFLAGS -DSUNOS5"
3977             ;;
3978         *)
3979             ;;
3980 esac
3982 # some broken header files need this
3983 AC_CHECK_HEADER(asm/types.h,[
3984             AC_DEFINE(HAVE_ASM_TYPES_H,1,[check for <asm/types.h>])
3985             AC_ADD_INCLUDE(<asm/types.h>)
3986             ])
3988 # For quotas on Veritas VxFS filesystems
3989 AC_CHECK_HEADERS(sys/fs/vx_quota.h)
3991 # For sys/quota.h and linux/quota.h
3992 AC_CHECK_HEADERS(sys/quota.h)
3994 if test x"$samba_cv_found_xfs_header" != x"yes"; then
3995 # if we have xfs quota support <sys/quota.h> (IRIX) we should use it
3996 AC_CACHE_CHECK([for XFS QUOTA in <sys/quota.h>],samba_cv_HAVE_SYS_QUOTA_XFS, [
3997 AC_TRY_COMPILE([
3998 #include "confdefs.h"
3999 #ifdef HAVE_SYS_TYPES_H
4000 #include <sys/types.h>
4001 #endif
4002 #ifdef HAVE_ASM_TYPES_H
4003 #include <asm/types.h>
4004 #endif
4005 #include <sys/quota.h>
4006 ],[int i = Q_XGETQUOTA;],
4007 samba_cv_HAVE_SYS_QUOTA_XFS=yes,samba_cv_HAVE_SYS_QUOTA_XFS=no)])
4008 if test "$samba_cv_HAVE_SYS_QUOTA_XFS"x = "yes"x; then
4009         samba_cv_found_xfs_header=yes
4013 # if we have struct dqblk .dqb_fsoftlimit instead of .dqb_isoftlimit on IRIX 
4014 AC_CACHE_CHECK([if struct dqblk has .dqb_fsoftlimit],samba_cv_HAVE_DQB_FSOFTLIMIT, [
4015 AC_TRY_COMPILE([
4016 #include "confdefs.h"
4017 #ifdef HAVE_SYS_QUOTA_H
4018 #include <sys/quota.h>
4019 #endif
4021 struct dqblk D;
4022 D.dqb_fsoftlimit = 0;],
4023 samba_cv_HAVE_DQB_FSOFTLIMIT=yes,samba_cv_HAVE_DQB_FSOFTLIMIT=no)])
4024 if test "$samba_cv_HAVE_DQB_FSOFTLIMIT"x = "yes"x; then
4025         AC_DEFINE(HAVE_DQB_FSOFTLIMIT,1,[struct dqblk .dqb_fsoftlimit])
4028 ##################
4029 # look for a working quota system
4031 if test x"$samba_cv_SYSQUOTA_FOUND" != x"yes"; then
4032 AC_CACHE_CHECK([for long quotactl(int cmd, char *special, qid_t id, caddr_t addr)],samba_cv_HAVE_QUOTACTL_4A,[
4033 AC_TRY_RUN_STRICT([
4034 #define HAVE_QUOTACTL_4A 1
4035 #define AUTOCONF_TEST 1
4036 #include "confdefs.h"
4037 #include "${srcdir-.}/tests/sysquotas.c"],[$Werror_FLAGS],[$CPPFLAGS],[$LDFLAGS],
4038            samba_cv_HAVE_QUOTACTL_4A=yes,samba_cv_HAVE_QUOTACTL_4A=no,samba_cv_HAVE_QUOTACTL_4A=cross)])
4039 if test x"$samba_cv_HAVE_QUOTACTL_4A" = x"yes"; then
4040     samba_cv_SYSQUOTA_FOUND=yes;
4041     AC_DEFINE(HAVE_QUOTACTL_4A,1,[Whether long quotactl(int cmd, char *special, qid_t id, caddr_t addr) is available])
4042     samba_cv_sysquotas_file="lib/sysquotas_4A.c"
4046 if test x"$samba_cv_SYSQUOTA_FOUND" != x"yes"; then
4047 AC_CACHE_CHECK([for int quotactl(const char *path, int cmd, int id, char *addr)],samba_cv_HAVE_QUOTACTL_4B,[
4048 AC_TRY_RUN_STRICT([
4049 #define HAVE_QUOTACTL_4B 1
4050 #define AUTOCONF_TEST 1
4051 #include "confdefs.h"
4052 #include "${srcdir-.}/tests/sysquotas.c"],[$Werror_FLAGS],[$CPPFLAGS],[$LDFLAGS],
4053            samba_cv_HAVE_QUOTACTL_4B=yes,samba_cv_HAVE_QUOTACTL_4B=no,samba_cv_HAVE_QUOTACTL_4B=cross)])
4054 if test x"$samba_cv_HAVE_QUOTACTL_4B" = x"yes"; then
4055     echo "int quotactl(const char *path, int cmd, int id, char *addr) is not reworked for the new sys_quota api"
4056     samba_cv_SYSQUOTA_FOUND=yes;
4057     AC_DEFINE(HAVE_QUOTACTL_4B,1,[Whether int quotactl(const char *path, int cmd, int id, char *addr) is available])
4058     samba_cv_sysquotas_file="lib/sysquotas_4B.c"
4062 if test x"$samba_cv_SYSQUOTA_FOUND" != x"yes"; then
4063 AC_CACHE_CHECK([for CRAY int quotactl (char *spec, int request, char *arg)],samba_cv_HAVE_QUOTACTL_3,[
4064 AC_TRY_RUN_STRICT([
4065 #define HAVE_QUOTACTL_3 1
4066 #define AUTOCONF_TEST 1
4067 #include "confdefs.h"
4068 #include "${srcdir-.}/tests/sysquotas.c"],[$Werror_FLAGS],[$CPPFLAGS],[$LDFLAGS],
4069            samba_cv_HAVE_QUOTACTL_3=yes,samba_cv_HAVE_QUOTACTL_3=no,samba_cv_HAVE_QUOTACTL_3=cross)])
4070 if test x"$samba_cv_HAVE_QUOTACTL_3" = x"yes"; then
4071     echo "CRAY int quotactl (char *spec, int request, char *arg) is NOT reworked for the sys_quota api"
4072     samba_cv_SYSQUOTA_FOUND=yes;
4073     AC_DEFINE(HAVE_QUOTACTL_3,1,[Whether CRAY int quotactl (char *spec, int request, char *arg); is available])
4074     samba_cv_sysquotas_file="lib/sysquotas_3.c"
4078 #################################################
4079 # check for mntent.h and struct mntent
4080 AC_CHECK_HEADERS(mntent.h)
4081 #################################################
4082 # check for setmntent,getmntent,endmntent
4083 AC_CHECK_FUNCS(setmntent getmntent endmntent)
4085 #################################################
4086 # check for devnm.h and struct mntent
4087 AC_CHECK_HEADERS(devnm.h)
4088 #################################################
4089 # check for devnm
4090 AC_CHECK_FUNCS(devnm)
4092 if test x"$samba_cv_WITH_SYS_QUOTAS" = x"yes"; then
4093     if test x"$samba_cv_SYSQUOTA_FOUND" != x"yes"; then
4094         # if --with-sys-quotas=yes then build it 
4095         # you have can use the get/set quota command smb.conf
4096         # options then
4097         samba_cv_SYSQUOTA_FOUND=auto
4098     fi
4099     if test x"$samba_cv_TRY_SYS_QUOTAS" != x"yes"; then
4100         # if --with-sys-quotas=yes then build it 
4101         # you have can use the get/set quota command smb.conf
4102         # options then
4103         samba_cv_TRY_SYS_QUOTAS=auto
4104     fi
4107 if test x"$samba_cv_SYSQUOTA_FOUND" != x"no"; then
4108 AC_CACHE_CHECK([whether the sys_quota interface works],samba_cv_SYSQUOTA_WORKS,[
4109 SAVE_CPPFLAGS="$CPPFLAGS"
4110 CPPFLAGS="$CPPFLAGS -I${srcdir-.}/ -I. -I${srcdir-.}/include -I${srcdir-.}/ubiqx -I${srcdir-.}/popt -I${srcdir-.}/nsswitch"
4111 AC_TRY_COMPILE([
4112 #include "confdefs.h"
4113 #define NO_PROTO_H 1
4114 #define NO_CONFIG_H 1
4115 #define HAVE_SYS_QUOTAS 1
4116 #include "${srcdir-.}/${samba_cv_sysquotas_file}"
4117 #include "${srcdir-.}/lib/sysquotas.c"
4118 ],[],samba_cv_SYSQUOTA_WORKS=yes,samba_cv_SYSQUOTA_WORKS=no)
4119 CPPFLAGS="$SAVE_CPPFLAGS"
4121 if test x"$samba_cv_SYSQUOTA_WORKS" = x"yes"; then
4122 AC_MSG_CHECKING(whether to use the new lib/sysquotas.c interface)
4123     if test x"$samba_cv_TRY_SYS_QUOTAS" != x"no"; then 
4124         AC_DEFINE(WITH_QUOTAS,1,[Whether to use disk quota support])
4125         AC_DEFINE(HAVE_SYS_QUOTAS,1,[Whether the new lib/sysquotas.c interface can be used])
4126         samba_cv_WE_USE_SYS_QUOTAS=yes
4127         AC_MSG_RESULT(yes)
4128     else
4129         AC_MSG_RESULT(no)
4130     fi
4134 if test x"$samba_cv_SYSQUOTA_FOUND" != x"no" -a x"$samba_cv_found_xfs_header" = x"yes"; then
4135 AC_CACHE_CHECK([whether the sys_quota interface works with XFS],samba_cv_SYSQUOTA_WORKS_XFS,[
4136 SAVE_CPPFLAGS="$CPPFLAGS"
4137 CPPFLAGS="$CPPFLAGS -I${srcdir-.}/ -I. -I${srcdir-.}/include -I${srcdir-.}/ubiqx -I${srcdir-.}/popt -I${srcdir-.}/nsswitch"
4138 AC_TRY_COMPILE([
4139 #include "confdefs.h"
4140 #define NO_PROTO_H 1
4141 #define NO_CONFIG_H 1
4142 #define HAVE_SYS_QUOTAS 1
4143 #define HAVE_XFS_QUOTAS 1
4144 #include "${srcdir-.}/lib/sysquotas_xfs.c"
4145 ],[],samba_cv_SYSQUOTA_WORKS_XFS=yes,samba_cv_SYSQUOTA_WORKS_XFS=no)
4146 CPPFLAGS="$SAVE_CPPFLAGS"
4148 if test x"$samba_cv_SYSQUOTA_WORKS_XFS" = x"yes"; then
4149     if test x"$samba_cv_WE_USE_SYS_QUOTAS" = x"yes"; then
4150         AC_DEFINE(HAVE_XFS_QUOTAS,1,[Whether xfs quota support is available])
4151     fi
4155 AC_CACHE_CHECK([whether the old quota support works],samba_cv_QUOTA_WORKS,[
4156 SAVE_CPPFLAGS="$CPPFLAGS"
4157 CPPFLAGS="$CPPFLAGS -I${srcdir-.}/ -I. -I${srcdir-.}/include -I${srcdir-.}/ubiqx -I${srcdir-.}/popt -I${srcdir-.}/nsswitch -I${srcdir-.}/smbwrapper"
4158 AC_TRY_COMPILE([
4159 #include "confdefs.h"
4160 #define NO_PROTO_H 1
4161 #define NO_CONFIG_H 1
4162 #include "${srcdir-.}/smbd/quotas.c"
4163 ],[],samba_cv_QUOTA_WORKS=yes,samba_cv_QUOTA_WORKS=no)
4164 CPPFLAGS="$SAVE_CPPFLAGS"
4166 if test x"$samba_cv_QUOTA_WORKS" = x"yes"; then
4167 AC_MSG_CHECKING(whether to use the old quota support)
4168     if test x"$samba_cv_WE_USE_SYS_QUOTAS" != x"yes"; then
4169       if test x"$samba_cv_TRY_QUOTAS" != x"no"; then
4170         AC_DEFINE(WITH_QUOTAS,1,[Whether to use disk quota support])
4171         AC_MSG_RESULT(yes)
4172       else
4173         AC_MSG_RESULT(no)
4174       fi
4175     else
4176       AC_MSG_RESULT(no)
4177     fi
4180 ####################
4181 # End of quota check samba_cv_RUN_QUOTA_TESTS
4184 #################################################
4185 # check for experimental utmp accounting
4187 AC_MSG_CHECKING(whether to support utmp accounting)
4188 WITH_UTMP=yes
4189 AC_ARG_WITH(utmp,
4190 [  --with-utmp             Include utmp accounting (default, if supported by OS)],
4191 [ case "$withval" in
4192   no)
4193                 WITH_UTMP=no
4194                 ;;
4195   *)
4196                 WITH_UTMP=yes
4197                 ;;
4198   esac ],
4201 # utmp requires utmp.h
4202 # Note similar check earlier, when checking utmp details.
4204 if test x"$WITH_UTMP" = x"yes" -a x"$ac_cv_header_utmp_h" = x"no"; then
4205         utmp_no_reason=", no utmp.h on $host_os"
4206         WITH_UTMP=no
4209 # Display test results
4211 if test x"$WITH_UTMP" = x"yes"; then
4212         AC_MSG_RESULT(yes)
4213         AC_DEFINE(WITH_UTMP,1,[Whether to include experimental utmp accounting])
4214 else
4215         AC_MSG_RESULT(no$utmp_no_reason)
4218 INSTALLLIBCMD_SH=:
4219 INSTALLLIBCMD_A=:
4220 UNINSTALLLIBCMD_SH=:
4221 UNINSTALLLIBCMD_A=:
4223 if test $BLDSHARED = true; then
4224         INSTALLLIBCMD_SH="\$(INSTALLCMD)"
4225         UNINSTALLLIBCMD_SH="rm -f"
4227 if test $enable_static = yes; then
4228         INSTALLLIBCMD_A="\$(INSTALLCMD)"
4229         UNINSTALLLIBCMD_A="rm -f"
4232 #################################################
4233 # should we build libmsrpc?
4234 INSTALL_LIBMSRPC=
4235 UNINSTALL_LIBMSRPC=
4236 LIBMSRPC_SHARED=
4237 LIBMSRPC=
4238 AC_MSG_CHECKING(whether to build the libmsrpc shared library)
4239 AC_ARG_WITH(libmsrpc,
4240 [  --with-libmsrpc         Build the libmsrpc shared library (default=yes if shared libs supported)],
4241 [ case "$withval" in
4242   no) 
4243      AC_MSG_RESULT(no)
4244      ;;
4245   *)
4246      if test $BLDSHARED = true; then
4247         LIBMSRPC_SHARED=bin/libmsrpc.$SHLIBEXT
4248         LIBMSRPC=libmsrpc
4249         AC_MSG_RESULT(yes)
4250      else
4251         enable_static=yes
4252         AC_MSG_RESULT(no shared library support -- will supply static library)
4253      fi
4254      if test $enable_static = yes; then
4255         LIBMSRPC=libmsrpc
4256      fi
4257      INSTALL_LIBMSRPC=installlibmsrpc
4258      UNINSTALL_LIBMSRPC=uninstalllibmsrpc
4259      ;;
4260   esac ],
4262 # if unspecified, default is to built it if possible.
4263   if test $BLDSHARED = true; then
4264      LIBMSRPC_SHARED=bin/libmsrpc.$SHLIBEXT
4265      LIBMSRPC=libmsrpc
4266      AC_MSG_RESULT(yes)
4267    else
4268      enable_static=yes
4269      AC_MSG_RESULT(no shared library support -- will supply static library)
4270    fi
4271    if test $enable_static = yes; then
4272      LIBMSRPC=libmsrpc
4273   fi]
4274   INSTALL_LIBMSRPC=installlibmsrpc
4275   UNINSTALL_LIBMSRPC=uninstalllibmsrpc
4278 #################################################
4279 # should we build libsmbclient?
4280 INSTALL_LIBSMBCLIENT=
4281 UNINSTALL_LIBSMBCLIENT=
4282 LIBSMBCLIENT_SHARED=
4283 LIBSMBCLIENT=
4284 AC_MSG_CHECKING(whether to build the libsmbclient shared library)
4285 AC_ARG_WITH(libsmbclient,
4286 [  --with-libsmbclient     Build the libsmbclient shared library (default=yes if shared libs supported)],
4287 [ case "$withval" in
4288   no) 
4289      AC_MSG_RESULT(no)
4290      ;;
4291   *)
4292      if test $BLDSHARED = true; then
4293         LIBSMBCLIENT_SHARED=bin/libsmbclient.$SHLIBEXT
4294         LIBSMBCLIENT=libsmbclient
4295         AC_MSG_RESULT(yes)
4296      else
4297         enable_static=yes
4298         AC_MSG_RESULT(no shared library support -- will supply static library)
4299      fi
4300      if test $enable_static = yes; then
4301         LIBSMBCLIENT=libsmbclient
4302      fi
4303      INSTALL_LIBSMBCLIENT=installclientlib
4304      UNINSTALL_LIBSMBCLIENT=uninstallclientlib
4305      ;;
4306   esac ],
4308 # if unspecified, default is to built it if possible.
4309   if test $BLDSHARED = true; then
4310      LIBSMBCLIENT_SHARED=bin/libsmbclient.$SHLIBEXT
4311      LIBSMBCLIENT=libsmbclient
4312      AC_MSG_RESULT(yes)
4313    else
4314      enable_static=yes
4315      AC_MSG_RESULT(no shared library support -- will supply static library)
4316    fi
4317    if test $enable_static = yes; then
4318      LIBSMBCLIENT=libsmbclient
4319   fi]
4320   INSTALL_LIBSMBCLIENT=installclientlib
4321   UNINSTALL_LIBSMBCLIENT=uninstallclientlib
4324 INSTALL_LIBSMBSHAREMODES=
4325 LIBSMBSHAREMODES_SHARED=
4326 LIBSMBSHAREMODES=
4327 AC_MSG_CHECKING(whether to build the libsmbsharemodes shared library)
4328 AC_ARG_WITH(libsmbsharemodes,
4329 [  --with-libsmbsharemodes     Build the libsmbsharemodes shared library (default=yes if shared libs supported)],
4330 [ case "$withval" in
4331   no)
4332      AC_MSG_RESULT(no)
4333      ;;
4334   *)
4335      if test $BLDSHARED = true; then
4336         LIBSMBSHAREMODES_SHARED=bin/libsmbsharemodes.$SHLIBEXT
4337         LIBSMBSHAREMODES=libsmbsharemodes
4338         AC_MSG_RESULT(yes)
4339      else
4340         enable_static=yes
4341         AC_MSG_RESULT(no shared library support -- will supply static library)
4342      fi
4343      if test $enable_static = yes; then
4344         LIBSMBSHAREMODES=libsmbsharemodes
4345      fi
4346      INSTALL_LIBSMBSHAREMODES=installlibsmbsharemodes
4347      ;;
4348   esac ],
4350 # if unspecified, default is to built it if possible.
4351   if test $BLDSHARED = true; then
4352      LIBSMBSHAREMODES_SHARED=bin/libsmbsharemodes.$SHLIBEXT
4353      LIBSMBSHAREMODES=libsmbsharemodes
4354      AC_MSG_RESULT(yes)
4355    else
4356      enable_static=yes
4357      AC_MSG_RESULT(no shared library support -- will supply static library)
4358    fi
4359    if test $enable_static = yes; then
4360      LIBSMBSHAREMODES=libsmbsharemodes
4361   fi]
4362   INSTALL_LIBSMBSHAREMODES=installlibsmbsharemodes
4365 #################################################
4366 # these tests are taken from the GNU fileutils package
4367 AC_CHECKING(how to get filesystem space usage)
4368 space=no
4370 # Test for statvfs64.
4371 if test $space = no; then
4372   # SVR4
4373   AC_CACHE_CHECK([statvfs64 function (SVR4)], fu_cv_sys_stat_statvfs64,
4374   [AC_TRY_RUN([
4375 #if defined(HAVE_UNISTD_H)
4376 #include <unistd.h>
4377 #endif
4378 #include <sys/types.h>
4379 #include <sys/statvfs.h>
4380   main ()
4381   {
4382     struct statvfs64 fsd;
4383     exit (statvfs64 (".", &fsd));
4384   }],
4385   fu_cv_sys_stat_statvfs64=yes,
4386   fu_cv_sys_stat_statvfs64=no,
4387   fu_cv_sys_stat_statvfs64=cross)])
4388   if test $fu_cv_sys_stat_statvfs64 = yes; then
4389     space=yes
4390     AC_DEFINE(STAT_STATVFS64,1,[Whether statvfs64() is available])
4391   fi
4394 # Perform only the link test since it seems there are no variants of the
4395 # statvfs function.  This check is more than just AC_CHECK_FUNCS(statvfs)
4396 # because that got a false positive on SCO OSR5.  Adding the declaration
4397 # of a `struct statvfs' causes this test to fail (as it should) on such
4398 # systems.  That system is reported to work fine with STAT_STATFS4 which
4399 # is what it gets when this test fails.
4400 if test $space = no; then
4401   # SVR4
4402   AC_CACHE_CHECK([statvfs function (SVR4)], fu_cv_sys_stat_statvfs,
4403                  [AC_TRY_LINK([#include <sys/types.h>
4404 #include <sys/statvfs.h>],
4405                               [struct statvfs fsd; statvfs (0, &fsd);],
4406                               fu_cv_sys_stat_statvfs=yes,
4407                               fu_cv_sys_stat_statvfs=no)])
4408   if test $fu_cv_sys_stat_statvfs = yes; then
4409     space=yes
4410     AC_DEFINE(STAT_STATVFS,1,[Whether statvfs() is available])
4411   fi
4414 if test $space = no; then
4415   # DEC Alpha running OSF/1
4416   AC_MSG_CHECKING([for 3-argument statfs function (DEC OSF/1)])
4417   AC_CACHE_VAL(fu_cv_sys_stat_statfs3_osf1,
4418   [AC_TRY_RUN([
4419 #include <sys/param.h>
4420 #include <sys/types.h>
4421 #include <sys/mount.h>
4422   main ()
4423   {
4424     struct statfs fsd;
4425     fsd.f_fsize = 0;
4426     exit (statfs (".", &fsd, sizeof (struct statfs)));
4427   }],
4428   fu_cv_sys_stat_statfs3_osf1=yes,
4429   fu_cv_sys_stat_statfs3_osf1=no,
4430   fu_cv_sys_stat_statfs3_osf1=no)])
4431   AC_MSG_RESULT($fu_cv_sys_stat_statfs3_osf1)
4432   if test $fu_cv_sys_stat_statfs3_osf1 = yes; then
4433     space=yes
4434     AC_DEFINE(STAT_STATFS3_OSF1,1,[Whether statfs requires 3 arguments])
4435   fi
4438 if test $space = no; then
4439 # AIX
4440   AC_MSG_CHECKING([for two-argument statfs with statfs.bsize dnl
4441 member (AIX, 4.3BSD)])
4442   AC_CACHE_VAL(fu_cv_sys_stat_statfs2_bsize,
4443   [AC_TRY_RUN([
4444 #ifdef HAVE_SYS_PARAM_H
4445 #include <sys/param.h>
4446 #endif
4447 #ifdef HAVE_SYS_MOUNT_H
4448 #include <sys/mount.h>
4449 #endif
4450 #ifdef HAVE_SYS_VFS_H
4451 #include <sys/vfs.h>
4452 #endif
4453   main ()
4454   {
4455   struct statfs fsd;
4456   fsd.f_bsize = 0;
4457   exit (statfs (".", &fsd));
4458   }],
4459   fu_cv_sys_stat_statfs2_bsize=yes,
4460   fu_cv_sys_stat_statfs2_bsize=no,
4461   fu_cv_sys_stat_statfs2_bsize=no)])
4462   AC_MSG_RESULT($fu_cv_sys_stat_statfs2_bsize)
4463   if test $fu_cv_sys_stat_statfs2_bsize = yes; then
4464     space=yes
4465     AC_DEFINE(STAT_STATFS2_BSIZE,1,[Whether statfs requires two arguments and struct statfs has bsize property])
4466   fi
4469 if test $space = no; then
4470 # SVR3
4471   AC_MSG_CHECKING([for four-argument statfs (AIX-3.2.5, SVR3)])
4472   AC_CACHE_VAL(fu_cv_sys_stat_statfs4,
4473   [AC_TRY_RUN([#include <sys/types.h>
4474 #include <sys/statfs.h>
4475   main ()
4476   {
4477   struct statfs fsd;
4478   exit (statfs (".", &fsd, sizeof fsd, 0));
4479   }],
4480     fu_cv_sys_stat_statfs4=yes,
4481     fu_cv_sys_stat_statfs4=no,
4482     fu_cv_sys_stat_statfs4=no)])
4483   AC_MSG_RESULT($fu_cv_sys_stat_statfs4)
4484   if test $fu_cv_sys_stat_statfs4 = yes; then
4485     space=yes
4486     AC_DEFINE(STAT_STATFS4,1,[Whether statfs requires 4 arguments])
4487   fi
4490 if test $space = no; then
4491 # 4.4BSD and NetBSD
4492   AC_MSG_CHECKING([for two-argument statfs with statfs.fsize dnl
4493 member (4.4BSD and NetBSD)])
4494   AC_CACHE_VAL(fu_cv_sys_stat_statfs2_fsize,
4495   [AC_TRY_RUN([#include <sys/types.h>
4496 #ifdef HAVE_SYS_PARAM_H
4497 #include <sys/param.h>
4498 #endif
4499 #ifdef HAVE_SYS_MOUNT_H
4500 #include <sys/mount.h>
4501 #endif
4502   main ()
4503   {
4504   struct statfs fsd;
4505   fsd.f_fsize = 0;
4506   exit (statfs (".", &fsd));
4507   }],
4508   fu_cv_sys_stat_statfs2_fsize=yes,
4509   fu_cv_sys_stat_statfs2_fsize=no,
4510   fu_cv_sys_stat_statfs2_fsize=no)])
4511   AC_MSG_RESULT($fu_cv_sys_stat_statfs2_fsize)
4512   if test $fu_cv_sys_stat_statfs2_fsize = yes; then
4513     space=yes
4514         AC_DEFINE(STAT_STATFS2_FSIZE,1,[Whether statfs requires 2 arguments and struct statfs has fsize])
4515   fi
4518 if test $space = no; then
4519   # Ultrix
4520   AC_MSG_CHECKING([for two-argument statfs with struct fs_data (Ultrix)])
4521   AC_CACHE_VAL(fu_cv_sys_stat_fs_data,
4522   [AC_TRY_RUN([#include <sys/types.h>
4523 #ifdef HAVE_SYS_PARAM_H
4524 #include <sys/param.h>
4525 #endif
4526 #ifdef HAVE_SYS_MOUNT_H
4527 #include <sys/mount.h>
4528 #endif
4529 #ifdef HAVE_SYS_FS_TYPES_H
4530 #include <sys/fs_types.h>
4531 #endif
4532   main ()
4533   {
4534   struct fs_data fsd;
4535   /* Ultrix's statfs returns 1 for success,
4536      0 for not mounted, -1 for failure.  */
4537   exit (statfs (".", &fsd) != 1);
4538   }],
4539   fu_cv_sys_stat_fs_data=yes,
4540   fu_cv_sys_stat_fs_data=no,
4541   fu_cv_sys_stat_fs_data=no)])
4542   AC_MSG_RESULT($fu_cv_sys_stat_fs_data)
4543   if test $fu_cv_sys_stat_fs_data = yes; then
4544     space=yes
4545     AC_DEFINE(STAT_STATFS2_FS_DATA,1,[Whether statfs requires 2 arguments and struct fs_data is available])
4546   fi
4550 # As a gating factor for large file support, in order to
4551 # use <4GB files we must have the following minimal support
4552 # available.
4553 # long long, and a 64 bit off_t or off64_t.
4554 # If we don't have all of these then disable large
4555 # file support.
4557 AC_MSG_CHECKING([if large file support can be enabled])
4558 AC_TRY_COMPILE([
4559 #if defined(HAVE_LONGLONG) && (defined(HAVE_OFF64_T) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8)))
4560 #include <sys/types.h>
4561 #else
4562 __COMPILE_ERROR_
4563 #endif
4565 [int i],
4566 samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT=yes,samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT=no)
4567 if test x"$samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT" = x"yes"; then
4568         AC_DEFINE(HAVE_EXPLICIT_LARGEFILE_SUPPORT,1,[Whether large file support can be enabled])
4570 AC_MSG_RESULT([$samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT])
4572 AC_ARG_WITH(spinlocks, 
4573 [  --with-spinlocks        Use spin locks instead of fcntl locks (default=no) ])
4574 if test "x$with_spinlocks" = "xyes"; then
4575     AC_DEFINE(USE_SPINLOCKS,1,[Whether to use spin locks instead of fcntl locks])
4577     case "$host_cpu" in
4578         sparc)
4579             AC_DEFINE(SPARC_SPINLOCKS,1,[Whether to use sparc spinlocks])
4580             ;;
4582         i386|i486|i586|i686)
4583             AC_DEFINE(INTEL_SPINLOCKS,1,[Whether to use intel spinlocks])
4584             ;;
4586         mips)
4587             AC_DEFINE(MIPS_SPINLOCKS,1,[Whether to use mips spinlocks])
4588             ;;
4590         powerpc)
4591             AC_DEFINE(POWERPC_SPINLOCKS,1,[Whether to use powerpc spinlocks])
4592             ;;
4593     esac
4596 #################################################
4597 # check for ACL support
4599 AC_MSG_CHECKING(whether to support ACLs)
4600 AC_ARG_WITH(acl-support,
4601 [  --with-acl-support      Include ACL support (default=no)],
4602 [ case "$withval" in
4603   yes)
4605         case "$host_os" in
4606         *sysv5*)
4607                 AC_MSG_RESULT(Using UnixWare ACLs)
4608                 AC_DEFINE(HAVE_UNIXWARE_ACLS,1,[Whether UnixWare ACLs are available])
4609                 ;;
4610         *solaris*)
4611                 AC_MSG_RESULT(Using solaris ACLs)
4612                 AC_DEFINE(HAVE_SOLARIS_ACLS,1,[Whether solaris ACLs are available])
4613                 ACL_LIBS="$ACL_LIBS -lsec"
4614                 ;;
4615         *hpux*)
4616                 AC_MSG_RESULT(Using HPUX ACLs)
4617                 AC_DEFINE(HAVE_HPUX_ACLS,1,[Whether HPUX ACLs are available])
4618                 ;;
4619         *irix*)
4620                 AC_MSG_RESULT(Using IRIX ACLs)
4621                 AC_DEFINE(HAVE_IRIX_ACLS,1,[Whether IRIX ACLs are available])
4622                 ;;
4623         *aix*)
4624                 AC_MSG_RESULT(Using AIX ACLs)
4625                 AC_DEFINE(HAVE_AIX_ACLS,1,[Whether AIX ACLs are available])
4626                 ;;
4627         *osf*)
4628                 AC_MSG_RESULT(Using Tru64 ACLs)
4629                 AC_DEFINE(HAVE_TRU64_ACLS,1,[Whether Tru64 ACLs are available])
4630                 ACL_LIBS="$ACL_LIBS -lpacl"
4631                 ;;
4632         *freebsd[[5-9]]*)
4633                 AC_MSG_RESULT(Using FreeBSD posix ACLs)
4634                 AC_DEFINE(HAVE_POSIX_ACLS,1,[Whether FreeBSD POSIX ACLs are available])
4635                 AC_DEFINE(HAVE_ACL_GET_PERM_NP,1,[Whether acl_get_perm_np() is available])
4636                 ;;
4637         *linux*)
4638                 AC_CHECK_LIB(attr,getxattr,[ACL_LIBS="$ACL_LIBS -lattr"])
4639                 AC_CHECK_LIB(acl,acl_get_file,[ACL_LIBS="$ACL_LIBS -lacl"])
4640                 AC_CACHE_CHECK([for ACL support],samba_cv_HAVE_POSIX_ACLS,[
4641                 acl_LIBS=$LIBS
4642                 LIBS="$LIBS -lacl"
4643                 AC_TRY_LINK([#include <sys/types.h>
4644 #include <sys/acl.h>],
4645 [ acl_t acl; int entry_id; acl_entry_t *entry_p; return acl_get_entry( acl, entry_id, entry_p);],
4646 samba_cv_HAVE_POSIX_ACLS=yes,samba_cv_HAVE_POSIX_ACLS=no)
4647                 LIBS=$acl_LIBS])
4648                         if test x"$samba_cv_HAVE_POSIX_ACLS" = x"yes"; then
4649                                 AC_MSG_RESULT(Using posix ACLs)
4650                                 AC_DEFINE(HAVE_POSIX_ACLS,1,[Whether POSIX ACLs are available])
4651                                 AC_CACHE_CHECK([for acl_get_perm_np],samba_cv_HAVE_ACL_GET_PERM_NP,[
4652                                 acl_LIBS=$LIBS
4653                                 LIBS="$LIBS -lacl"
4654                                 AC_TRY_LINK([#include <sys/types.h>
4655 #include <sys/acl.h>],
4656 [ acl_permset_t permset_d; acl_perm_t perm; return acl_get_perm_np( permset_d, perm);],
4657 samba_cv_HAVE_ACL_GET_PERM_NP=yes,samba_cv_HAVE_ACL_GET_PERM_NP=no)
4658                                 LIBS=$acl_LIBS])
4659                                 if test x"$samba_cv_HAVE_ACL_GET_PERM_NP" = x"yes"; then
4660                                         AC_DEFINE(HAVE_ACL_GET_PERM_NP,1,[Whether acl_get_perm_np() is available])
4661                                 fi
4662                         fi
4663             ;;
4664          *)
4665                 AC_CHECK_LIB(acl,acl_get_file,[ACL_LIBS="$ACL_LIBS -lacl"])
4666                 AC_CACHE_CHECK([for ACL support],samba_cv_HAVE_POSIX_ACLS,[
4667                 acl_LIBS=$LIBS
4668                 LIBS="$LIBS -lacl"
4669                 AC_TRY_LINK([#include <sys/types.h>
4670 #include <sys/acl.h>],
4671 [ acl_t acl; int entry_id; acl_entry_t *entry_p; return acl_get_entry( acl, entry_id, entry_p);],
4672 samba_cv_HAVE_POSIX_ACLS=yes,samba_cv_HAVE_POSIX_ACLS=no)
4673                 LIBS=$acl_LIBS])
4674                         if test x"$samba_cv_HAVE_POSIX_ACLS" = x"yes"; then
4675                                 AC_MSG_RESULT(Using posix ACLs)
4676                                 AC_DEFINE(HAVE_POSIX_ACLS,1,[Whether POSIX ACLs are available])
4677                                 AC_CACHE_CHECK([for acl_get_perm_np],samba_cv_HAVE_ACL_GET_PERM_NP,[
4678                                 acl_LIBS=$LIBS
4679                                 LIBS="$LIBS -lacl"
4680                                 AC_TRY_LINK([#include <sys/types.h>
4681 #include <sys/acl.h>],
4682 [ acl_permset_t permset_d; acl_perm_t perm; return acl_get_perm_np( permset_d, perm);],
4683 samba_cv_HAVE_ACL_GET_PERM_NP=yes,samba_cv_HAVE_ACL_GET_PERM_NP=no)
4684                                 LIBS=$acl_LIBS])
4685                                 if test x"$samba_cv_HAVE_ACL_GET_PERM_NP" = x"yes"; then
4686                                         AC_DEFINE(HAVE_ACL_GET_PERM_NP,1,[Whether acl_get_perm_np() is available])
4687                                 fi
4688                         fi
4689             ;;
4690         esac
4691         ;;
4692   *)
4693     AC_MSG_RESULT(no)
4694     AC_DEFINE(HAVE_NO_ACLS,1,[Whether no ACLs support is available])
4695     ;;
4696   esac ],
4697   AC_DEFINE(HAVE_NO_ACLS,1,[Whether no ACLs support should be built in])
4698   AC_MSG_RESULT(no)
4701 #################################################
4702 # check for AIO support
4704 AC_MSG_CHECKING(whether to support asynchronous io)
4705 AC_ARG_WITH(aio-support,
4706 [  --with-aio-support      Include asynchronous io support (default=no)],
4707 [ case "$withval" in
4708   yes)
4710         AC_MSG_RESULT(yes)
4711         case "$host_os" in
4712         *)
4713                 AC_CHECK_LIB(rt,aio_read,[AIO_LIBS="$LIBS -lrt"])
4714                 AC_CHECK_LIB(aio,aio_read,[AIO_LIBS="$LIBS -laio"])
4715                 AC_CACHE_CHECK([for asynchronous io support],samba_cv_HAVE_AIO,[
4716                 aio_LIBS=$LIBS
4717                 LIBS=$AIO_LIBS
4718                 AC_TRY_LINK([#include <sys/types.h>
4719 #include <aio.h>],
4720 [ struct aiocb a; return aio_read(&a);],
4721 samba_cv_HAVE_AIO=yes,samba_cv_HAVE_AIO=no)
4722                 LIBS=$aio_LIBS])
4723                 AC_CACHE_CHECK([for 64-bit asynchronous io support],samba_cv_HAVE_AIO64,[
4724                 aio_LIBS=$LIBS
4725                 LIBS=$AIO_LIBS
4726                 AC_TRY_LINK([#include <sys/types.h>
4727 #include <aio.h>],
4728 [ struct aiocb64 a; return aio_read64(&a);],
4729 samba_cv_HAVE_AIO64=yes,samba_cv_HAVE_AIO64=no)
4730                 LIBS=$aio_LIBS])
4731                 if test x"$samba_cv_HAVE_AIO64" = x"yes"; then
4732                         AC_DEFINE(HAVE_AIOCB64,1,[Whether 64 bit aio is available])
4733                         AC_DEFINE(WITH_AIO, 1, [Using asynchronous io])
4734                         LIBS=$AIO_LIBS
4735                 elif test x"$samba_cv_HAVE_AIO" = x"yes"; then
4736                         AC_DEFINE(WITH_AIO, 1, [Using asynchronous io])
4737                         LIBS=$AIO_LIBS
4738                 fi
4740                 if test x"$samba_cv_HAVE_AIO" = x"yes"; then
4741                         AC_MSG_CHECKING(for aio_read)
4742                         AC_LINK_IFELSE([#include <aio.h>
4743 int main() { struct aiocb a; return aio_read(&a); }],
4744 [AC_DEFINE(HAVE_AIO_READ, 1, [Have aio_read]) AC_MSG_RESULT(yes)],
4745 [AC_MSG_RESULT(no)])
4747                         AC_MSG_CHECKING(for aio_write)
4748                         AC_LINK_IFELSE([#include <aio.h>
4749 int main() { struct aiocb a; return aio_write(&a); }],
4750 [AC_DEFINE(HAVE_AIO_WRITE, 1, [Have aio_write]) AC_MSG_RESULT(yes)],
4751 [AC_MSG_RESULT(no)])
4753                         AC_MSG_CHECKING(for aio_fsync)
4754                         AC_LINK_IFELSE([#include <aio.h>
4755 int main() { struct aiocb a; return aio_fsync(1, &a); }],
4756 [AC_DEFINE(HAVE_AIO_FSYNC, 1, [Have aio_fsync]) AC_MSG_RESULT(yes)],
4757 [AC_MSG_RESULT(no)])
4759                         AC_MSG_CHECKING(for aio_return)
4760                         AC_LINK_IFELSE([#include <aio.h>
4761 int main() { struct aiocb a; return aio_return(&a); }],
4762 [AC_DEFINE(HAVE_AIO_RETURN, 1, [Have aio_return]) AC_MSG_RESULT(yes)],
4763 [AC_MSG_RESULT(no)])
4765                         AC_MSG_CHECKING(for aio_error)
4766                         AC_LINK_IFELSE([#include <aio.h>
4767 int main() { struct aiocb a; return aio_error(&a); }],
4768 [AC_DEFINE(HAVE_AIO_ERROR, 1, [Have aio_error]) AC_MSG_RESULT(yes)],
4769 [AC_MSG_RESULT(no)])
4771                         AC_MSG_CHECKING(for aio_cancel)
4772                         AC_LINK_IFELSE([#include <aio.h>
4773 int main() { struct aiocb a; return aio_cancel(1, &a); }],
4774 [AC_DEFINE(HAVE_AIO_CANCEL, 1, [Have aio_cancel]) AC_MSG_RESULT(yes)],
4775 [AC_MSG_RESULT(no)])
4777                         AC_MSG_CHECKING(for aio_suspend)
4778                         AC_LINK_IFELSE([#include <aio.h>
4779 int main() { struct aiocb a; return aio_suspend(&a, 1, NULL); }],
4780 [AC_DEFINE(HAVE_AIO_SUSPEND, 1, [Have aio_suspend]) AC_MSG_RESULT(yes)],
4781 [AC_MSG_RESULT(no)])
4782                 fi
4784                 if test x"$samba_cv_HAVE_AIO64" = x"yes"; then
4785                         AC_MSG_CHECKING(for aio_read64)
4786                         AC_LINK_IFELSE([#include <aio.h>
4787 int main() { struct aiocb a; return aio_read64(&a); }],
4788 [AC_DEFINE(HAVE_AIO_READ64, 1, [Have aio_read64]) AC_MSG_RESULT(yes)],
4789 [AC_MSG_RESULT(no)])
4791                         AC_MSG_CHECKING(for aio_write64)
4792                         AC_LINK_IFELSE([#include <aio.h>
4793 int main() { struct aiocb a; return aio_write64(&a); }],
4794 [AC_DEFINE(HAVE_AIO_WRITE64, 1, [Have aio_write64]) AC_MSG_RESULT(yes)],
4795 [AC_MSG_RESULT(no)])
4797                         AC_MSG_CHECKING(for aio_fsync64)
4798                         AC_LINK_IFELSE([#include <aio.h>
4799 int main() { struct aiocb a; return aio_fsync64(1, &a); }],
4800 [AC_DEFINE(HAVE_AIO_FSYNC64, 1, [Have aio_fsync64]) AC_MSG_RESULT(yes)],
4801 [AC_MSG_RESULT(no)])
4803                         AC_MSG_CHECKING(for aio_return64)
4804                         AC_LINK_IFELSE([#include <aio.h>
4805 int main() { struct aiocb a; return aio_return64(&a); }],
4806 [AC_DEFINE(HAVE_AIO_RETURN64, 1, [Have aio_return64]) AC_MSG_RESULT(yes)],
4807 [AC_MSG_RESULT(no)])
4809                         AC_MSG_CHECKING(for aio_error64)
4810                         AC_LINK_IFELSE([#include <aio.h>
4811 int main() { struct aiocb a; return aio_error64(&a); }],
4812 [AC_DEFINE(HAVE_AIO_ERROR64, 1, [Have aio_error64]) AC_MSG_RESULT(yes)],
4813 [AC_MSG_RESULT(no)])
4815                         AC_MSG_CHECKING(for aio_cancel64)
4816                         AC_LINK_IFELSE([#include <aio.h>
4817 int main() { struct aiocb a; return aio_cancel64(1, &a); }],
4818 [AC_DEFINE(HAVE_AIO_CANCEL64, 1, [Have aio_cancel64]) AC_MSG_RESULT(yes)],
4819 [AC_MSG_RESULT(no)])
4821                         AC_MSG_CHECKING(for aio_suspend64)
4822                         AC_LINK_IFELSE([#include <aio.h>
4823 int main() { struct aiocb a; return aio_suspend64(&a, 1, NULL); }],
4824 [AC_DEFINE(HAVE_AIO_SUSPEND64, 1, [Have aio_suspend64]) AC_MSG_RESULT(yes)],
4825 [AC_MSG_RESULT(no)])
4826                 fi
4827             ;;
4828         esac
4829         ;;
4830   *)
4831     AC_MSG_RESULT(no)
4832     AC_DEFINE(HAVE_NO_AIO,1,[Whether no asynchronous io support is available])
4833     ;;
4834   esac ],
4835   AC_DEFINE(HAVE_NO_AIO,1,[Whether no asynchronous io support should be built in])
4836   AC_MSG_RESULT(no)
4839 #################################################
4840 # check for sendfile support
4842 with_sendfile_support=yes
4843 AC_MSG_CHECKING(whether to check to support sendfile)
4844 AC_ARG_WITH(sendfile-support,
4845 [  --with-sendfile-support Check for sendfile support (default=yes)],
4846 [ case "$withval" in
4847   yes)
4849         AC_MSG_RESULT(yes);
4851         case "$host_os" in
4852         *linux*)
4853                 AC_CACHE_CHECK([for linux sendfile64 support],samba_cv_HAVE_SENDFILE64,[
4854                 AC_TRY_LINK([#include <sys/sendfile.h>],
4856 int tofd, fromfd;
4857 off64_t offset;
4858 size_t total;
4859 ssize_t nwritten = sendfile64(tofd, fromfd, &offset, total);
4861 samba_cv_HAVE_SENDFILE64=yes,samba_cv_HAVE_SENDFILE64=no)])
4863                 AC_CACHE_CHECK([for linux sendfile support],samba_cv_HAVE_SENDFILE,[
4864                 AC_TRY_LINK([#include <sys/sendfile.h>],
4866 int tofd, fromfd;
4867 off_t offset;
4868 size_t total;
4869 ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
4871 samba_cv_HAVE_SENDFILE=yes,samba_cv_HAVE_SENDFILE=no)])
4873 # Try and cope with broken Linux sendfile....
4874                 AC_CACHE_CHECK([for broken linux sendfile support],samba_cv_HAVE_BROKEN_LINUX_SENDFILE,[
4875                 AC_TRY_LINK([\
4876 #if defined(_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
4877 #undef _FILE_OFFSET_BITS
4878 #endif
4879 #include <sys/sendfile.h>],
4881 int tofd, fromfd;
4882 off_t offset;
4883 size_t total;
4884 ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
4886 samba_cv_HAVE_BROKEN_LINUX_SENDFILE=yes,samba_cv_HAVE_BROKEN_LINUX_SENDFILE=no)])
4888         if test x"$samba_cv_HAVE_SENDFILE64" = x"yes"; then
4889                 AC_DEFINE(HAVE_SENDFILE64,1,[Whether 64-bit sendfile() is available])
4890                 AC_DEFINE(LINUX_SENDFILE_API,1,[Whether linux sendfile() API is available])
4891                 AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() should be used])
4892         elif test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then
4893                 AC_DEFINE(HAVE_SENDFILE,1,[Whether sendfile() is available])
4894                 AC_DEFINE(LINUX_SENDFILE_API,1,[Whether linux sendfile() API is available])
4895                 AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() should be used])
4896         elif test x"$samba_cv_HAVE_BROKEN_LINUX_SENDFILE" = x"yes"; then
4897                 AC_DEFINE(LINUX_BROKEN_SENDFILE_API,1,[Whether (linux) sendfile() is broken])
4898                 AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile should be used])
4899         else
4900                 AC_MSG_RESULT(no);
4901         fi
4903         ;;
4904         *freebsd* | *dragonfly* )
4905                 AC_CACHE_CHECK([for freebsd sendfile support],samba_cv_HAVE_SENDFILE,[
4906                 AC_TRY_LINK([\
4907 #include <sys/types.h>
4908 #include <unistd.h>
4909 #include <sys/socket.h>
4910 #include <sys/uio.h>],
4912         int fromfd, tofd, ret, total=0;
4913         off_t offset, nwritten;
4914         struct sf_hdtr hdr;
4915         struct iovec hdtrl;
4916         hdr.headers = &hdtrl;
4917         hdr.hdr_cnt = 1;
4918         hdr.trailers = NULL;
4919         hdr.trl_cnt = 0;
4920         hdtrl.iov_base = NULL;
4921         hdtrl.iov_len = 0;
4922         ret = sendfile(fromfd, tofd, offset, total, &hdr, &nwritten, 0);
4924 samba_cv_HAVE_SENDFILE=yes,samba_cv_HAVE_SENDFILE=no)])
4926         if test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then
4927                 AC_DEFINE(HAVE_SENDFILE,1,[Whether sendfile() support is available])
4928                 AC_DEFINE(FREEBSD_SENDFILE_API,1,[Whether the FreeBSD sendfile() API is available])
4929                 AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
4930         else
4931                 AC_MSG_RESULT(no);
4932         fi
4933         ;;
4935         *hpux*)
4936                 AC_CACHE_CHECK([for hpux sendfile64 support],samba_cv_HAVE_SENDFILE64,[
4937                 AC_TRY_LINK([\
4938 #include <sys/socket.h>
4939 #include <sys/uio.h>],
4941         int fromfd, tofd;
4942         size_t total=0;
4943         struct iovec hdtrl[2];
4944         ssize_t nwritten;
4945         off64_t offset;
4947         hdtrl[0].iov_base = 0;
4948         hdtrl[0].iov_len = 0;
4950         nwritten = sendfile64(tofd, fromfd, offset, total, &hdtrl[0], 0);
4952 samba_cv_HAVE_SENDFILE64=yes,samba_cv_HAVE_SENDFILE64=no)])
4953         if test x"$samba_cv_HAVE_SENDFILE64" = x"yes"; then
4954                 AC_DEFINE(HAVE_SENDFILE64,1,[Whether sendfile64() is available])
4955                 AC_DEFINE(HPUX_SENDFILE_API,1,[Whether the hpux sendfile() API is available])
4956                 AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
4957         else
4958                 AC_MSG_RESULT(no);
4959         fi
4961                 AC_CACHE_CHECK([for hpux sendfile support],samba_cv_HAVE_SENDFILE,[
4962                 AC_TRY_LINK([\
4963 #include <sys/socket.h>
4964 #include <sys/uio.h>],
4966         int fromfd, tofd;
4967         size_t total=0;
4968         struct iovec hdtrl[2];
4969         ssize_t nwritten;
4970         off_t offset;
4972         hdtrl[0].iov_base = 0;
4973         hdtrl[0].iov_len = 0;
4975         nwritten = sendfile(tofd, fromfd, offset, total, &hdtrl[0], 0);
4977 samba_cv_HAVE_SENDFILE=yes,samba_cv_HAVE_SENDFILE=no)])
4978         if test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then
4979                 AC_DEFINE(HAVE_SENDFILE,1,[Whether sendfile() is available])
4980                 AC_DEFINE(HPUX_SENDFILE_API,1,[Whether the hpux sendfile() API is available])
4981                 AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
4982         else
4983                 AC_MSG_RESULT(no);
4984         fi
4985         ;;
4987         *solaris*)
4988                 AC_CHECK_LIB(sendfile,sendfilev)
4989                 AC_CACHE_CHECK([for solaris sendfilev64 support],samba_cv_HAVE_SENDFILEV64,[
4990                 AC_TRY_LINK([\
4991 #include <sys/sendfile.h>],
4993         int sfvcnt;
4994         size_t xferred;
4995         struct sendfilevec vec[2];
4996         ssize_t nwritten;
4997         int tofd;
4999         sfvcnt = 2;
5001         vec[0].sfv_fd = SFV_FD_SELF;
5002         vec[0].sfv_flag = 0;
5003         vec[0].sfv_off = 0;
5004         vec[0].sfv_len = 0;
5006         vec[1].sfv_fd = 0;
5007         vec[1].sfv_flag = 0;
5008         vec[1].sfv_off = 0;
5009         vec[1].sfv_len = 0;
5010         nwritten = sendfilev64(tofd, vec, sfvcnt, &xferred);
5012 samba_cv_HAVE_SENDFILEV64=yes,samba_cv_HAVE_SENDFILEV64=no)])
5014         if test x"$samba_cv_HAVE_SENDFILEV64" = x"yes"; then
5015                 AC_DEFINE(HAVE_SENDFILEV64,1,[Whether sendfilev64() is available])
5016                 AC_DEFINE(SOLARIS_SENDFILE_API,1,[Whether the soloris sendfile() API is available])
5017                 AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
5018         else
5019                 AC_MSG_RESULT(no);
5020         fi
5022                 AC_CACHE_CHECK([for solaris sendfilev support],samba_cv_HAVE_SENDFILEV,[
5023                 AC_TRY_LINK([\
5024 #include <sys/sendfile.h>],
5026         int sfvcnt;
5027         size_t xferred;
5028         struct sendfilevec vec[2];
5029         ssize_t nwritten;
5030         int tofd;
5032         sfvcnt = 2;
5034         vec[0].sfv_fd = SFV_FD_SELF;
5035         vec[0].sfv_flag = 0;
5036         vec[0].sfv_off = 0;
5037         vec[0].sfv_len = 0;
5039         vec[1].sfv_fd = 0;
5040         vec[1].sfv_flag = 0;
5041         vec[1].sfv_off = 0;
5042         vec[1].sfv_len = 0;
5043         nwritten = sendfilev(tofd, vec, sfvcnt, &xferred);
5045 samba_cv_HAVE_SENDFILEV=yes,samba_cv_HAVE_SENDFILEV=no)])
5047         if test x"$samba_cv_HAVE_SENDFILEV" = x"yes"; then
5048                 AC_DEFINE(HAVE_SENDFILEV,1,[Whether sendfilev() is available])
5049                 AC_DEFINE(SOLARIS_SENDFILE_API,1,[Whether the solaris sendfile() API is available])
5050                 AC_DEFINE(WITH_SENDFILE,1,[Whether to include sendfile() support])
5051         else
5052                 AC_MSG_RESULT(no);
5053         fi
5054         ;;
5055         *aix*)
5056                 AC_CACHE_CHECK([for AIX send_file support],samba_cv_HAVE_SENDFILE,[
5057                 AC_TRY_LINK([\
5058 #include <sys/socket.h>],
5060         int fromfd, tofd;
5061         size_t total=0;
5062         struct sf_parms hdtrl;
5063         ssize_t nwritten;
5064         off64_t offset;
5066         hdtrl.header_data = 0;
5067         hdtrl.header_length = 0;
5068         hdtrl.file_descriptor = fromfd;
5069         hdtrl.file_offset = 0;
5070         hdtrl.file_bytes = 0;
5071         hdtrl.trailer_data = 0;
5072         hdtrl.trailer_length = 0;
5074         nwritten = send_file(&tofd, &hdtrl, 0);
5076 samba_cv_HAVE_SENDFILE=yes,samba_cv_HAVE_SENDFILE=no)])
5077         if test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then
5078                 AC_DEFINE(HAVE_SENDFILE,1,[Whether sendfile() is available])
5079                 AC_DEFINE(AIX_SENDFILE_API,1,[Whether the AIX send_file() API is available])
5080                 AC_DEFINE(WITH_SENDFILE,1,[Whether to include sendfile() support])
5081         else
5082                 AC_MSG_RESULT(no);
5083         fi
5084         ;;
5085         *)
5086         ;;
5087         esac
5088         ;;
5089   *)
5090     AC_MSG_RESULT(no)
5091     ;;
5092   esac ],
5093   AC_MSG_RESULT(yes)
5097 #################################################
5098 # Check whether winbind is supported on this platform.  If so we need to
5099 # build and install client programs, sbin programs and shared libraries
5101 AC_MSG_CHECKING(whether to build winbind)
5103 # Initially, the value of $host_os decides whether winbind is supported
5105 HAVE_WINBIND=yes
5107 # Define the winbind shared library name and any specific linker flags
5108 # it needs to be built with.
5110 WINBIND_NSS="nsswitch/libnss_winbind.$SHLIBEXT"
5111 WINBIND_WINS_NSS="nsswitch/libnss_wins.$SHLIBEXT"
5112 WINBIND_NSS_LDSHFLAGS=$LDSHFLAGS
5114 case "$host_os" in
5115         *linux*)
5116                 WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_linux.o"
5117                 ;;
5118         *freebsd[[5-9]]*)
5119                 # FreeBSD winbind client is implemented as a wrapper around
5120                 # the Linux version.
5121                 WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_freebsd.o \
5122                     nsswitch/winbind_nss_linux.o"
5123                 WINBIND_NSS="nsswitch/nss_winbind.$SHLIBEXT"
5124                 WINBIND_WINS_NSS="nsswitch/nss_wins.$SHLIBEXT"
5125                 ;;
5126         *irix*)
5127                 # IRIX has differently named shared libraries
5128                 WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_irix.o"
5129                 WINBIND_NSS="nsswitch/libns_winbind.$SHLIBEXT"
5130                 WINBIND_WINS_NSS="nsswitch/libns_wins.$SHLIBEXT"
5131                 ;;
5132         *solaris*)
5133                 # Solaris winbind client is implemented as a wrapper around
5134                 # the Linux version.
5135                 WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_solaris.o \
5136                     nsswitch/winbind_nss_linux.o"
5137                 WINBIND_NSS_EXTRA_LIBS="-lsocket"
5138                 ;;
5139         *hpux11*)
5140                 WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_solaris.o"
5141                 ;;
5142         *aix*)
5143                 # AIX has even differently named shared libraries.  No
5144                 # WINS support has been implemented yet.
5145                 WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_aix.o"
5146                 WINBIND_NSS_LDSHFLAGS="-Wl,-bexpall,-bM:SRE,-ewb_aix_init"
5147                 WINBIND_NSS="nsswitch/WINBIND"
5148                 WINBIND_WINS_NSS=""
5149                 ;;
5150         *)
5151                 HAVE_WINBIND=no
5152                 winbind_no_reason=", unsupported on $host_os"
5153                 ;;
5154 esac
5156 AC_SUBST(WINBIND_NSS)
5157 AC_SUBST(WINBIND_WINS_NSS)
5158 AC_SUBST(WINBIND_NSS_LDSHFLAGS)
5159 AC_SUBST(WINBIND_NSS_EXTRA_OBJS)
5160 AC_SUBST(WINBIND_NSS_EXTRA_LIBS)
5162 # Check the setting of --with-winbind
5164 AC_ARG_WITH(winbind,
5165 [  --with-winbind          Build winbind (default, if supported by OS)],
5167   case "$withval" in
5168         yes)
5169                 HAVE_WINBIND=yes
5170                 ;;
5171         no)
5172                 HAVE_WINBIND=no
5173                 winbind_reason=""
5174                 ;;
5175   esac ],
5178 # We need unix domain sockets for winbind
5180 if test x"$HAVE_WINBIND" = x"yes"; then
5181         if test x"$samba_cv_unixsocket" = x"no"; then
5182                 winbind_no_reason=", no unix domain socket support on $host_os"
5183                 HAVE_WINBIND=no
5184         fi
5187 # Display test results
5189 if test x"$HAVE_WINBIND" = x"yes"; then
5190         AC_MSG_RESULT(yes)
5191         AC_DEFINE(WITH_WINBIND,1,[Whether to build winbind])
5193         EXTRA_BIN_PROGS="$EXTRA_BIN_PROGS bin/wbinfo\$(EXEEXT)"
5194         EXTRA_SBIN_PROGS="$EXTRA_SBIN_PROGS bin/winbindd\$(EXEEXT)"
5195         if test $BLDSHARED = true; then
5196                 SHLIB_PROGS="$SHLIB_PROGS $WINBIND_NSS $WINBIND_WINS_NSS"
5198                 if test x"$with_pam" = x"yes"; then
5199                         PAM_MODULES="$PAM_MODULES pam_winbind"
5200                         INSTALL_PAM_MODULES="installpammodules"
5201                         UNINSTALL_PAM_MODULES="uninstallpammodules"
5202                 fi
5203         fi
5204 else
5205         AC_MSG_RESULT(no$winbind_no_reason)
5208 # Solaris 10 does have new member in nss_XbyY_key
5209 AC_CHECK_MEMBER(union nss_XbyY_key.ipnode.af_family,
5210                 AC_DEFINE(HAVE_NSS_XBYY_KEY_IPNODE, 1, [Defined if union nss_XbyY_key has ipnode field]),,
5211                 [#include <nss_dbdefs.h>])
5213 # Solaris has some extra fields in struct passwd that need to be
5214 # initialised otherwise nscd crashes.  
5216 AC_CHECK_MEMBER(struct passwd.pw_comment,
5217                 AC_DEFINE(HAVE_PASSWD_PW_COMMENT, 1, [Defined if struct passwd has pw_comment field]),,
5218                 [#include <pwd.h>])
5220 AC_CHECK_MEMBER(struct passwd.pw_age,
5221                 AC_DEFINE(HAVE_PASSWD_PW_AGE, 1, [Defined if struct passwd has pw_age field]),,
5222                 [#include <pwd.h>])
5224 # AIX 4.3.x and 5.1 do not have as many members in
5225 # struct secmethod_table as AIX 5.2
5226 AC_CHECK_MEMBERS([struct secmethod_table.method_attrlist], , ,
5227        [#include <usersec.h>])
5228 AC_CHECK_MEMBERS([struct secmethod_table.method_version], , ,
5229        [#include <usersec.h>])
5232 #################################################
5233 # Check to see if we should use the included popt 
5235 AC_ARG_WITH(included-popt,
5236 [  --with-included-popt    use bundled popt library, not from system],
5238   case "$withval" in
5239         yes)
5240                 INCLUDED_POPT=yes
5241                 ;;
5242         no)
5243                 INCLUDED_POPT=no
5244                 ;;
5245   esac ],
5247 if test x"$INCLUDED_POPT" != x"yes"; then
5248     AC_CHECK_LIB(popt, poptGetContext,
5249                  INCLUDED_POPT=no, INCLUDED_POPT=yes)
5252 AC_MSG_CHECKING(whether to use included popt)
5253 if test x"$INCLUDED_POPT" = x"yes"; then
5254     AC_MSG_RESULT(yes)
5255     BUILD_POPT='$(POPT_OBJS)'
5256         POPTLIBS='$(POPT_OBJS)'
5257     FLAGS1="-I$srcdir/popt"
5258 else
5259     AC_MSG_RESULT(no)
5260         BUILD_POPT=""
5261     POPTLIBS="-lpopt"
5263 AC_SUBST(BUILD_POPT)
5264 AC_SUBST(POPTLIBS)
5265 AC_SUBST(FLAGS1)
5267 #################################################
5268 # Check if the user wants Python
5270 # At the moment, you can use this to set which Python binary to link
5271 # against.  (Libraries built for Python2.2 can't be used by 2.1,
5272 # though they can coexist in different directories.)  In the future
5273 # this might make the Python stuff be built by default.
5275 # Defaulting python breaks the clean target if python isn't installed
5277 PYTHON=
5279 AC_ARG_WITH(python,
5280 [  --with-python=PYTHONNAME  build Python libraries],
5281 [ case "${withval-python}" in
5282   yes)
5283         PYTHON=python
5284         EXTRA_ALL_TARGETS="$EXTRA_ALL_TARGETS python_ext"
5285         ;;
5286   no)
5287         PYTHON=
5288         ;;
5289   *)
5290         PYTHON=${withval-python}
5291         ;;
5292   esac ])
5293 AC_SUBST(PYTHON)
5295 for i in `echo $default_static_modules | sed -e 's/,/ /g'`
5297         eval MODULE_DEFAULT_$i=STATIC
5298 done
5300 for i in `echo $default_shared_modules | sed -e 's/,/ /g'`
5302         dnl Fall back to static if we cannot build shared libraries
5303         eval MODULE_DEFAULT_$i=STATIC
5305         if test $BLDSHARED = true; then
5306                 eval MODULE_DEFAULT_$i=SHARED
5307         fi
5308 done
5310 dnl Always built these modules static
5311 MODULE_rpc_spoolss=STATIC
5312 MODULE_rpc_srv=STATIC
5313 MODULE_idmap_tdb=STATIC
5315 AC_ARG_WITH(static-modules,
5316 [  --with-static-modules=MODULES  Comma-seperated list of names of modules to statically link in],
5317 [ if test $withval; then
5318         for i in `echo $withval | sed -e 's/,/ /g'`
5319         do
5320                 eval MODULE_$i=STATIC
5321         done
5322 fi ])
5324 AC_ARG_WITH(shared-modules,
5325 [  --with-shared-modules=MODULES  Comma-seperated list of names of modules to build shared],
5326 [ if test $withval; then
5327         for i in `echo $withval | sed -e 's/,/ /g'`
5328         do
5329                         eval MODULE_$i=SHARED
5330         done
5331 fi ])
5333 SMB_MODULE(pdb_ldap, passdb/pdb_ldap.o passdb/pdb_nds.o, "bin/ldapsam.$SHLIBEXT", PDB, 
5334                    [ PASSDB_LIBS="$PASSDB_LIBS $LDAP_LIBS" ] )
5335 SMB_MODULE(pdb_smbpasswd, passdb/pdb_smbpasswd.o, "bin/smbpasswd.$SHLIBEXT", PDB)
5336 SMB_MODULE(pdb_tdbsam, passdb/pdb_tdb.o, "bin/tdbsam.$SHLIBEXT", PDB)
5337 SMB_SUBSYSTEM(PDB,passdb/pdb_interface.o)
5340 SMB_MODULE(rpc_lsa, \$(RPC_LSA_OBJ), "bin/librpc_lsarpc.$SHLIBEXT", RPC)
5341 SMB_MODULE(rpc_reg, \$(RPC_REG_OBJ), "bin/librpc_winreg.$SHLIBEXT", RPC)
5342 SMB_MODULE(rpc_lsa_ds, \$(RPC_LSA_DS_OBJ), "bin/librpc_lsa_ds.$SHLIBEXT", RPC)
5343 SMB_MODULE(rpc_wks, \$(RPC_WKS_OBJ), "bin/librpc_wkssvc.$SHLIBEXT", RPC)
5344 SMB_MODULE(rpc_svcctl, \$(RPC_SVCCTL_OBJ), "bin/librpc_svcctl.$SHLIBEXT", RPC)
5345 SMB_MODULE(rpc_ntsvcs, \$(RPC_NTSVCS_OBJ), "bin/librpc_ntsvcs.$SHLIBEXT", RPC)
5346 SMB_MODULE(rpc_net, \$(RPC_NETLOG_OBJ), "bin/librpc_NETLOGON.$SHLIBEXT", RPC)
5347 SMB_MODULE(rpc_netdfs, \$(RPC_DFS_OBJ), "bin/librpc_netdfs.$SHLIBEXT", RPC)
5348 SMB_MODULE(rpc_srv, \$(RPC_SVC_OBJ), "bin/librpc_srvsvc.$SHLIBEXT", RPC)
5349 SMB_MODULE(rpc_spoolss, \$(RPC_SPOOLSS_OBJ), "bin/librpc_spoolss.$SHLIBEXT", RPC)
5350 SMB_MODULE(rpc_eventlog, \$(RPC_EVENTLOG_OBJ), "bin/librpc_eventlog.$SHLIBEXT", RPC)
5351 SMB_MODULE(rpc_samr, \$(RPC_SAMR_OBJ), "bin/librpc_samr.$SHLIBEXT", RPC)
5352 SMB_MODULE(rpc_echo, \$(RPC_ECHO_OBJ), "bin/librpc_echo.$SHLIBEXT", RPC)
5353 SMB_SUBSYSTEM(RPC,smbd/server.o)
5355 SMB_MODULE(idmap_ldap, sam/idmap_ldap.o, "bin/ldap.$SHLIBEXT", IDMAP)
5356 SMB_MODULE(idmap_tdb, sam/idmap_tdb.o, "bin/tdb.$SHLIBEXT", IDMAP)
5357 SMB_MODULE(idmap_rid, sam/idmap_rid.o, "bin/rid.$SHLIBEXT", IDMAP)
5358 SMB_MODULE(idmap_ad, sam/idmap_ad.o, "bin/ad.$SHLIBEXT", IDMAP)
5359 SMB_SUBSYSTEM(IDMAP,sam/idmap.o)
5361 SMB_MODULE(charset_weird, modules/weird.o, "bin/weird.$SHLIBEXT", CHARSET)
5362 SMB_MODULE(charset_CP850, modules/CP850.o, "bin/CP850.$SHLIBEXT", CHARSET)
5363 SMB_MODULE(charset_CP437, modules/CP437.o, "bin/CP437.$SHLIBEXT", CHARSET)
5364 SMB_MODULE(charset_macosxfs, modules/charset_macosxfs.o,"bin/macosxfs.$SHLIBEXT", CHARSET)
5365 SMB_SUBSYSTEM(CHARSET,lib/iconv.o)
5367 SMB_MODULE(auth_rhosts, \$(AUTH_RHOSTS_OBJ), "bin/rhosts.$SHLIBEXT", AUTH)
5368 SMB_MODULE(auth_sam, \$(AUTH_SAM_OBJ), "bin/sam.$SHLIBEXT", AUTH)
5369 SMB_MODULE(auth_unix, \$(AUTH_UNIX_OBJ), "bin/unix.$SHLIBEXT", AUTH)
5370 SMB_MODULE(auth_winbind, \$(AUTH_WINBIND_OBJ), "bin/winbind.$SHLIBEXT", AUTH)
5371 SMB_MODULE(auth_server, \$(AUTH_SERVER_OBJ), "bin/smbserver.$SHLIBEXT", AUTH)
5372 SMB_MODULE(auth_domain, \$(AUTH_DOMAIN_OBJ), "bin/domain.$SHLIBEXT", AUTH)
5373 SMB_MODULE(auth_builtin, \$(AUTH_BUILTIN_OBJ), "bin/builtin.$SHLIBEXT", AUTH)
5374 SMB_MODULE(auth_script, \$(AUTH_SCRIPT_OBJ), "bin/script.$SHLIBEXT", AUTH)
5375 SMB_SUBSYSTEM(AUTH,auth/auth.o)
5377 SMB_MODULE(vfs_recycle, \$(VFS_RECYCLE_OBJ), "bin/recycle.$SHLIBEXT", VFS)
5378 SMB_MODULE(vfs_audit, \$(VFS_AUDIT_OBJ), "bin/audit.$SHLIBEXT", VFS)
5379 SMB_MODULE(vfs_extd_audit, \$(VFS_EXTD_AUDIT_OBJ), "bin/extd_audit.$SHLIBEXT", VFS)
5380 SMB_MODULE(vfs_full_audit, \$(VFS_FULL_AUDIT_OBJ), "bin/full_audit.$SHLIBEXT", VFS)
5381 SMB_MODULE(vfs_netatalk, \$(VFS_NETATALK_OBJ), "bin/netatalk.$SHLIBEXT", VFS)
5382 SMB_MODULE(vfs_fake_perms, \$(VFS_FAKE_PERMS_OBJ), "bin/fake_perms.$SHLIBEXT", VFS)
5383 SMB_MODULE(vfs_default_quota, \$(VFS_DEFAULT_QUOTA_OBJ), "bin/default_quota.$SHLIBEXT", VFS)
5384 SMB_MODULE(vfs_readonly, \$(VFS_READONLY_OBJ), "bin/readonly.$SHLIBEXT", VFS)
5385 SMB_MODULE(vfs_cap, \$(VFS_CAP_OBJ), "bin/cap.$SHLIBEXT", VFS)
5386 SMB_MODULE(vfs_expand_msdfs, \$(VFS_EXPAND_MSDFS_OBJ), "bin/expand_msdfs.$SHLIBEXT", VFS)
5387 SMB_MODULE(vfs_shadow_copy, \$(VFS_SHADOW_COPY_OBJ), "bin/shadow_copy.$SHLIBEXT", VFS)
5388 SMB_MODULE(vfs_afsacl, \$(VFS_AFSACL_OBJ), "bin/afsacl.$SHLIBEXT", VFS)
5389 SMB_MODULE(vfs_catia, \$(VFS_CATIA_OBJ), "bin/catia.$SHLIBEXT", VFS)
5390 SMB_SUBSYSTEM(VFS,smbd/vfs.o)
5392 AC_DEFINE_UNQUOTED(STRING_STATIC_MODULES, "$string_static_modules", [String list of builtin modules])
5394 #################################################
5395 # do extra things if we are running insure
5397 if test "${ac_cv_prog_CC}" = "insure"; then
5398         CPPFLAGS="$CPPFLAGS -D__INSURE__"
5401 #################################################
5402 # Display summary of libraries detected
5404 AC_MSG_RESULT([Using libraries:])
5405 AC_MSG_RESULT([    LIBS = $LIBS])
5406 if test x"$with_ads_support" != x"no"; then
5407    AC_MSG_RESULT([    KRB5_LIBS = $KRB5_LIBS])
5409 if test x"$with_ldap_support" != x"no"; then
5410    AC_MSG_RESULT([    LDAP_LIBS = $LDAP_LIBS])
5412 AC_MSG_RESULT([    AUTH_LIBS = $AUTH_LIBS])
5414 #################################################
5415 # final configure stuff
5417 AC_MSG_CHECKING([configure summary])
5418 AC_TRY_RUN([#include "${srcdir-.}/tests/summary.c"],
5419            AC_MSG_RESULT(yes),
5420            AC_MSG_ERROR([summary failure. Aborting config]); exit 1;,
5421            AC_MSG_WARN([cannot run when cross-compiling]))
5423 builddir=`pwd`
5424 AC_SUBST(builddir)
5426 # Stuff the FAM libraries at the end of the smbd link path (if we have them).
5427 SMBD_LIBS="$samba_fam_libs"
5428 AC_SUBST(SMBD_LIBS)
5430 dnl Remove -L/usr/lib/? from LDFLAGS and LIBS
5431 LIB_REMOVE_USR_LIB(LDFLAGS)
5432 LIB_REMOVE_USR_LIB(LIBS)
5434 dnl Remove -I/usr/include/? from CFLAGS and CPPFLAGS
5435 CFLAGS_REMOVE_USR_INCLUDE(CFLAGS)
5436 CFLAGS_REMOVE_USR_INCLUDE(CPPFLAGS)
5438 AC_OUTPUT(include/stamp-h Makefile script/findsmb smbadduser script/gen-8bit-gap.sh script/installbin.sh script/uninstallbin.sh)
5440 #################################################
5441 # Print very concise instructions on building/use
5442 if test "x$enable_dmalloc" = xyes
5443 then
5444         AC_MSG_RESULT([Note: The dmalloc debug library will be included.  To turn it on use])
5445         AC_MSG_RESULT([      \$ eval \`dmalloc samba\`.])