Add defines for platforms that need them.
[sfrench/samba-autobuild/.git] / source3 / configure.in
1 dnl -*- mode: m4-mode -*-
2 dnl Process this file with autoconf to produce a configure script.
3
4 dnl We must use autotools 2.53 or above
5 AC_PREREQ(2.53)
6 AC_INIT(include/includes.h)
7 AC_CONFIG_HEADER(include/config.h)
8
9 AC_DISABLE_STATIC
10 AC_ENABLE_SHARED
11
12 #################################################
13 # Directory handling stuff to support both the
14 # legacy SAMBA directories and FHS compliant
15 # ones...
16 AC_PREFIX_DEFAULT(/usr/local/samba)
17
18 AC_ARG_WITH(fhs, 
19 [  --with-fhs              Use FHS-compliant paths (default=no)],
20     configdir="${sysconfdir}/samba"
21     lockdir="\${VARDIR}/cache/samba"
22     piddir="\${VARDIR}/run/samba"
23     logfilebase="\${VARDIR}/log/samba"
24     privatedir="\${CONFIGDIR}/private"
25     libdir="\${prefix}/lib/samba"
26     swatdir="\${DATADIR}/samba/swat",
27     configdir="\${LIBDIR}"
28     logfilebase="\${VARDIR}"
29     lockdir="\${VARDIR}/locks"
30     piddir="\${VARDIR}/locks"
31     privatedir="\${prefix}/private"
32     swatdir="\${prefix}/swat")
33
34 #################################################
35 # set private directory location
36 AC_ARG_WITH(privatedir,
37 [  --with-privatedir=DIR   Where to put smbpasswd ($ac_default_prefix/private)],
38 [ case "$withval" in
39   yes|no)
40   #
41   # Just in case anybody calls it without argument
42   #
43     AC_MSG_WARN([--with-privatedir called without argument - will use default])
44   ;;
45   * )
46     privatedir="$withval"
47     ;;
48   esac])
49
50 #################################################
51 # set lock directory location
52 AC_ARG_WITH(lockdir,
53 [  --with-lockdir=DIR      Where to put lock files ($ac_default_prefix/var/locks)],
54 [ case "$withval" in
55   yes|no)
56   #
57   # Just in case anybody calls it without argument
58   #
59     AC_MSG_WARN([--with-lockdir called without argument - will use default])
60   ;;
61   * )
62     lockdir="$withval"
63     ;;
64   esac])
65
66 #################################################
67 # set pid directory location
68 AC_ARG_WITH(piddir,
69 [  --with-piddir=DIR       Where to put pid files ($ac_default_prefix/var/locks)],
70 [ case "$withval" in
71   yes|no)
72   #
73   # Just in case anybody calls it without argument
74   #
75     AC_MSG_WARN([--with-piddir called without argument - will use default])
76   ;;
77   * )
78     piddir="$withval"
79     ;;
80   esac])
81
82 #################################################
83 # set SWAT directory location
84 AC_ARG_WITH(swatdir,
85 [  --with-swatdir=DIR      Where to put SWAT files ($ac_default_prefix/swat)],
86 [ case "$withval" in
87   yes|no)
88   #
89   # Just in case anybody does it
90   #
91     AC_MSG_WARN([--with-swatdir called without argument - will use default])
92   ;;
93   * )
94     swatdir="$withval"
95     ;;
96   esac])
97
98 #################################################
99 # set configuration directory location
100 AC_ARG_WITH(configdir,
101 [  --with-configdir=DIR    Where to put configuration files (\$libdir)],
102 [ case "$withval" in
103   yes|no)
104   #
105   # Just in case anybody does it
106   #
107     AC_MSG_WARN([--with-configdir called without argument - will use default])
108   ;;
109   * )
110     configdir="$withval"
111     ;;
112   esac])
113
114 #################################################
115 # set log directory location
116 AC_ARG_WITH(logfilebase,
117 [  --with-logfilebase=DIR  Where to put log files (\$(VARDIR))],
118 [ case "$withval" in
119   yes|no)
120   #
121   # Just in case anybody does it
122   #
123     AC_MSG_WARN([--with-logfilebase called without argument - will use default])
124   ;;
125   * )
126     logfilebase="$withval"
127     ;;
128   esac])
129
130 AC_SUBST(configdir)
131 AC_SUBST(lockdir)
132 AC_SUBST(piddir)
133 AC_SUBST(logfilebase)
134 AC_SUBST(privatedir)
135 AC_SUBST(swatdir)
136 AC_SUBST(bindir)
137 AC_SUBST(sbindir)
138
139 dnl Unique-to-Samba variables we'll be playing with.
140 AC_SUBST(SHELL)
141 AC_SUBST(LDSHFLAGS)
142 AC_SUBST(SONAMEFLAG)
143 AC_SUBST(SHLD)
144 AC_SUBST(HOST_OS)
145 AC_SUBST(PICFLAG)
146 AC_SUBST(PICSUFFIX)
147 AC_SUBST(POBAD_CC)
148 AC_SUBST(SHLIBEXT)
149 AC_SUBST(INSTALLCLIENTCMD_SH)
150 AC_SUBST(INSTALLCLIENTCMD_A)
151 AC_SUBST(LIBSMBCLIENT_SHARED)
152 AC_SUBST(LIBSMBCLIENT)
153 AC_SUBST(PRINTLIBS)
154 AC_SUBST(AUTHLIBS)
155 AC_SUBST(ACLLIBS)
156 AC_SUBST(SHLIB_PROGS)
157 AC_SUBST(SMBWRAPPER)
158 AC_SUBST(EXTRA_BIN_PROGS)
159 AC_SUBST(EXTRA_SBIN_PROGS)
160 AC_SUBST(EXTRA_ALL_TARGETS)
161
162 AC_ARG_ENABLE(debug, 
163 [  --enable-debug          Turn on compiler debugging information (default=no)],
164     [if eval "test x$enable_debug = xyes"; then
165         CFLAGS="${CFLAGS} -g"
166     fi])
167
168 AC_ARG_ENABLE(developer, [  --enable-developer      Turn on developer warnings and debugging (default=no)],
169     [if eval "test x$enable_developer = xyes"; then
170         CFLAGS="${CFLAGS} -g -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -DDEBUG_PASSWORD -DDEVELOPER"
171     fi])
172
173 AC_ARG_ENABLE(krb5developer, [  --enable-krb5developer  Turn on developer warnings and debugging, except -Wstrict-prototypes (default=no)],
174     [if eval "test x$enable_krb5developer = xyes"; then
175         CFLAGS="${CFLAGS} -g -Wall -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -DDEBUG_PASSWORD -DDEVELOPER"
176     fi])
177
178 AC_ARG_ENABLE(dmalloc, [  --enable-dmalloc        Enable heap debugging [default=no]])
179
180 if test "x$enable_dmalloc" = xyes
181 then
182         AC_DEFINE(ENABLE_DMALLOC, 1, [Define to turn on dmalloc debugging])
183         AC_DEFINE(DMALLOC_FUNC_CHECK, 1, 
184                   [Define to check invariants around some common functions])
185         LIBS="$LIBS -ldmalloc"  
186 fi
187
188 dnl Checks for programs.
189 AC_PROG_CC
190 AC_PROG_INSTALL
191 AC_PROG_AWK
192 AC_PATH_PROG(PERL, perl)
193
194 # compile with optimization and without debugging by default, but
195 # allow people to set their own preference.
196 if test "x$CFLAGS" = x
197 then
198   CFLAGS="-O ${CFLAGS}"
199 fi
200
201 dnl Check if we use GNU ld
202 LD=ld
203 AC_PROG_LD_GNU
204
205 dnl needed before AC_TRY_COMPILE
206 AC_ISC_POSIX
207
208 dnl look for executable suffix
209 AC_EXEEXT
210
211 dnl Check if C compiler understands -c and -o at the same time
212 AC_PROG_CC_C_O
213 if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
214       BROKEN_CC=
215 else
216       BROKEN_CC=#
217 fi
218 AC_SUBST(BROKEN_CC)
219
220 dnl Check if the C compiler understands volatile (it should, being ANSI).
221 AC_CACHE_CHECK([that the C compiler understands volatile],samba_cv_volatile, [
222     AC_TRY_COMPILE([#include <sys/types.h>],[volatile int i = 0],
223         samba_cv_volatile=yes,samba_cv_volatile=no)])
224 if test x"$samba_cv_volatile" = x"yes"; then
225    AC_DEFINE(HAVE_VOLATILE, 1, [Whether the C compiler understands volatile])
226 fi
227
228
229 AC_CANONICAL_SYSTEM
230
231 dnl Add #include for broken IRIX header files
232   case "$host_os" in
233         *irix6*) AC_ADD_INCLUDE(<standards.h>)
234         ;;
235 esac
236
237 AC_VALIDATE_CACHE_SYSTEM_TYPE
238
239 DYNEXP=
240
241 dnl Add modules that have to be built by default here
242 default_modules="pdb_smbpasswd pdb_tdbsam pdb_unix rpc_lsa rpc_samr rpc_reg rpc_wks rpc_net rpc_dfs rpc_srv rpc_spoolss auth_rhosts auth_sam auth_unix auth_winbind auth_server auth_domain auth_builtin vfs_recycle vfs_audit vfs_extd_audit vfs_fake_perms vfs_netatalk"
243
244 #
245 # Config CPPFLAG settings for strange OS's that must be set
246 # before other tests.
247 #
248 case "$host_os" in
249 # Try to work out if this is the native HPUX compiler that uses the -Ae flag.
250     *hpux*)
251     
252       AC_PROG_CC_FLAG(Ae)
253       # mmap on HPUX is completely broken...
254       AC_DEFINE(MMAP_BLACKLIST, 1, [Whether MMAP is broken])
255       if test $ac_cv_prog_cc_Ae = yes; then
256         CPPFLAGS="$CPPFLAGS -Ae"
257       fi
258 #
259 # Defines needed for HPUX support.
260 # HPUX has bigcrypt but (sometimes?) doesn't use it for
261 # password hashing - hence the USE_BOTH_CRYPT_CALLS define.
262 #
263       case `uname -r` in
264                         *9*|*10*)
265                                 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_POSIX_SOURCE -D_ALIGNMENT_REQUIRED=1 -D_MAX_ALIGNMENT=4 -DMAX_POSITIVE_LOCK_OFFSET=0x1ffffffffffLL"
266                                 AC_DEFINE(USE_BOTH_CRYPT_CALLS, 1, [Whether to use both of HPUX' crypt calls])
267                                 AC_DEFINE(_HPUX_SOURCE, 1, [Whether to use HPUX extensions])
268                                 AC_DEFINE(_POSIX_SOURCE, 1, [Whether to use POSIX compatible functions])
269                                 AC_DEFINE(_ALIGNMENT_REQUIRED,1,[Required alignment])
270                                 AC_DEFINE(_MAX_ALIGNMENT,4,[Maximum alignment])
271                                 ;;
272                         *11*)
273                                 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_POSIX_SOURCE -D_LARGEFILE64_SOURCE -D_ALIGNMENT_REQUIRED=1 -D_MAX_ALIGNMENT=4 -DMAX_POSITIVE_LOCK_OFFSET=0x1ffffffffffLL"
274                                 AC_DEFINE(USE_BOTH_CRYPT_CALLS, 1, [Whether to use both of HPUX' crypt calls])
275                                 AC_DEFINE(_HPUX_SOURCE, 1, [Whether to use HPUX extensions])
276                                 AC_DEFINE(_POSIX_SOURCE, 1, [Whether to use POSIX compatible functions])
277                                 AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to use large file support])
278                                 AC_DEFINE(_ALIGNMENT_REQUIRED, 1, [Required alignment])
279                                 AC_DEFINE(_MAX_ALIGNMENT, 4, [Maximum alignment])
280                                 ;;
281       esac
282       DYNEXP="-Wl,-E"
283       ;;
284
285 #
286 # CRAY Unicos has broken const handling
287        *unicos*)
288           AC_MSG_RESULT([disabling const])
289           CPPFLAGS="$CPPFLAGS -Dconst="
290           ;;
291         
292 #
293 # AIX4.x doesn't even admit to having large
294 # files *at all* unless the -D_LARGE_FILE or -D_LARGE_FILE_API flags are set.
295 #
296     *aix4*)
297           AC_MSG_RESULT([enabling large file support])
298       CPPFLAGS="$CPPFLAGS -D_LARGE_FILES"
299           AC_DEFINE(_LARGE_FILES, 1, [Whether to enable large file support])
300       ;;    
301 #
302 # Defines needed for Solaris 2.6/2.7 aka 7.0 to make it admit
303 # to the existance of large files..
304 # Note that -D_LARGEFILE64_SOURCE is different from the Sun
305 # recommendations on large file support, however it makes the
306 # compile work using gcc 2.7 and 2.8, whereas using the Sun
307 # recommendation makes the compile fail on gcc2.7. JRA.
308 #
309         *solaris*)
310                 case `uname -r` in
311                         5.0*|5.1*|5.2*|5.3*|5.5*)
312                                 AC_MSG_RESULT([no large file support])
313                                 ;;
314                         5.*)
315                         AC_MSG_RESULT([enabling large file support])
316                         if test "$ac_cv_prog_gcc" = yes; then
317                                 ${CC-cc} -v >conftest.c 2>&1
318                                 ac_cv_gcc_compiler_version_number=`grep 'gcc version' conftest.c`
319                                 rm -fr conftest.c
320                                 case "$ac_cv_gcc_compiler_version_number" in
321                                         *"gcc version 2.6"*|*"gcc version 2.7"*)
322                                                 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
323                                                 AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to enable large file support])
324                                                 ;;
325                                         *)
326                                                 CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
327                                                 AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to enable large file support])
328                                                 AC_DEFINE(_FILE_OFFSET_BITS, 64, [File offset bits])
329                                                 ;;
330                                 esac
331                         else
332                                 CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
333                                 AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to enable large file support])
334                                 AC_DEFINE(_FILE_OFFSET_BITS, 64, [File offset bits])
335                         fi
336                         ;;
337                 esac
338                 ;;
339 #
340 # VOS may need to have POSIX support and System V compatibility enabled.
341 #
342     *vos*)
343     case "$CPPFLAGS" in
344           *-D_POSIX_C_SOURCE*)
345                 ;;
346           *)
347                 CPPFLAGS="$CPPFLAGS -D_POSIX_C_SOURCE=199506L"
348                 AC_DEFINE(_POSIX_C_SOURCE, 199506L, [Whether to enable POSIX support])
349                 ;;
350     esac
351     case "$CPPFLAGS" in
352           *-D_SYSV*|*-D_SVID_SOURCE*)
353                 ;;
354           *)
355                 CPPFLAGS="$CPPFLAGS -D_SYSV"
356                 AC_DEFINE(_SYSV, 1, [Whether to enable System V compatibility])
357     esac
358     ;;
359 #
360 # Tests needed for SINIX large file support.
361 #
362     *sysv4*)
363       if test $host = mips-sni-sysv4 ; then
364         AC_MSG_CHECKING([for LFS support])
365         old_CPPFLAGS="$CPPFLAGS"
366         CPPFLAGS="-D_LARGEFILE64_SOURCE $CPPFLAGS"
367         AC_TRY_RUN([
368 #include <unistd.h>
369 main () {
370 #if _LFS64_LARGEFILE == 1
371 exit(0);
372 #else
373 exit(1);
374 #endif
375 }], [SINIX_LFS_SUPPORT=yes], [SINIX_LFS_SUPPORT=no], [SINIX_LFS_SUPPORT=cross])
376         CPPFLAGS="$old_CPPFLAGS"
377         if test x$SINIX_LFS_SUPPORT = xyes ; then
378           CPPFLAGS="-D_LARGEFILE64_SOURCE $CPPFLAGS"
379                   AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to enable large file support])
380           CFLAGS="`getconf LFS64_CFLAGS` $CFLAGS"
381           LDFLAGS="`getconf LFS64_LDFLAGS` $LDFLAGS"
382           LIBS="`getconf LFS64_LIBS` $LIBS"
383         fi
384       AC_MSG_RESULT([$SINIX_LFS_SUPPORT])
385       fi
386     ;;
387
388 # Tests for linux LFS support. Need kernel 2.4 and glibc2.2 or greater support.
389 #
390     *linux*)
391         AC_MSG_CHECKING([for LFS support])
392         old_CPPFLAGS="$CPPFLAGS"
393         CPPFLAGS="-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE $CPPFLAGS"
394        AC_TRY_RUN([
395 #include <unistd.h>
396 #include <sys/utsname.h>
397 main() {
398 #if _LFS64_LARGEFILE == 1
399        struct utsname uts;
400        char *release;
401        int major, minor;
402
403        /* Ensure this is glibc 2.2 or higher */
404 #if defined(__GLIBC__) && defined(__GLIBC_MINOR__)
405        int libc_major = __GLIBC__;
406        int libc_minor = __GLIBC_MINOR__;
407
408        if (libc_major < 2)
409               exit(1);
410        if (libc_minor < 2)
411               exit(1);
412 #endif
413
414        /* Ensure this is kernel 2.4 or higher */
415
416        uname(&uts);
417        release = uts.release;
418        major = atoi(strsep(&release, "."));
419        minor = atoi(strsep(&release, "."));
420
421        if (major > 2 || (major == 2 && minor > 3))
422                exit(0);
423        exit(1);
424 #else
425        exit(1);
426 #endif
427 }
428 ], [LINUX_LFS_SUPPORT=yes], [LINUX_LFS_SUPPORT=no], [LINUX_LFS_SUPPORT=cross])
429         CPPFLAGS="$old_CPPFLAGS"
430         if test x$LINUX_LFS_SUPPORT = xyes ; then
431           CPPFLAGS="-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE $CPPFLAGS"
432                   AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to enable large file support])
433           AC_DEFINE(_FILE_OFFSET_BITS, 64, [File offset bits])
434           AC_DEFINE(_GNU_SOURCE, 1, [Whether to use GNU libc extensions])
435         fi
436        AC_MSG_RESULT([$LINUX_LFS_SUPPORT])
437                 ;;
438
439     *hurd*)
440         AC_MSG_CHECKING([for LFS support])
441         old_CPPFLAGS="$CPPFLAGS"
442         CPPFLAGS="-D_LARGEFILE64_SOURCE -D_GNU_SOURCE $CPPFLAGS"
443         AC_TRY_RUN([
444 #include <unistd.h>
445 main () {
446 #if _LFS64_LARGEFILE == 1
447 exit(0);
448 #else
449 exit(1);
450 #endif
451 }], [GLIBC_LFS_SUPPORT=yes], [GLIBC_LFS_SUPPORT=no], [GLIBC_LFS_SUPPORT=cross])
452         CPPFLAGS="$old_CPPFLAGS"
453         if test x$GLIBC_LFS_SUPPORT = xyes ; then
454           CPPFLAGS="-D_LARGEFILE64_SOURCE -D_GNU_SOURCE $CPPFLAGS"
455                   AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to enable large file support])
456           AC_DEFINE(_GNU_SOURCE, 1, [Whether to use GNU libc extensions])
457         fi
458       AC_MSG_RESULT([$GLIBC_LFS_SUPPORT])
459     ;;
460
461 esac
462
463 AC_INLINE
464 AC_HEADER_STDC
465 AC_HEADER_DIRENT
466 AC_HEADER_TIME
467 AC_HEADER_SYS_WAIT
468 AC_CHECK_HEADERS(arpa/inet.h sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h)
469 AC_CHECK_HEADERS(unistd.h utime.h grp.h sys/id.h limits.h memory.h net/if.h)
470 AC_CHECK_HEADERS(compat.h rpc/rpc.h rpcsvc/nis.h rpcsvc/yp_prot.h rpcsvc/ypclnt.h)
471 AC_CHECK_HEADERS(sys/param.h ctype.h sys/wait.h sys/resource.h sys/ioctl.h sys/ipc.h sys/mode.h)
472 AC_CHECK_HEADERS(sys/mman.h sys/filio.h sys/priv.h sys/shm.h string.h strings.h stdlib.h sys/socket.h)
473 AC_CHECK_HEADERS(sys/mount.h sys/vfs.h sys/fs/s5param.h sys/filsys.h termios.h termio.h)
474 AC_CHECK_HEADERS(sys/termio.h sys/statfs.h sys/dustat.h sys/statvfs.h stdarg.h sys/sockio.h)
475 AC_CHECK_HEADERS(security/pam_modules.h security/_pam_macros.h dlfcn.h)
476 AC_CHECK_HEADERS(sys/syslog.h syslog.h execinfo.h)
477
478 # In valgrind 1.0.x, it's just valgrind.h.  In 1.9.x+ there's a
479 # subdirectory of headers.
480 AC_CHECK_HEADERS(valgrind.h valgrind/valgrind.h valgrind/memcheck.h)
481
482 #
483 # HPUX has a bug in that including shadow.h causes a re-definition of MAXINT.
484 # This causes configure to fail to detect it. Check for shadow separately on HPUX.
485 #
486 case "$host_os" in
487     *hpux*)
488                 AC_TRY_COMPILE([#include <shadow.h>],[struct spwd testme],
489                         ac_cv_header_shadow_h=yes,ac_cv_header_shadow_h=no)
490                 if test x"$ac_cv_header_shadow_h" = x"yes"; then
491                    AC_DEFINE(HAVE_SHADOW_H,1,[Whether we have shadow.h])
492                 fi
493         ;;
494 esac
495 AC_CHECK_HEADERS(shadow.h netinet/ip.h netinet/tcp.h netinet/in_systm.h netinet/in_ip.h)
496 AC_CHECK_HEADERS(nss.h nss_common.h ns_api.h sys/security.h security/pam_appl.h security/pam_modules.h)
497 AC_CHECK_HEADERS(stropts.h poll.h)
498 AC_CHECK_HEADERS(sys/capability.h syscall.h sys/syscall.h)
499 AC_CHECK_HEADERS(sys/acl.h sys/cdefs.h glob.h)
500
501 # For experimental utmp support (lastlog on some BSD-like systems)
502 AC_CHECK_HEADERS(utmp.h utmpx.h lastlog.h)
503  
504 # For quotas on Veritas VxFS filesystems
505 AC_CHECK_HEADERS(sys/fs/vx_quota.h)
506
507 # For quotas on Linux XFS filesystems
508 AC_CHECK_HEADERS(linux/xqm.h)
509 AC_CHECK_HEADERS(xfs/xqm.h)
510
511 AC_CHECK_SIZEOF(int,cross)
512 AC_CHECK_SIZEOF(long,cross)
513 AC_CHECK_SIZEOF(short,cross)
514
515 AC_C_CONST
516 AC_C_INLINE
517 AC_C_BIGENDIAN
518 AC_C_CHAR_UNSIGNED
519
520 AC_TYPE_SIGNAL
521 AC_TYPE_UID_T
522 AC_TYPE_MODE_T
523 AC_TYPE_OFF_T
524 AC_TYPE_SIZE_T
525 AC_TYPE_PID_T
526 AC_STRUCT_ST_RDEV
527 AC_DIRENT_D_OFF
528 AC_CHECK_TYPE(ino_t,unsigned)
529 AC_CHECK_TYPE(loff_t,off_t)
530 AC_CHECK_TYPE(offset_t,loff_t)
531 AC_CHECK_TYPE(ssize_t, int)
532 AC_CHECK_TYPE(wchar_t, unsigned short)
533
534 ############################################
535 # for cups support we need libcups, and a handful of header files
536
537 AC_ARG_ENABLE(cups,
538 [  --enable-cups           Turn on CUPS support (default=auto)])
539
540 if test x$enable_cups != xno; then
541         AC_PATH_PROG(CUPS_CONFIG, cups-config)
542
543         if test "x$CUPS_CONFIG" != x; then
544                         AC_DEFINE(HAVE_CUPS,1,[Whether we have CUPS])
545                 CFLAGS="$CFLAGS `$CUPS_CONFIG --cflags`"
546                 LDFLAGS="$LDFLAGS `$CUPS_CONFIG --ldflags`"
547                 PRINTLIBS="$PRINTLIBS `$CUPS_CONFIG --libs`"
548         fi
549 fi
550
551 ############################################
552 # we need dlopen/dlclose/dlsym/dlerror for PAM, the password database plugins and the plugin loading code
553 AC_SEARCH_LIBS(dlopen, [dl])
554 # dlopen/dlclose/dlsym/dlerror will be checked again later and defines will be set then
555
556 ############################################
557 # check if the compiler can do immediate structures
558 AC_CACHE_CHECK([for immediate structures],samba_cv_immediate_structures, [
559     AC_TRY_COMPILE([
560 #include <stdio.h>],
561 [
562    typedef struct {unsigned x;} FOOBAR;
563    #define X_FOOBAR(x) ((FOOBAR) { x })
564    #define FOO_ONE X_FOOBAR(1)
565    FOOBAR f = FOO_ONE;   
566    static struct {
567         FOOBAR y; 
568         } f2[] = {
569                 {FOO_ONE}
570         };   
571 ],
572         samba_cv_immediate_structures=yes,samba_cv_immediate_structures=no)])
573 if test x"$samba_cv_immediate_structures" = x"yes"; then
574    AC_DEFINE(HAVE_IMMEDIATE_STRUCTURES,1,[Whether the compiler supports immediate structures])
575 fi
576
577 ############################################
578 # check if the compiler can do immediate structures
579 AC_CACHE_CHECK([if the compiler will optimize out function calls],samba_cv_optimize_out_funcation_calls, [
580     AC_TRY_LINK([
581 #include <stdio.h>],
582 [
583                 if (0) {
584                    this_function_does_not_exist();
585                 } else {
586                   return 1;
587                 }
588
589 ],
590         samba_cv_optimize_out_funcation_calls=yes,samba_cv_optimize_out_funcation_calls=no)])
591 if test x"$samba_cv_optimize_out_funcation_calls" = x"yes"; then
592    AC_DEFINE(HAVE_COMPILER_WILL_OPTIMIZE_OUT_FNS,1,[Whether the compiler will optimize out function calls])
593 fi
594
595 ############################################
596 # check for unix domain sockets
597 AC_CACHE_CHECK([for unix domain sockets],samba_cv_unixsocket, [
598     AC_TRY_COMPILE([
599 #include <sys/types.h>
600 #include <stdlib.h>
601 #include <stddef.h>
602 #include <sys/socket.h>
603 #include <sys/un.h>],
604 [
605   struct sockaddr_un sunaddr; 
606   sunaddr.sun_family = AF_UNIX;
607 ],
608         samba_cv_unixsocket=yes,samba_cv_unixsocket=no)])
609 if test x"$samba_cv_unixsocket" = x"yes"; then
610    AC_DEFINE(HAVE_UNIXSOCKET,1,[If we need to build with unixscoket support])
611 fi
612
613
614 AC_CACHE_CHECK([for socklen_t type],samba_cv_socklen_t, [
615     AC_TRY_COMPILE([
616 #include <sys/types.h>
617 #if STDC_HEADERS
618 #include <stdlib.h>
619 #include <stddef.h>
620 #endif
621 #include <sys/socket.h>],[socklen_t i = 0],
622         samba_cv_socklen_t=yes,samba_cv_socklen_t=no)])
623 if test x"$samba_cv_socklen_t" = x"yes"; then
624    AC_DEFINE(HAVE_SOCKLEN_T_TYPE,1,[Whether we have the variable type socklen_t])
625 fi
626
627 AC_CACHE_CHECK([for sig_atomic_t type],samba_cv_sig_atomic_t, [
628     AC_TRY_COMPILE([
629 #include <sys/types.h>
630 #if STDC_HEADERS
631 #include <stdlib.h>
632 #include <stddef.h>
633 #endif
634 #include <signal.h>],[sig_atomic_t i = 0],
635         samba_cv_sig_atomic_t=yes,samba_cv_sig_atomic_t=no)])
636 if test x"$samba_cv_sig_atomic_t" = x"yes"; then
637    AC_DEFINE(HAVE_SIG_ATOMIC_T_TYPE,1,[Whether we have the atomic_t variable type])
638 fi
639
640 # stupid headers have the functions but no declaration. grrrr.
641 AC_HAVE_DECL(errno, [#include <errno.h>])
642 AC_HAVE_DECL(setresuid, [#include <unistd.h>])
643 AC_HAVE_DECL(setresgid, [#include <unistd.h>])
644 AC_HAVE_DECL(asprintf, [#include <stdio.h>])
645 AC_HAVE_DECL(vasprintf, [#include <stdio.h>])
646 AC_HAVE_DECL(vsnprintf, [#include <stdio.h>])
647 AC_HAVE_DECL(snprintf, [#include <stdio.h>])
648
649 # and glibc has setresuid under linux but the function does
650 # nothing until kernel 2.1.44! very dumb.
651 AC_CACHE_CHECK([for real setresuid],samba_cv_have_setresuid,[
652     AC_TRY_RUN([#include <errno.h>
653 main() { setresuid(1,1,1); setresuid(2,2,2); exit(errno==EPERM?0:1);}],
654         samba_cv_have_setresuid=yes,samba_cv_have_setresuid=no,samba_cv_have_setresuid=cross)])
655 if test x"$samba_cv_have_setresuid" = x"yes"; then
656     AC_DEFINE(HAVE_SETRESUID,1,[Whether the system has setresuid])
657 fi
658
659 # Do the same check for setresguid...
660 #
661 AC_CACHE_CHECK([for real setresgid],samba_cv_have_setresgid,[
662     AC_TRY_RUN([#include <unistd.h>
663 #include <errno.h>
664 main() { errno = 0; setresgid(1,1,1); exit(errno != 0 ? (errno==EPERM ? 0 : 1) : 0);}],
665         samba_cv_have_setresgid=yes,samba_cv_have_setresgid=no,samba_cv_have_setresgid=cross)])
666 if test x"$samba_cv_have_setresgid" = x"yes"; then
667     AC_DEFINE(HAVE_SETRESGID,1,[Whether the system has setresgid])
668 fi
669
670 AC_FUNC_MEMCMP
671
672 ###############################################
673 # Readline included by default unless explicitly asked not to
674 test "${with_readline+set}" != "set" && with_readline=yes
675
676 # test for where we get readline() from
677 AC_MSG_CHECKING(whether to use readline)
678 AC_ARG_WITH(readline,
679 [  --with-readline[=DIR]   Look for readline include/libs in DIR (default=auto) ],
680 [  case "$with_readline" in
681   yes)
682     AC_MSG_RESULT(yes)
683
684     AC_CHECK_HEADERS(readline.h history.h readline/readline.h)
685     AC_CHECK_HEADERS(readline/history.h)
686
687     AC_CHECK_HEADERS(readline.h readline/readline.h,[
688       for termlib in ncurses curses termcap terminfo termlib tinfo; do
689        AC_CHECK_LIB(${termlib}, tgetent, [TERMLIBS="-l${termlib}"; break])
690       done
691       AC_CHECK_LIB(readline, rl_callback_handler_install,
692        [TERMLIBS="-lreadline $TERMLIBS"
693        AC_DEFINE(HAVE_LIBREADLINE,1,[Whether the system has readline])
694        break], [TERMLIBS=], $TERMLIBS)])
695     ;;
696   no)
697     AC_MSG_RESULT(no)
698     ;;
699   *)
700     AC_MSG_RESULT(yes)
701
702     # Needed for AC_CHECK_HEADERS and AC_CHECK_LIB to look at
703     # alternate readline path
704     _ldflags=${LDFLAGS}
705     _cppflags=${CPPFLAGS}
706
707     # Add additional search path
708     LDFLAGS="-L$with_readline/lib $LDFLAGS"
709     CPPFLAGS="-I$with_readline/include $CPPFLAGS"
710
711     AC_CHECK_HEADERS(readline.h history.h readline/readline.h)
712     AC_CHECK_HEADERS(readline/history.h)
713
714     AC_CHECK_HEADERS(readline.h readline/readline.h,[
715       for termlib in ncurses curses termcap terminfo termlib; do
716        AC_CHECK_LIB(${termlib}, tgetent, [TERMLIBS="-l${termlib}"; break])
717       done
718       AC_CHECK_LIB(readline, rl_callback_handler_install,
719        [TERMLDFLAGS="-L$with_readline/lib"
720        TERMCPPFLAGS="-I$with_readline/include"
721        CPPFLAGS="-I$with_readline/include $CPPFLAGS"
722        TERMLIBS="-lreadline $TERMLIBS"
723        AC_DEFINE(HAVE_LIBREADLINE,1,[Whether the system has readline])
724        break], [TERMLIBS= CPPFLAGS=$_cppflags], $TERMLIBS)])
725
726     LDFLAGS=$_ldflags
727     ;;
728   esac],
729   AC_MSG_RESULT(no)
730 )
731 AC_SUBST(TERMLIBS)
732 AC_SUBST(TERMLDFLAGS)
733
734 # The readline API changed slightly from readline3 to readline4, so
735 # code will generate warnings on one of them unless we have a few
736 # special cases.
737 AC_CHECK_LIB(readline, rl_completion_matches,
738              [AC_DEFINE(HAVE_NEW_LIBREADLINE, 1, 
739                         [Do we have rl_completion_matches?])],
740              [],
741              [$TERMLIBS])
742
743 # The following test taken from the cvs sources
744 # If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
745 # The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
746 # libsocket.so which has a bad implementation of gethostbyname (it
747 # only looks in /etc/hosts), so we only look for -lsocket if we need
748 # it.
749 AC_CHECK_FUNCS(connect)
750 if test x"$ac_cv_func_connect" = x"no"; then
751     case "$LIBS" in
752     *-lnsl*) ;;
753     *) AC_CHECK_LIB(nsl_s, printf) ;;
754     esac
755     case "$LIBS" in
756     *-lnsl*) ;;
757     *) AC_CHECK_LIB(nsl, printf) ;;
758     esac
759     case "$LIBS" in
760     *-lsocket*) ;;
761     *) AC_CHECK_LIB(socket, connect) ;;
762     esac
763     case "$LIBS" in
764     *-linet*) ;;
765     *) AC_CHECK_LIB(inet, connect) ;;
766     esac
767     dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
768     dnl has been cached.
769     if test x"$ac_cv_lib_socket_connect" = x"yes" || 
770        test x"$ac_cv_lib_inet_connect" = x"yes"; then
771         # ac_cv_func_connect=yes
772         # don't!  it would cause AC_CHECK_FUNC to succeed next time configure is run
773         AC_DEFINE(HAVE_CONNECT,1,[Whether the system has connect()])
774     fi
775 fi
776
777 ###############################################
778 # test for where we get yp_get_default_domain() from
779 AC_SEARCH_LIBS(yp_get_default_domain, [nsl])
780 AC_CHECK_FUNCS(yp_get_default_domain)
781
782 # Check if we have execl, if not we need to compile smbrun.
783 AC_CHECK_FUNCS(execl)
784 if test x"$ac_cv_func_execl" = x"no"; then
785     EXTRA_BIN_PROGS="$EXTRA_BIN_PROGS bin/smbrun\$(EXEEXT)"
786 fi
787
788 AC_CHECK_FUNCS(dlopen dlclose dlsym dlerror waitpid getcwd strdup strndup strnlen strtoul strerror chown fchown chmod fchmod chroot link mknod mknod64)
789 AC_CHECK_FUNCS(fstat strchr utime utimes getrlimit fsync bzero memset strlcpy strlcat setpgid)
790 AC_CHECK_FUNCS(memmove vsnprintf snprintf asprintf vasprintf setsid glob strpbrk pipe crypt16 getauthuid)
791 AC_CHECK_FUNCS(strftime sigprocmask sigblock sigaction sigset innetgr setnetgrent getnetgrent endnetgrent)
792 AC_CHECK_FUNCS(initgroups select poll rdchk getgrnam getgrent pathconf realpath)
793 AC_CHECK_FUNCS(setpriv setgidx setuidx setgroups sysconf mktime rename ftruncate stat64 fstat64)
794 AC_CHECK_FUNCS(lstat64 fopen64 atexit grantpt dup2 lseek64 ftruncate64 readdir64)
795 AC_CHECK_FUNCS(fseek64 fseeko64 ftell64 ftello64 setluid getpwanam setlinebuf)
796 AC_CHECK_FUNCS(srandom random srand rand setenv usleep strcasecmp fcvt fcvtl symlink readlink)
797 AC_CHECK_FUNCS(syslog vsyslog getgrouplist timegm)
798 # setbuffer, shmget, shm_open are needed for smbtorture
799 AC_CHECK_FUNCS(setbuffer shmget shm_open backtrace_symbols)
800
801 # syscall() is needed for smbwrapper.
802 AC_CHECK_FUNCS(syscall)
803
804 AC_CHECK_FUNCS(_dup _dup2 _opendir _readdir _seekdir _telldir _closedir)
805 AC_CHECK_FUNCS(__dup __dup2 __opendir __readdir __seekdir __telldir __closedir)
806 AC_CHECK_FUNCS(__getcwd _getcwd)
807 AC_CHECK_FUNCS(__xstat __fxstat __lxstat)
808 AC_CHECK_FUNCS(_stat _lstat _fstat __stat __lstat __fstat)
809 AC_CHECK_FUNCS(_acl __acl _facl __facl _open __open _chdir __chdir)
810 AC_CHECK_FUNCS(_close __close _fchdir __fchdir _fcntl __fcntl)
811 AC_CHECK_FUNCS(getdents _getdents __getdents _lseek __lseek _read __read)
812 AC_CHECK_FUNCS(getdirentries _write __write _fork __fork)
813 AC_CHECK_FUNCS(_stat64 __stat64 _fstat64 __fstat64 _lstat64 __lstat64)
814 AC_CHECK_FUNCS(__sys_llseek llseek _llseek __llseek readdir64 _readdir64 __readdir64)
815 AC_CHECK_FUNCS(pread _pread __pread pread64 _pread64 __pread64)
816 AC_CHECK_FUNCS(pwrite _pwrite __pwrite pwrite64 _pwrite64 __pwrite64)
817 AC_CHECK_FUNCS(open64 _open64 __open64 creat64)
818
819 #
820 # stat64 family may need <sys/stat.h> on some systems, notably ReliantUNIX
821 #
822
823 if test x$ac_cv_func_stat64 = xno ; then
824   AC_MSG_CHECKING([for stat64 in <sys/stat.h>])
825   AC_TRY_LINK([
826 #if defined(HAVE_UNISTD_H)
827 #include <unistd.h>
828 #endif
829 #include <sys/stat.h>
830 ], [struct stat64 st64; exit(stat64(".",&st64));], [ac_cv_func_stat64=yes])
831   AC_MSG_RESULT([$ac_cv_func_stat64])
832   if test x$ac_cv_func_stat64 = xyes ; then
833     AC_DEFINE(HAVE_STAT64,1,[Whether stat64() is available])
834   fi
835 fi
836
837 if test x$ac_cv_func_lstat64 = xno ; then
838   AC_MSG_CHECKING([for lstat64 in <sys/stat.h>])
839   AC_TRY_LINK([
840 #if defined(HAVE_UNISTD_H)
841 #include <unistd.h>
842 #endif
843 #include <sys/stat.h>
844 ], [struct stat64 st64; exit(lstat64(".",&st64));], [ac_cv_func_lstat64=yes])
845   AC_MSG_RESULT([$ac_cv_func_lstat64])
846   if test x$ac_cv_func_lstat64 = xyes ; then
847     AC_DEFINE(HAVE_LSTAT64,[Whether lstat64() is available])
848   fi
849 fi
850
851 if test x$ac_cv_func_fstat64 = xno ; then
852   AC_MSG_CHECKING([for fstat64 in <sys/stat.h>])
853   AC_TRY_LINK([
854 #if defined(HAVE_UNISTD_H)
855 #include <unistd.h>
856 #endif
857 #include <sys/stat.h>
858 ], [struct stat64 st64; exit(fstat64(0,&st64));], [ac_cv_func_fstat64=yes])
859   AC_MSG_RESULT([$ac_cv_func_fstat64])
860   if test x$ac_cv_func_fstat64 = xyes ; then
861     AC_DEFINE(HAVE_FSTAT64,1,[Whether fstat64() is available])
862   fi
863 fi
864
865 #####################################
866 # we might need the resolv library on some systems
867 AC_CHECK_LIB(resolv, dn_expand)
868
869 #
870 # Check for the functions putprpwnam, set_auth_parameters,
871 # getspnam, bigcrypt and getprpwnam in -lsec and -lsecurity
872 # Needed for OSF1 and HPUX.
873 #
874
875 AC_LIBTESTFUNC(security, putprpwnam)
876 AC_LIBTESTFUNC(sec, putprpwnam)
877
878 AC_LIBTESTFUNC(security, set_auth_parameters)
879 AC_LIBTESTFUNC(sec, set_auth_parameters)
880
881 # UnixWare 7.x has its getspnam in -lgen
882 AC_LIBTESTFUNC(gen, getspnam)
883
884 AC_LIBTESTFUNC(security, getspnam)
885 AC_LIBTESTFUNC(sec, getspnam)
886
887 AC_LIBTESTFUNC(security, bigcrypt)
888 AC_LIBTESTFUNC(sec, bigcrypt)
889
890 AC_LIBTESTFUNC(security, getprpwnam)
891 AC_LIBTESTFUNC(sec, getprpwnam)
892
893 # Assume non-shared by default and override below
894 BLDSHARED="false"
895
896 # these are the defaults, good for lots of systems
897 HOST_OS="$host_os"
898 LDSHFLAGS="-shared"
899 SONAMEFLAG="#"
900 SHLD="\${CC}"
901 PICFLAG=""
902 PICSUFFIX="po"
903 POBAD_CC="#"
904 SHLIBEXT="so"
905
906 if test "$enable_shared" = "yes"; then
907   # this bit needs to be modified for each OS that is suported by
908   # smbwrapper. You need to specify how to created a shared library and
909   # how to compile C code to produce PIC object files
910
911   AC_MSG_CHECKING([ability to build shared libraries])
912
913   # and these are for particular systems
914   case "$host_os" in
915                 *linux*)   AC_DEFINE(LINUX,1,[Whether the host os is linux])
916                         BLDSHARED="true"
917                         LDSHFLAGS="-shared" 
918                         DYNEXP="-Wl,--export-dynamic"
919                         PICFLAG="-fPIC"
920                         SONAMEFLAG="-Wl,-soname="
921                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
922                         ;;
923                 *solaris*) AC_DEFINE(SUNOS5,1,[Whether the host os is solaris])
924                         BLDSHARED="true"
925                         LDSHFLAGS="-G"
926                         SONAMEFLAG="-h "
927                         if test "${GCC}" = "yes"; then
928                                 PICFLAG="-fPIC"
929                                 if test "${ac_cv_prog_gnu_ld}" = "yes"; then
930                                         DYNEXP="-Wl,-E"
931                                 fi
932                         else
933                                 PICFLAG="-KPIC"
934                                 ## ${CFLAGS} added for building 64-bit shared 
935                                 ## libs using Sun's Compiler
936                                 LDSHFLAGS="-G \${CFLAGS}"
937                                 POBAD_CC=""
938                                 PICSUFFIX="po.o"
939                         fi
940                         AC_DEFINE(STAT_ST_BLOCKSIZE,512,[The size of a block])
941                         AC_DEFINE(BROKEN_GETGRNAM,1,[Does getgrnam work correctly])
942                         ;;
943                 *sunos*) AC_DEFINE(SUNOS4,1,[Whether the host os is sunos4])
944                         BLDSHARED="true"
945                         LDSHFLAGS="-G"
946                         SONAMEFLAG="-Wl,-h,"
947                         PICFLAG="-KPIC"   # Is this correct for SunOS
948                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
949                         AC_DEFINE(BROKEN_GETGRNAM,1,[Does getgrnam work correctly])
950                         ;;
951                 *netbsd* | *freebsd*)  BLDSHARED="true"
952                         LDSHFLAGS="-shared"
953                         DYNEXP="-Wl,--export-dynamic"
954                         SONAMEFLAG="-Wl,-soname,"
955                         PICFLAG="-fPIC -DPIC"
956                         AC_DEFINE(STAT_ST_BLOCKSIZE,512,[The size of a block])
957                         AC_DEFINE(BROKEN_GETGRNAM,1,[Does getgrnam work correctly])
958                         ;;
959                 *openbsd*)  BLDSHARED="true"
960                         LDSHFLAGS="-shared"
961                         DYNEXP="-Wl,-Bdynamic"
962                         SONAMEFLAG="-Wl,-soname,"
963                         PICFLAG="-fPIC"
964                         AC_DEFINE(STAT_ST_BLOCKSIZE,512,[The size of a block])
965                         AC_DEFINE(BROKEN_GETGRNAM,1,[Does getgrnam work correctly])
966                         ;;
967                 *irix*) AC_DEFINE(IRIX,1,[Whether the host os is irix])
968                         case "$host_os" in
969                         *irix6*) AC_DEFINE(IRIX6,1,[Whether the host os is irix6])
970                         ;;
971                         esac
972                         ATTEMPT_WRAP32_BUILD=yes
973                         BLDSHARED="true"
974                         LDSHFLAGS="-set_version sgi1.0 -shared"
975                         SONAMEFLAG="-soname "
976                         SHLD="\${LD}"
977                         if test "${GCC}" = "yes"; then
978                                 PICFLAG="-fPIC"
979                         else 
980                                 PICFLAG="-KPIC"
981                         fi
982                         AC_DEFINE(STAT_ST_BLOCKSIZE,512,[The size of a block])
983                         ;;
984                 *aix*) AC_DEFINE(AIX,1,[Whether the host os is aix])
985                         BLDSHARED="true"
986                         LDSHFLAGS="-Wl,-bexpall,-bM:SRE,-bnoentry"
987                         DYNEXP="-Wl,-brtl,-bexpall"
988                         PICFLAG="-O2"
989                         if test "${GCC}" != "yes"; then
990                                 ## for funky AIX compiler using strncpy()
991                                 CFLAGS="$CFLAGS -D_LINUX_SOURCE_COMPAT -qmaxmem=32000"
992                         fi
993
994                         AC_DEFINE(STAT_ST_BLOCKSIZE,DEV_BSIZE,[The size of a block])
995                         ;;
996                 *hpux*) AC_DEFINE(HPUX,1,[Whether the host os is HPUX])
997                         SHLIBEXT="sl"
998                         # Use special PIC flags for the native HP-UX compiler.
999                         if test $ac_cv_prog_cc_Ae = yes; then
1000                                 BLDSHARED="true"
1001                                 SHLD="/usr/bin/ld"
1002                                 LDSHFLAGS="-B symbolic -b -z"
1003                                 SONAMEFLAG="+h "
1004                                 PICFLAG="+z"
1005                         fi
1006                         DYNEXP="-Wl,-E"
1007                         AC_DEFINE(STAT_ST_BLOCKSIZE,8192,[The size of a block])
1008                         AC_DEFINE(POSIX_ACL_NEEDS_MASK,1,[Does a POSIX ACL need a mask element])
1009                         ;;
1010                 *qnx*) AC_DEFINE(QNX,1,[Whether the host os is qnx])
1011                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1012                         ;;
1013                 *osf*) AC_DEFINE(OSF1,1,[Whether the host os is osf1])
1014                         BLDSHARED="true"
1015                         LDSHFLAGS="-shared"
1016                         SONAMEFLAG="-Wl,-soname,"
1017                         PICFLAG="-fPIC"
1018                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1019                         AC_DEFINE(BROKEN_GETGRNAM,1,[Does getgrnam work correctly])
1020                         ;;
1021                 *sco*) AC_DEFINE(SCO,1,[Whether the host os is sco unix])
1022                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1023                         ;;
1024                 *unixware*) AC_DEFINE(UNIXWARE,1,[Whether the host os is unixware])
1025                         BLDSHARED="true"
1026                         LDSHFLAGS="-shared"
1027                         SONAMEFLAG="-Wl,-soname,"
1028                         PICFLAG="-KPIC"
1029                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1030                         ;;
1031                 *next2*) AC_DEFINE(NEXT2,1,[Whether the host os is NeXT v2])
1032                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1033                         ;;
1034                 *dgux*) AC_CHECK_PROG( ROFF, groff, [groff -etpsR -Tascii -man])
1035                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1036                         ;;
1037                 *sysv4*) AC_DEFINE(SYSV,1,[Whether this is a system V system])
1038                         case "$host" in
1039                                 *-univel-*)     if [ test "$GCC" != yes ]; then
1040                                                 AC_DEFINE(HAVE_MEMSET,1,[Whether memset() is available])
1041                                         fi
1042                                         LDSHFLAGS="-G"
1043                                         DYNEXP="-Bexport"
1044                                 ;;
1045                                 *mips-sni-sysv4*) AC_DEFINE(RELIANTUNIX,1,[Whether the host os is reliantunix]);;
1046                         esac
1047                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1048                         ;;
1049
1050                 *sysv5*) AC_DEFINE(SYSV,1,[Whether this is a system V system])
1051                         if [ test "$GCC" != yes ]; then
1052                                 AC_DEFINE(HAVE_MEMSET,1,[Whether memset() is available])
1053                         fi
1054                         LDSHFLAGS="-G"
1055                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1056                         ;;
1057                 *vos*) AC_DEFINE(STAT_ST_BLOCKSIZE,4096)
1058                         BLDSHARED="false"
1059                         LDSHFLAGS=""
1060                         ;;
1061                 *)
1062                         AC_DEFINE(STAT_ST_BLOCKSIZE,512)
1063                         ;;
1064   esac
1065   AC_SUBST(DYNEXP)
1066   AC_MSG_RESULT($BLDSHARED)
1067   AC_MSG_CHECKING([linker flags for shared libraries])
1068   AC_MSG_RESULT([$LDSHFLAGS])
1069   AC_MSG_CHECKING([compiler flags for position-independent code])
1070   AC_MSG_RESULT([$PICFLAGS])
1071 fi
1072
1073 #######################################################
1074 # test whether building a shared library actually works
1075 if test $BLDSHARED = true; then
1076 AC_CACHE_CHECK([whether building shared libraries actually works], 
1077                [ac_cv_shlib_works],[
1078    ac_cv_shlib_works=no
1079    # try building a trivial shared library
1080    if test "$PICSUFFIX" = "po"; then
1081      $CC $CPPFLAGS $CFLAGS $PICFLAG -c -o shlib.po ${srcdir-.}/tests/shlib.c &&
1082        $CC $CPPFLAGS $CFLAGS `eval echo $LDSHFLAGS` -o shlib.so shlib.po &&
1083        ac_cv_shlib_works=yes
1084    else
1085      $CC $CPPFLAGS $CFLAGS $PICFLAG -c -o shlib.$PICSUFFIX ${srcdir-.}/tests/shlib.c &&
1086        mv shlib.$PICSUFFIX shlib.po &&
1087        $CC $CPPFLAGS $CFLAGS `eval echo $LDSHFLAGS` -o shlib.so shlib.po &&
1088        ac_cv_shlib_works=yes
1089    fi
1090    rm -f shlib.so shlib.po
1091 ])
1092 if test $ac_cv_shlib_works = no; then
1093    BLDSHARED=false
1094 fi
1095 fi
1096
1097 ################
1098
1099 AC_CACHE_CHECK([for long long],samba_cv_have_longlong,[
1100 AC_TRY_RUN([#include <stdio.h>
1101 main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
1102 samba_cv_have_longlong=yes,samba_cv_have_longlong=no,samba_cv_have_longlong=cross)])
1103 if test x"$samba_cv_have_longlong" = x"yes"; then
1104     AC_DEFINE(HAVE_LONGLONG,1,[Whether the host supports long long's])
1105 fi
1106
1107 #
1108 # Check if the compiler supports the LL prefix on long long integers.
1109 # AIX needs this.
1110
1111 AC_CACHE_CHECK([for LL suffix on long long integers],samba_cv_compiler_supports_ll, [
1112     AC_TRY_COMPILE([#include <stdio.h>],[long long i = 0x8000000000LL],
1113         samba_cv_compiler_supports_ll=yes,samba_cv_compiler_supports_ll=no)])
1114 if test x"$samba_cv_compiler_supports_ll" = x"yes"; then
1115    AC_DEFINE(COMPILER_SUPPORTS_LL,1,[Whether the compiler supports the LL prefix on long long integers])
1116 fi
1117
1118   
1119 AC_CACHE_CHECK([for 64 bit off_t],samba_cv_SIZEOF_OFF_T,[
1120 AC_TRY_RUN([#include <stdio.h>
1121 #include <sys/stat.h>
1122 main() { exit((sizeof(off_t) == 8) ? 0 : 1); }],
1123 samba_cv_SIZEOF_OFF_T=yes,samba_cv_SIZEOF_OFF_T=no,samba_cv_SIZEOF_OFF_T=cross)])
1124 if test x"$samba_cv_SIZEOF_OFF_T" = x"yes"; then
1125     AC_DEFINE(SIZEOF_OFF_T,8,[The size of the 'off_t' type])
1126 fi
1127
1128 AC_CACHE_CHECK([for off64_t],samba_cv_HAVE_OFF64_T,[
1129 AC_TRY_RUN([
1130 #if defined(HAVE_UNISTD_H)
1131 #include <unistd.h>
1132 #endif
1133 #include <stdio.h>
1134 #include <sys/stat.h>
1135 main() { struct stat64 st; off64_t s; if (sizeof(off_t) == sizeof(off64_t)) exit(1); exit((lstat64("/dev/null", &st)==0)?0:1); }],
1136 samba_cv_HAVE_OFF64_T=yes,samba_cv_HAVE_OFF64_T=no,samba_cv_HAVE_OFF64_T=cross)])
1137 if test x"$samba_cv_HAVE_OFF64_T" = x"yes"; then
1138     AC_DEFINE(HAVE_OFF64_T,1,[Whether off64_t is available])
1139 fi
1140
1141 AC_CACHE_CHECK([for 64 bit ino_t],samba_cv_SIZEOF_INO_T,[
1142 AC_TRY_RUN([#include <stdio.h>
1143 #include <sys/stat.h>
1144 main() { exit((sizeof(ino_t) == 8) ? 0 : 1); }],
1145 samba_cv_SIZEOF_INO_T=yes,samba_cv_SIZEOF_INO_T=no,samba_cv_SIZEOF_INO_T=cross)])
1146 if test x"$samba_cv_SIZEOF_INO_T" = x"yes"; then
1147     AC_DEFINE(SIZEOF_INO_T,8,[The size of the 'ino_t' type])
1148 fi
1149
1150 AC_CACHE_CHECK([for ino64_t],samba_cv_HAVE_INO64_T,[
1151 AC_TRY_RUN([
1152 #if defined(HAVE_UNISTD_H)
1153 #include <unistd.h>
1154 #endif
1155 #include <stdio.h>
1156 #include <sys/stat.h>
1157 main() { struct stat64 st; ino64_t s; if (sizeof(ino_t) == sizeof(ino64_t)) exit(1); exit((lstat64("/dev/null", &st)==0)?0:1); }],
1158 samba_cv_HAVE_INO64_T=yes,samba_cv_HAVE_INO64_T=no,samba_cv_HAVE_INO64_T=cross)])
1159 if test x"$samba_cv_HAVE_INO64_T" = x"yes"; then
1160     AC_DEFINE(HAVE_INO64_T,1,[Whether the 'ino64_t' type is available])
1161 fi
1162
1163 AC_CACHE_CHECK([for dev64_t],samba_cv_HAVE_DEV64_T,[
1164 AC_TRY_RUN([
1165 #if defined(HAVE_UNISTD_H)
1166 #include <unistd.h>
1167 #endif
1168 #include <stdio.h>
1169 #include <sys/stat.h>
1170 main() { struct stat64 st; dev64_t s; if (sizeof(dev_t) == sizeof(dev64_t)) exit(1); exit((lstat64("/dev/null", &st)==0)?0:1); }],
1171 samba_cv_HAVE_DEV64_T=yes,samba_cv_HAVE_DEV64_T=no,samba_cv_HAVE_DEV64_T=cross)])
1172 if test x"$samba_cv_HAVE_DEV64_T" = x"yes"; then
1173     AC_DEFINE(HAVE_DEV64_T,1,[Whether the 'dev64_t' type is available])
1174 fi
1175
1176 AC_CACHE_CHECK([for struct dirent64],samba_cv_HAVE_STRUCT_DIRENT64,[
1177 AC_TRY_COMPILE([
1178 #if defined(HAVE_UNISTD_H)
1179 #include <unistd.h>
1180 #endif
1181 #include <sys/types.h>
1182 #include <dirent.h>],
1183 [struct dirent64 de;],
1184 samba_cv_HAVE_STRUCT_DIRENT64=yes,samba_cv_HAVE_STRUCT_DIRENT64=no)])
1185 if test x"$samba_cv_HAVE_STRUCT_DIRENT64" = x"yes" && test x"$ac_cv_func_readdir64" = x"yes"; then
1186     AC_DEFINE(HAVE_STRUCT_DIRENT64,1,[Whether the 'dirent64' struct is available])
1187 fi
1188
1189 AC_CACHE_CHECK([for major macro],samba_cv_HAVE_DEVICE_MAJOR_FN,[
1190 AC_TRY_RUN([
1191 #if defined(HAVE_UNISTD_H)
1192 #include <unistd.h>
1193 #endif
1194 #include <sys/types.h>
1195 main() { dev_t dev; int i = major(dev); return 0; }],
1196 samba_cv_HAVE_DEVICE_MAJOR_FN=yes,samba_cv_HAVE_DEVICE_MAJOR_FN=no,samba_cv_HAVE_DEVICE_MAJOR_FN=cross)])
1197 if test x"$samba_cv_HAVE_DEVICE_MAJOR_FN" = x"yes"; then
1198     AC_DEFINE(HAVE_DEVICE_MAJOR_FN,1,[Whether the major macro for dev_t is available])
1199 fi
1200
1201 AC_CACHE_CHECK([for minor macro],samba_cv_HAVE_DEVICE_MINOR_FN,[
1202 AC_TRY_RUN([
1203 #if defined(HAVE_UNISTD_H)
1204 #include <unistd.h>
1205 #endif
1206 #include <sys/types.h>
1207 main() { dev_t dev; int i = minor(dev); return 0; }],
1208 samba_cv_HAVE_DEVICE_MINOR_FN=yes,samba_cv_HAVE_DEVICE_MINOR_FN=no,samba_cv_HAVE_DEVICE_MINOR_FN=cross)])
1209 if test x"$samba_cv_HAVE_DEVICE_MINOR_FN" = x"yes"; then
1210     AC_DEFINE(HAVE_DEVICE_MINOR_FN,1,[Whether the minor macro for dev_t is available])
1211 fi
1212
1213 AC_CACHE_CHECK([for unsigned char],samba_cv_HAVE_UNSIGNED_CHAR,[
1214 AC_TRY_RUN([#include <stdio.h>
1215 main() { char c; c=250; exit((c > 0)?0:1); }],
1216 samba_cv_HAVE_UNSIGNED_CHAR=yes,samba_cv_HAVE_UNSIGNED_CHAR=no,samba_cv_HAVE_UNSIGNED_CHAR=cross)])
1217 if test x"$samba_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then
1218     AC_DEFINE(HAVE_UNSIGNED_CHAR,1,[Whether the 'unsigned char' type is available])
1219 fi
1220
1221 AC_CACHE_CHECK([for sin_len in sock],samba_cv_HAVE_SOCK_SIN_LEN,[
1222 AC_TRY_COMPILE([#include <sys/types.h>
1223 #include <sys/socket.h>
1224 #include <netinet/in.h>],
1225 [struct sockaddr_in sock; sock.sin_len = sizeof(sock);],
1226 samba_cv_HAVE_SOCK_SIN_LEN=yes,samba_cv_HAVE_SOCK_SIN_LEN=no)])
1227 if test x"$samba_cv_HAVE_SOCK_SIN_LEN" = x"yes"; then
1228     AC_DEFINE(HAVE_SOCK_SIN_LEN,1,[Whether the sockaddr_in struct has a sin_len property])
1229 fi
1230
1231 AC_CACHE_CHECK([whether seekdir returns void],samba_cv_SEEKDIR_RETURNS_VOID,[
1232 AC_TRY_COMPILE([#include <sys/types.h>
1233 #include <dirent.h>
1234 void seekdir(DIR *d, long loc) { return; }],[return 0;],
1235 samba_cv_SEEKDIR_RETURNS_VOID=yes,samba_cv_SEEKDIR_RETURNS_VOID=no)])
1236 if test x"$samba_cv_SEEKDIR_RETURNS_VOID" = x"yes"; then
1237     AC_DEFINE(SEEKDIR_RETURNS_VOID,1,[Whether seekdir returns void])
1238 fi
1239
1240 AC_CACHE_CHECK([for __FUNCTION__ macro],samba_cv_HAVE_FUNCTION_MACRO,[
1241 AC_TRY_COMPILE([#include <stdio.h>], [printf("%s\n", __FUNCTION__);],
1242 samba_cv_HAVE_FUNCTION_MACRO=yes,samba_cv_HAVE_FUNCTION_MACRO=no)])
1243 if test x"$samba_cv_HAVE_FUNCTION_MACRO" = x"yes"; then
1244     AC_DEFINE(HAVE_FUNCTION_MACRO,1,[Whether there is a __FUNCTION__ macro])
1245 fi
1246
1247 AC_CACHE_CHECK([if gettimeofday takes tz argument],samba_cv_HAVE_GETTIMEOFDAY_TZ,[
1248 AC_TRY_RUN([
1249 #include <sys/time.h>
1250 #include <unistd.h>
1251 main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}],
1252            samba_cv_HAVE_GETTIMEOFDAY_TZ=yes,samba_cv_HAVE_GETTIMEOFDAY_TZ=no,samba_cv_HAVE_GETTIMEOFDAY_TZ=cross)])
1253 if test x"$samba_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then
1254     AC_DEFINE(HAVE_GETTIMEOFDAY_TZ,1,[Whether gettimeofday() is available])
1255 fi
1256
1257 AC_CACHE_CHECK([for __va_copy],samba_cv_HAVE_VA_COPY,[
1258 AC_TRY_LINK([#include <stdarg.h>
1259 va_list ap1,ap2;], [__va_copy(ap1,ap2);],
1260 samba_cv_HAVE_VA_COPY=yes,samba_cv_HAVE_VA_COPY=no)])
1261 if test x"$samba_cv_HAVE_VA_COPY" = x"yes"; then
1262     AC_DEFINE(HAVE_VA_COPY,1,[Whether __va_copy() is available])
1263 fi
1264
1265 AC_CACHE_CHECK([for C99 vsnprintf],samba_cv_HAVE_C99_VSNPRINTF,[
1266 AC_TRY_RUN([
1267 #include <sys/types.h>
1268 #include <stdarg.h>
1269 void foo(const char *format, ...) { 
1270        va_list ap;
1271        int len;
1272        char buf[5];
1273
1274        va_start(ap, format);
1275        len = vsnprintf(buf, 0, format, ap);
1276        va_end(ap);
1277        if (len != 5) exit(1);
1278
1279        va_start(ap, format);
1280        len = vsnprintf(0, 0, format, ap);
1281        va_end(ap);
1282        if (len != 5) exit(1);
1283
1284        if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
1285
1286        exit(0);
1287 }
1288 main() { foo("hello"); }
1289 ],
1290 samba_cv_HAVE_C99_VSNPRINTF=yes,samba_cv_HAVE_C99_VSNPRINTF=no,samba_cv_HAVE_C99_VSNPRINTF=cross)])
1291 if test x"$samba_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
1292     AC_DEFINE(HAVE_C99_VSNPRINTF,1,[Whether there is a C99 compliant vsnprintf])
1293 fi
1294
1295 AC_CACHE_CHECK([for broken readdir],samba_cv_HAVE_BROKEN_READDIR,[
1296 AC_TRY_RUN([#include <sys/types.h>
1297 #include <dirent.h>
1298 main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
1299 if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
1300 di->d_name[0] == 0) exit(0); exit(1);} ],
1301 samba_cv_HAVE_BROKEN_READDIR=yes,samba_cv_HAVE_BROKEN_READDIR=no,samba_cv_HAVE_BROKEN_READDIR=cross)])
1302 if test x"$samba_cv_HAVE_BROKEN_READDIR" = x"yes"; then
1303     AC_DEFINE(HAVE_BROKEN_READDIR,1,[Whether readdir() is broken])
1304 fi
1305
1306 AC_CACHE_CHECK([for utimbuf],samba_cv_HAVE_UTIMBUF,[
1307 AC_TRY_COMPILE([#include <sys/types.h>
1308 #include <utime.h>],
1309 [struct utimbuf tbuf;  tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
1310 samba_cv_HAVE_UTIMBUF=yes,samba_cv_HAVE_UTIMBUF=no,samba_cv_HAVE_UTIMBUF=cross)])
1311 if test x"$samba_cv_HAVE_UTIMBUF" = x"yes"; then
1312     AC_DEFINE(HAVE_UTIMBUF,1,[Whether struct utimbuf is available])
1313 fi
1314
1315 dnl  utmp and utmpx come in many flavours
1316 dnl  We need to check for many of them
1317 dnl  But we don't need to do each and every one, because our code uses
1318 dnl  mostly just the utmp (not utmpx) fields.
1319
1320 AC_CHECK_FUNCS(pututline pututxline updwtmp updwtmpx getutmpx)
1321
1322 AC_CACHE_CHECK([for ut_name in utmp],samba_cv_HAVE_UT_UT_NAME,[
1323 AC_TRY_COMPILE([#include <sys/types.h>
1324 #include <utmp.h>],
1325 [struct utmp ut;  ut.ut_name[0] = 'a';],
1326 samba_cv_HAVE_UT_UT_NAME=yes,samba_cv_HAVE_UT_UT_NAME=no,samba_cv_HAVE_UT_UT_NAME=cross)])
1327 if test x"$samba_cv_HAVE_UT_UT_NAME" = x"yes"; then
1328     AC_DEFINE(HAVE_UT_UT_NAME,1,[Whether the utmp struct has a property ut_name])
1329 fi 
1330
1331 AC_CACHE_CHECK([for ut_user in utmp],samba_cv_HAVE_UT_UT_USER,[
1332 AC_TRY_COMPILE([#include <sys/types.h>
1333 #include <utmp.h>],
1334 [struct utmp ut;  ut.ut_user[0] = 'a';],
1335 samba_cv_HAVE_UT_UT_USER=yes,samba_cv_HAVE_UT_UT_USER=no,samba_cv_HAVE_UT_UT_USER=cross)])
1336 if test x"$samba_cv_HAVE_UT_UT_USER" = x"yes"; then
1337     AC_DEFINE(HAVE_UT_UT_USER,1,[Whether the utmp struct has a property ut_user])
1338 fi 
1339
1340 AC_CACHE_CHECK([for ut_id in utmp],samba_cv_HAVE_UT_UT_ID,[
1341 AC_TRY_COMPILE([#include <sys/types.h>
1342 #include <utmp.h>],
1343 [struct utmp ut;  ut.ut_id[0] = 'a';],
1344 samba_cv_HAVE_UT_UT_ID=yes,samba_cv_HAVE_UT_UT_ID=no,samba_cv_HAVE_UT_UT_ID=cross)])
1345 if test x"$samba_cv_HAVE_UT_UT_ID" = x"yes"; then
1346     AC_DEFINE(HAVE_UT_UT_ID,1,[Whether the utmp struct has a property ut_id])
1347 fi 
1348
1349 AC_CACHE_CHECK([for ut_host in utmp],samba_cv_HAVE_UT_UT_HOST,[
1350 AC_TRY_COMPILE([#include <sys/types.h>
1351 #include <utmp.h>],
1352 [struct utmp ut;  ut.ut_host[0] = 'a';],
1353 samba_cv_HAVE_UT_UT_HOST=yes,samba_cv_HAVE_UT_UT_HOST=no,samba_cv_HAVE_UT_UT_HOST=cross)])
1354 if test x"$samba_cv_HAVE_UT_UT_HOST" = x"yes"; then
1355     AC_DEFINE(HAVE_UT_UT_HOST,1,[Whether the utmp struct has a property ut_host])
1356 fi 
1357
1358 AC_CACHE_CHECK([for ut_time in utmp],samba_cv_HAVE_UT_UT_TIME,[
1359 AC_TRY_COMPILE([#include <sys/types.h>
1360 #include <utmp.h>],
1361 [struct utmp ut;  time_t t; ut.ut_time = t;],
1362 samba_cv_HAVE_UT_UT_TIME=yes,samba_cv_HAVE_UT_UT_TIME=no,samba_cv_HAVE_UT_UT_TIME=cross)])
1363 if test x"$samba_cv_HAVE_UT_UT_TIME" = x"yes"; then
1364     AC_DEFINE(HAVE_UT_UT_TIME,1,[Whether the utmp struct has a property ut_time])
1365 fi 
1366
1367 AC_CACHE_CHECK([for ut_tv in utmp],samba_cv_HAVE_UT_UT_TV,[
1368 AC_TRY_COMPILE([#include <sys/types.h>
1369 #include <utmp.h>],
1370 [struct utmp ut;  struct timeval tv; ut.ut_tv = tv;],
1371 samba_cv_HAVE_UT_UT_TV=yes,samba_cv_HAVE_UT_UT_TV=no,samba_cv_HAVE_UT_UT_TV=cross)])
1372 if test x"$samba_cv_HAVE_UT_UT_TV" = x"yes"; then
1373     AC_DEFINE(HAVE_UT_UT_TV,1,[Whether the utmp struct has a property ut_tv])
1374 fi 
1375
1376 AC_CACHE_CHECK([for ut_type in utmp],samba_cv_HAVE_UT_UT_TYPE,[
1377 AC_TRY_COMPILE([#include <sys/types.h>
1378 #include <utmp.h>],
1379 [struct utmp ut;  ut.ut_type = 0;],
1380 samba_cv_HAVE_UT_UT_TYPE=yes,samba_cv_HAVE_UT_UT_TYPE=no,samba_cv_HAVE_UT_UT_TYPE=cross)])
1381 if test x"$samba_cv_HAVE_UT_UT_TYPE" = x"yes"; then
1382     AC_DEFINE(HAVE_UT_UT_TYPE,1,[Whether the utmp struct has a property ut_type])
1383 fi 
1384
1385 AC_CACHE_CHECK([for ut_pid in utmp],samba_cv_HAVE_UT_UT_PID,[
1386 AC_TRY_COMPILE([#include <sys/types.h>
1387 #include <utmp.h>],
1388 [struct utmp ut;  ut.ut_pid = 0;],
1389 samba_cv_HAVE_UT_UT_PID=yes,samba_cv_HAVE_UT_UT_PID=no,samba_cv_HAVE_UT_UT_PID=cross)])
1390 if test x"$samba_cv_HAVE_UT_UT_PID" = x"yes"; then
1391     AC_DEFINE(HAVE_UT_UT_PID,1,[Whether the utmp struct has a property ut_pid])
1392 fi 
1393
1394 AC_CACHE_CHECK([for ut_exit in utmp],samba_cv_HAVE_UT_UT_EXIT,[
1395 AC_TRY_COMPILE([#include <sys/types.h>
1396 #include <utmp.h>],
1397 [struct utmp ut;  ut.ut_exit.e_exit = 0;],
1398 samba_cv_HAVE_UT_UT_EXIT=yes,samba_cv_HAVE_UT_UT_EXIT=no,samba_cv_HAVE_UT_UT_EXIT=cross)])
1399 if test x"$samba_cv_HAVE_UT_UT_EXIT" = x"yes"; then
1400     AC_DEFINE(HAVE_UT_UT_EXIT,1,[Whether the utmp struct has a property ut_exit])
1401 fi 
1402
1403 AC_CACHE_CHECK([for ut_addr in utmp],samba_cv_HAVE_UT_UT_ADDR,[
1404 AC_TRY_COMPILE([#include <sys/types.h>
1405 #include <utmp.h>],
1406 [struct utmp ut;  ut.ut_addr = 0;],
1407 samba_cv_HAVE_UT_UT_ADDR=yes,samba_cv_HAVE_UT_UT_ADDR=no,samba_cv_HAVE_UT_UT_ADDR=cross)])
1408 if test x"$samba_cv_HAVE_UT_UT_ADDR" = x"yes"; then
1409     AC_DEFINE(HAVE_UT_UT_ADDR,1,[Whether the utmp struct has a property ut_addr])
1410 fi 
1411
1412 if test x$ac_cv_func_pututline = xyes ; then
1413   AC_CACHE_CHECK([whether pututline returns pointer],samba_cv_PUTUTLINE_RETURNS_UTMP,[
1414   AC_TRY_COMPILE([#include <sys/types.h>
1415 #include <utmp.h>],
1416   [struct utmp utarg; struct utmp *utreturn; utreturn = pututline(&utarg);],
1417   samba_cv_PUTUTLINE_RETURNS_UTMP=yes,samba_cv_PUTUTLINE_RETURNS_UTMP=no)])
1418   if test x"$samba_cv_PUTUTLINE_RETURNS_UTMP" = x"yes"; then
1419       AC_DEFINE(PUTUTLINE_RETURNS_UTMP,1,[Whether pututline returns pointer])
1420   fi
1421 fi
1422
1423 AC_CACHE_CHECK([for ut_syslen in utmpx],samba_cv_HAVE_UX_UT_SYSLEN,[
1424 AC_TRY_COMPILE([#include <sys/types.h>
1425 #include <utmpx.h>],
1426 [struct utmpx ux;  ux.ut_syslen = 0;],
1427 samba_cv_HAVE_UX_UT_SYSLEN=yes,samba_cv_HAVE_UX_UT_SYSLEN=no,samba_cv_HAVE_UX_UT_SYSLEN=cross)])
1428 if test x"$samba_cv_HAVE_UX_UT_SYSLEN" = x"yes"; then
1429     AC_DEFINE(HAVE_UX_UT_SYSLEN,1,[Whether the utmpx struct has a property ut_syslen])
1430 fi 
1431
1432
1433 ICONV_LOCATION=standard
1434 LOOK_DIRS="/usr /usr/local /sw"
1435 AC_ARG_WITH(libiconv,
1436 [  --with-libiconv=BASEDIR Use libiconv in BASEDIR/lib and BASEDIR/include (default=auto) ],
1437 [
1438   if test "$withval" = "no" ; then
1439     AC_MSG_ERROR(I won't take no for an answer)
1440   else
1441      if test "$withval" != "yes" ; then
1442         LOOK_DIRS="$withval $LOOK_DIRS"
1443      fi
1444   fi
1445 ])
1446
1447 ICONV_FOUND="no"
1448 for i in $LOOK_DIRS ; do
1449     save_LIBS=$LIBS
1450     save_LDFLAGS=$LDFLAGS
1451     save_CPPFLAGS=$CPPFLAGS
1452     CPPFLAGS="-I$i/include"
1453     LDFLAGS="-L$i/lib"
1454     LIBS=
1455     export LDFLAGS LIBS CPPFLAGS
1456 dnl Try to find iconv(3)
1457     jm_ICONV($i)
1458
1459     CPPFLAGS=$save_CPPFLAGS
1460     if test -n "$ICONV_FOUND" ; then
1461         LDFLAGS=$save_LDFLAGS
1462         LIB_ADD_DIR(LDFLAGS, "$i/lib")
1463         CFLAGS_ADD_DIR(CPPFLAGS, "$i/include")
1464         LIBS="$save_LIBS $LIBS"
1465         ICONV_LOCATION=$i
1466         export LDFLAGS LIBS CPPFLAGS
1467         break
1468     else
1469         LDFLAGS=$save_LDFLAGS
1470         LIBS=$save_LIBS
1471         export LDFLAGS LIBS CPPFLAGS
1472     fi
1473 done
1474
1475 ############
1476 # check for iconv in libc
1477 AC_CACHE_CHECK([for working iconv],samba_cv_HAVE_NATIVE_ICONV,[
1478 AC_TRY_RUN([
1479 #include <iconv.h>
1480 main() {
1481        iconv_t cd = iconv_open("ASCII", "UCS-2LE");
1482        if (cd == 0 || cd == (iconv_t)-1) return -1;
1483        return 0;
1484 }
1485 ],
1486 samba_cv_HAVE_NATIVE_ICONV=yes,samba_cv_HAVE_NATIVE_ICONV=no,samba_cv_HAVE_NATIVE_ICONV=cross)])
1487 if test x"$samba_cv_HAVE_NATIVE_ICONV" = x"yes"; then
1488     AC_DEFINE(HAVE_NATIVE_ICONV,1,[Whether to use native iconv])
1489 fi
1490
1491 if test x"$ICONV_FOUND" = x"no" -o x"$samba_cv_HAVE_NATIVE_ICONV" != x"yes" ; then
1492     AC_MSG_WARN([Sufficient support for iconv function was not found. 
1493     Install libiconv from http://freshmeat.net/projects/libiconv/ for better charset compatibility!])
1494 fi
1495
1496
1497 AC_CACHE_CHECK([for Linux kernel oplocks],samba_cv_HAVE_KERNEL_OPLOCKS_LINUX,[
1498 AC_TRY_RUN([
1499 #include <sys/types.h>
1500 #include <fcntl.h>
1501 #ifndef F_GETLEASE
1502 #define F_GETLEASE      1025
1503 #endif
1504 main() {
1505        int fd = open("/dev/null", O_RDONLY);
1506        return fcntl(fd, F_GETLEASE, 0) == -1;
1507 }
1508 ],
1509 samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=yes,samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=no,samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=cross)])
1510 if test x"$samba_cv_HAVE_KERNEL_OPLOCKS_LINUX" = x"yes"; then
1511     AC_DEFINE(HAVE_KERNEL_OPLOCKS_LINUX,1,[Whether to use linux kernel oplocks])
1512 fi
1513
1514 AC_CACHE_CHECK([for kernel change notify support],samba_cv_HAVE_KERNEL_CHANGE_NOTIFY,[
1515 AC_TRY_RUN([
1516 #include <sys/types.h>
1517 #include <fcntl.h>
1518 #include <signal.h>
1519 #ifndef F_NOTIFY
1520 #define F_NOTIFY 1026
1521 #endif
1522 main() {
1523         exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ?  1 : 0);
1524 }
1525 ],
1526 samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=yes,samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=no,samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=cross)])
1527 if test x"$samba_cv_HAVE_KERNEL_CHANGE_NOTIFY" = x"yes"; then
1528     AC_DEFINE(HAVE_KERNEL_CHANGE_NOTIFY,1,[Whether kernel notifies changes])
1529 fi
1530
1531 AC_CACHE_CHECK([for kernel share modes],samba_cv_HAVE_KERNEL_SHARE_MODES,[
1532 AC_TRY_RUN([
1533 #include <sys/types.h>
1534 #include <fcntl.h>
1535 #include <signal.h>
1536 #include <sys/file.h>
1537 #ifndef LOCK_MAND
1538 #define LOCK_MAND       32
1539 #define LOCK_READ       64
1540 #endif
1541 main() {
1542         exit(flock(open("/dev/null", O_RDWR), LOCK_MAND|LOCK_READ) != 0);
1543 }
1544 ],
1545 samba_cv_HAVE_KERNEL_SHARE_MODES=yes,samba_cv_HAVE_KERNEL_SHARE_MODES=no,samba_cv_HAVE_KERNEL_SHARE_MODES=cross)])
1546 if test x"$samba_cv_HAVE_KERNEL_SHARE_MODES" = x"yes"; then
1547     AC_DEFINE(HAVE_KERNEL_SHARE_MODES,1,[Whether the kernel supports share modes])
1548 fi
1549
1550
1551
1552
1553 AC_CACHE_CHECK([for IRIX kernel oplock type definitions],samba_cv_HAVE_KERNEL_OPLOCKS_IRIX,[
1554 AC_TRY_COMPILE([#include <sys/types.h>
1555 #include <fcntl.h>],
1556 [oplock_stat_t t; t.os_state = OP_REVOKE; t.os_dev = 1; t.os_ino = 1;],
1557 samba_cv_HAVE_KERNEL_OPLOCKS_IRIX=yes,samba_cv_HAVE_KERNEL_OPLOCKS_IRIX=no)])
1558 if test x"$samba_cv_HAVE_KERNEL_OPLOCKS_IRIX" = x"yes"; then
1559     AC_DEFINE(HAVE_KERNEL_OPLOCKS_IRIX,1,[Whether IRIX kernel oplock type definitions are available])
1560 fi
1561
1562 AC_CACHE_CHECK([for irix specific capabilities],samba_cv_HAVE_IRIX_SPECIFIC_CAPABILITIES,[
1563 AC_TRY_RUN([#include <sys/types.h>
1564 #include <sys/capability.h>
1565 main() {
1566  cap_t cap;
1567  if ((cap = cap_get_proc()) == NULL)
1568    exit(1);
1569  cap->cap_effective |= CAP_NETWORK_MGT;
1570  cap->cap_inheritable |= CAP_NETWORK_MGT;
1571  cap_set_proc(cap);
1572  exit(0);
1573 }
1574 ],
1575 samba_cv_HAVE_IRIX_SPECIFIC_CAPABILITIES=yes,samba_cv_HAVE_IRIX_SPECIFIC_CAPABILITIES=no,samba_cv_HAVE_IRIX_SPECIFIC_CAPABILITIES=cross)])
1576 if test x"$samba_cv_HAVE_IRIX_SPECIFIC_CAPABILITIES" = x"yes"; then
1577     AC_DEFINE(HAVE_IRIX_SPECIFIC_CAPABILITIES,1,[Whether IRIX specific capabilities are available])
1578 fi
1579
1580 #
1581 # Check for int16, uint16, int32 and uint32 in rpc/types.h included from rpc/rpc.h
1582 # This is *really* broken but some systems (DEC OSF1) do this.... JRA.
1583 #
1584
1585 AC_CACHE_CHECK([for int16 typedef included by rpc/rpc.h],samba_cv_HAVE_INT16_FROM_RPC_RPC_H,[
1586 AC_TRY_COMPILE([#include <sys/types.h>
1587 #if defined(HAVE_RPC_RPC_H)
1588 #include <rpc/rpc.h>
1589 #endif],
1590 [int16 testvar;],
1591 samba_cv_HAVE_INT16_FROM_RPC_RPC_H=yes,samba_cv_HAVE_INT16_FROM_RPC_RPC_H=no)])
1592 if test x"$samba_cv_HAVE_INT16_FROM_RPC_RPC_H" = x"yes"; then
1593     AC_DEFINE(HAVE_INT16_FROM_RPC_RPC_H,1,[Whether int16 typedef is included by rpc/rpc.h])
1594 fi
1595
1596 AC_CACHE_CHECK([for uint16 typedef included by rpc/rpc.h],samba_cv_HAVE_UINT16_FROM_RPC_RPC_H,[
1597 AC_TRY_COMPILE([#include <sys/types.h>
1598 #if defined(HAVE_RPC_RPC_H)
1599 #include <rpc/rpc.h>
1600 #endif],
1601 [uint16 testvar;],
1602 samba_cv_HAVE_UINT16_FROM_RPC_RPC_H=yes,samba_cv_HAVE_UINT16_FROM_RPC_RPC_H=no)])
1603 if test x"$samba_cv_HAVE_UINT16_FROM_RPC_RPC_H" = x"yes"; then
1604     AC_DEFINE(HAVE_UINT16_FROM_RPC_RPC_H,1,[Whether uint16 typedef is included by rpc/rpc.h])
1605 fi
1606
1607 AC_CACHE_CHECK([for int32 typedef included by rpc/rpc.h],samba_cv_HAVE_INT32_FROM_RPC_RPC_H,[
1608 AC_TRY_COMPILE([#include <sys/types.h>
1609 #if defined(HAVE_RPC_RPC_H)
1610 #include <rpc/rpc.h>
1611 #endif],
1612 [int32 testvar;],
1613 samba_cv_HAVE_INT32_FROM_RPC_RPC_H=yes,samba_cv_HAVE_INT32_FROM_RPC_RPC_H=no)])
1614 if test x"$samba_cv_HAVE_INT32_FROM_RPC_RPC_H" = x"yes"; then
1615     AC_DEFINE(HAVE_INT32_FROM_RPC_RPC_H,1,[Whether int32 typedef is included by rpc/rpc.h])
1616 fi
1617
1618 AC_CACHE_CHECK([for uint32 typedef included by rpc/rpc.h],samba_cv_HAVE_UINT32_FROM_RPC_RPC_H,[
1619 AC_TRY_COMPILE([#include <sys/types.h>
1620 #if defined(HAVE_RPC_RPC_H)
1621 #include <rpc/rpc.h>
1622 #endif],
1623 [uint32 testvar;],
1624 samba_cv_HAVE_UINT32_FROM_RPC_RPC_H=yes,samba_cv_HAVE_UINT32_FROM_RPC_RPC_H=no)])
1625 if test x"$samba_cv_HAVE_UINT32_FROM_RPC_RPC_H" = x"yes"; then
1626     AC_DEFINE(HAVE_UINT32_FROM_RPC_RPC_H,1,[Whether uint32 typedef is included by rpc/rpc.h])
1627 fi
1628
1629 dnl
1630 dnl Some systems (SCO) have a problem including
1631 dnl <prot.h> and <rpc/rpc.h> due to AUTH_ERROR being defined
1632 dnl as a #define in <prot.h> and as part of an enum
1633 dnl in <rpc/rpc.h>.
1634 dnl
1635
1636 AC_CACHE_CHECK([for conflicting AUTH_ERROR define in rpc/rpc.h],samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT,[
1637 AC_TRY_COMPILE([#include <sys/types.h>
1638 #ifdef HAVE_SYS_SECURITY_H
1639 #include <sys/security.h>
1640 #include <prot.h>
1641 #endif  /* HAVE_SYS_SECURITY_H */
1642 #if defined(HAVE_RPC_RPC_H)
1643 #include <rpc/rpc.h>
1644 #endif],
1645 [int testvar;],
1646 samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT=no,samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT=yes)])
1647 if test x"$samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT" = x"yes"; then
1648     AC_DEFINE(HAVE_RPC_AUTH_ERROR_CONFLICT,1,[Whether there is a conflicting AUTH_ERROR define in rpc/rpc.h])
1649 fi
1650
1651 AC_MSG_CHECKING([for test routines])
1652 AC_TRY_RUN([#include "${srcdir-.}/tests/trivial.c"],
1653            AC_MSG_RESULT(yes),
1654            AC_MSG_ERROR([cant find test code. Aborting config]),
1655            AC_MSG_WARN([cannot run when cross-compiling]))
1656
1657 AC_CACHE_CHECK([for ftruncate extend],samba_cv_HAVE_FTRUNCATE_EXTEND,[
1658 AC_TRY_RUN([#include "${srcdir-.}/tests/ftruncate.c"],
1659            samba_cv_HAVE_FTRUNCATE_EXTEND=yes,samba_cv_HAVE_FTRUNCATE_EXTEND=no,samba_cv_HAVE_FTRUNCATE_EXTEND=cross)])
1660 if test x"$samba_cv_HAVE_FTRUNCATE_EXTEND" = x"yes"; then
1661     AC_DEFINE(HAVE_FTRUNCATE_EXTEND,1,[Truncate extend])
1662 fi
1663
1664 AC_CACHE_CHECK([for AF_LOCAL socket support], samba_cv_HAVE_WORKING_AF_LOCAL, [
1665 AC_TRY_RUN([#include "${srcdir-.}/tests/unixsock.c"],
1666            samba_cv_HAVE_WORKING_AF_LOCAL=yes,
1667            samba_cv_HAVE_WORKING_AF_LOCAL=no,
1668            samba_cv_HAVE_WORKING_AF_LOCAL=cross)])
1669 if test x"$samba_cv_HAVE_WORKING_AF_LOCAL" != xno
1670 then
1671     AC_DEFINE(HAVE_WORKING_AF_LOCAL, 1, [Define if you have working AF_LOCAL sockets])
1672 fi
1673
1674 AC_CACHE_CHECK([for broken getgroups],samba_cv_HAVE_BROKEN_GETGROUPS,[
1675 AC_TRY_RUN([#include "${srcdir-.}/tests/getgroups.c"],
1676            samba_cv_HAVE_BROKEN_GETGROUPS=yes,samba_cv_HAVE_BROKEN_GETGROUPS=no,samba_cv_HAVE_BROKEN_GETGROUPS=cross)])
1677 if test x"$samba_cv_HAVE_BROKEN_GETGROUPS" = x"yes"; then
1678     AC_DEFINE(HAVE_BROKEN_GETGROUPS,1,[Whether getgroups is broken])
1679 fi
1680
1681 AC_CACHE_CHECK([whether getpass should be replaced],samba_cv_REPLACE_GETPASS,[
1682 SAVE_CPPFLAGS="$CPPFLAGS"
1683 CPPFLAGS="$CPPFLAGS -I${srcdir-.}/ -I${srcdir-.}/include -I${srcdir-.}/ubiqx -I${srcdir-.}/popt  -I${srcdir-.}/smbwrapper"
1684 AC_TRY_COMPILE([
1685 #define REPLACE_GETPASS 1
1686 #define NO_CONFIG_H 1
1687 #define main dont_declare_main
1688 #include "${srcdir-.}/lib/getsmbpass.c"
1689 #undef main
1690 ],[],samba_cv_REPLACE_GETPASS=yes,samba_cv_REPLACE_GETPASS=no)
1691 CPPFLAGS="$SAVE_CPPFLAGS"
1692 ])
1693 if test x"$samba_cv_REPLACE_GETPASS" = x"yes"; then
1694         AC_DEFINE(REPLACE_GETPASS,1,[Whether getpass should be replaced])
1695 fi
1696
1697 AC_CACHE_CHECK([for broken inet_ntoa],samba_cv_REPLACE_INET_NTOA,[
1698 AC_TRY_RUN([
1699 #include <stdio.h>
1700 #include <sys/types.h>
1701 #include <netinet/in.h>
1702 #ifdef HAVE_ARPA_INET_H
1703 #include <arpa/inet.h>
1704 #endif
1705 main() { struct in_addr ip; ip.s_addr = 0x12345678;
1706 if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
1707     strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(0); } 
1708 exit(1);}],
1709            samba_cv_REPLACE_INET_NTOA=yes,samba_cv_REPLACE_INET_NTOA=no,samba_cv_REPLACE_INET_NTOA=cross)])
1710 if test x"$samba_cv_REPLACE_INET_NTOA" = x"yes"; then
1711     AC_DEFINE(REPLACE_INET_NTOA,1,[Whether inet_ntoa should be replaced])
1712 fi
1713
1714 AC_CACHE_CHECK([for secure mkstemp],samba_cv_HAVE_SECURE_MKSTEMP,[
1715 AC_TRY_RUN([#include <stdlib.h>
1716 #include <sys/types.h>
1717 #include <sys/stat.h>
1718 #include <unistd.h>
1719 main() { 
1720   struct stat st;
1721   char tpl[20]="/tmp/test.XXXXXX"; 
1722   int fd = mkstemp(tpl); 
1723   if (fd == -1) exit(1);
1724   unlink(tpl);
1725   if (fstat(fd, &st) != 0) exit(1);
1726   if ((st.st_mode & 0777) != 0600) exit(1);
1727   exit(0);
1728 }],
1729 samba_cv_HAVE_SECURE_MKSTEMP=yes,
1730 samba_cv_HAVE_SECURE_MKSTEMP=no,
1731 samba_cv_HAVE_SECURE_MKSTEMP=cross)])
1732 if test x"$samba_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then
1733     AC_DEFINE(HAVE_SECURE_MKSTEMP,1,[Whether mkstemp is secure])
1734 fi
1735
1736 AC_CACHE_CHECK([for sysconf(_SC_NGROUPS_MAX)],samba_cv_SYSCONF_SC_NGROUPS_MAX,[
1737 AC_TRY_RUN([#include <unistd.h>
1738 main() { exit(sysconf(_SC_NGROUPS_MAX) == -1 ? 1 : 0); }],
1739 samba_cv_SYSCONF_SC_NGROUPS_MAX=yes,samba_cv_SYSCONF_SC_NGROUPS_MAX=no,samba_cv_SYSCONF_SC_NGROUPS_MAX=cross)])
1740 if test x"$samba_cv_SYSCONF_SC_NGROUPS_MAX" = x"yes"; then
1741     AC_DEFINE(SYSCONF_SC_NGROUPS_MAX,1,[Whether sysconf(_SC_NGROUPS_MAX) is available])
1742 fi
1743
1744 AC_CACHE_CHECK([for root],samba_cv_HAVE_ROOT,[
1745 AC_TRY_RUN([main() { exit(getuid() != 0); }],
1746            samba_cv_HAVE_ROOT=yes,samba_cv_HAVE_ROOT=no,samba_cv_HAVE_ROOT=cross)])
1747 if test x"$samba_cv_HAVE_ROOT" = x"yes"; then
1748     AC_DEFINE(HAVE_ROOT,1,[Whether current user is root])
1749 else
1750     AC_MSG_WARN(running as non-root will disable some tests)
1751 fi
1752
1753 ##################
1754 # look for a method of finding the list of network interfaces
1755 iface=no;
1756 AC_CACHE_CHECK([for iface AIX],samba_cv_HAVE_IFACE_AIX,[
1757 AC_TRY_RUN([
1758 #define HAVE_IFACE_AIX 1
1759 #define AUTOCONF_TEST 1
1760 #include "confdefs.h"
1761 #include "${srcdir-.}/lib/interfaces.c"],
1762            samba_cv_HAVE_IFACE_AIX=yes,samba_cv_HAVE_IFACE_AIX=no,samba_cv_HAVE_IFACE_AIX=cross)])
1763 if test x"$samba_cv_HAVE_IFACE_AIX" = x"yes"; then
1764     iface=yes;AC_DEFINE(HAVE_IFACE_AIX,1,[Whether iface AIX is available])
1765 fi
1766
1767 if test $iface = no; then
1768 AC_CACHE_CHECK([for iface ifconf],samba_cv_HAVE_IFACE_IFCONF,[
1769 AC_TRY_RUN([
1770 #define HAVE_IFACE_IFCONF 1
1771 #define AUTOCONF_TEST 1
1772 #include "confdefs.h"
1773 #include "${srcdir-.}/lib/interfaces.c"],
1774            samba_cv_HAVE_IFACE_IFCONF=yes,samba_cv_HAVE_IFACE_IFCONF=no,samba_cv_HAVE_IFACE_IFCONF=cross)])
1775 if test x"$samba_cv_HAVE_IFACE_IFCONF" = x"yes"; then
1776     iface=yes;AC_DEFINE(HAVE_IFACE_IFCONF,1,[Whether iface ifconf is available])
1777 fi
1778 fi
1779
1780 if test $iface = no; then
1781 AC_CACHE_CHECK([for iface ifreq],samba_cv_HAVE_IFACE_IFREQ,[
1782 AC_TRY_RUN([
1783 #define HAVE_IFACE_IFREQ 1
1784 #define AUTOCONF_TEST 1
1785 #include "confdefs.h"
1786 #include "${srcdir-.}/lib/interfaces.c"],
1787            samba_cv_HAVE_IFACE_IFREQ=yes,samba_cv_HAVE_IFACE_IFREQ=no,samba_cv_HAVE_IFACE_IFREQ=cross)])
1788 if test x"$samba_cv_HAVE_IFACE_IFREQ" = x"yes"; then
1789     iface=yes;AC_DEFINE(HAVE_IFACE_IFREQ,1,[Whether iface ifreq is available])
1790 fi
1791 fi
1792
1793
1794 ################################################
1795 # look for a method of setting the effective uid
1796 seteuid=no;
1797 if test $seteuid = no; then
1798 AC_CACHE_CHECK([for setresuid],samba_cv_USE_SETRESUID,[
1799 AC_TRY_RUN([
1800 #define AUTOCONF_TEST 1
1801 #define USE_SETRESUID 1
1802 #include "confdefs.h"
1803 #include "${srcdir-.}/lib/util_sec.c"],
1804            samba_cv_USE_SETRESUID=yes,samba_cv_USE_SETRESUID=no,samba_cv_USE_SETRESUID=cross)])
1805 if test x"$samba_cv_USE_SETRESUID" = x"yes"; then
1806     seteuid=yes;AC_DEFINE(USE_SETRESUID,1,[Whether setresuid() is available])
1807 fi
1808 fi
1809
1810
1811 if test $seteuid = no; then
1812 AC_CACHE_CHECK([for setreuid],samba_cv_USE_SETREUID,[
1813 AC_TRY_RUN([
1814 #define AUTOCONF_TEST 1
1815 #define USE_SETREUID 1
1816 #include "confdefs.h"
1817 #include "${srcdir-.}/lib/util_sec.c"],
1818            samba_cv_USE_SETREUID=yes,samba_cv_USE_SETREUID=no,samba_cv_USE_SETREUID=cross)])
1819 if test x"$samba_cv_USE_SETREUID" = x"yes"; then
1820     seteuid=yes;AC_DEFINE(USE_SETREUID,1,[Whether setreuid() is available])
1821 fi
1822 fi
1823
1824 if test $seteuid = no; then
1825 AC_CACHE_CHECK([for seteuid],samba_cv_USE_SETEUID,[
1826 AC_TRY_RUN([
1827 #define AUTOCONF_TEST 1
1828 #define USE_SETEUID 1
1829 #include "confdefs.h"
1830 #include "${srcdir-.}/lib/util_sec.c"],
1831            samba_cv_USE_SETEUID=yes,samba_cv_USE_SETEUID=no,samba_cv_USE_SETEUID=cross)])
1832 if test x"$samba_cv_USE_SETEUID" = x"yes"; then
1833     seteuid=yes;AC_DEFINE(USE_SETEUID,1,[Whether seteuid() is available])
1834 fi
1835 fi
1836
1837 if test $seteuid = no; then
1838 AC_CACHE_CHECK([for setuidx],samba_cv_USE_SETUIDX,[
1839 AC_TRY_RUN([
1840 #define AUTOCONF_TEST 1
1841 #define USE_SETUIDX 1
1842 #include "confdefs.h"
1843 #include "${srcdir-.}/lib/util_sec.c"],
1844            samba_cv_USE_SETUIDX=yes,samba_cv_USE_SETUIDX=no,samba_cv_USE_SETUIDX=cross)])
1845 if test x"$samba_cv_USE_SETUIDX" = x"yes"; then
1846     seteuid=yes;AC_DEFINE(USE_SETUIDX,1,[Whether setuidx() is available])
1847 fi
1848 fi
1849
1850
1851 AC_CACHE_CHECK([for working mmap],samba_cv_HAVE_MMAP,[
1852 AC_TRY_RUN([#include "${srcdir-.}/tests/shared_mmap.c"],
1853            samba_cv_HAVE_MMAP=yes,samba_cv_HAVE_MMAP=no,samba_cv_HAVE_MMAP=cross)])
1854 if test x"$samba_cv_HAVE_MMAP" = x"yes"; then
1855     AC_DEFINE(HAVE_MMAP,1,[Whether mmap works])
1856 fi
1857
1858 AC_CACHE_CHECK([for ftruncate needs root],samba_cv_FTRUNCATE_NEEDS_ROOT,[
1859 AC_TRY_RUN([#include "${srcdir-.}/tests/ftruncroot.c"],
1860            samba_cv_FTRUNCATE_NEEDS_ROOT=yes,samba_cv_FTRUNCATE_NEEDS_ROOT=no,samba_cv_FTRUNCATE_NEEDS_ROOT=cross)])
1861 if test x"$samba_cv_FTRUNCATE_NEEDS_ROOT" = x"yes"; then
1862     AC_DEFINE(FTRUNCATE_NEEDS_ROOT,1,[Whether ftruncate() needs root])
1863 fi
1864
1865 AC_CACHE_CHECK([for fcntl locking],samba_cv_HAVE_FCNTL_LOCK,[
1866 AC_TRY_RUN([#include "${srcdir-.}/tests/fcntl_lock.c"],
1867            samba_cv_HAVE_FCNTL_LOCK=yes,samba_cv_HAVE_FCNTL_LOCK=no,samba_cv_HAVE_FCNTL_LOCK=cross)])
1868 if test x"$samba_cv_HAVE_FCNTL_LOCK" = x"yes"; then
1869     AC_DEFINE(HAVE_FCNTL_LOCK,1,[Whether fcntl locking is available])
1870 fi
1871
1872 AC_CACHE_CHECK([for broken (glibc2.1/x86) 64 bit fcntl locking],samba_cv_HAVE_BROKEN_FCNTL64_LOCKS,[
1873 AC_TRY_RUN([#include "${srcdir-.}/tests/fcntl_lock64.c"],
1874            samba_cv_HAVE_BROKEN_FCNTL64_LOCKS=yes,samba_cv_HAVE_BROKEN_FCNTL64_LOCKS=no,samba_cv_HAVE_BROKEN_FCNTL64_LOCKS=cross)])
1875 if test x"$samba_cv_HAVE_BROKEN_FCNTL64_LOCKS" = x"yes"; then
1876     AC_DEFINE(HAVE_BROKEN_FCNTL64_LOCKS,1,[Whether fcntl64 locks are broken])
1877
1878 else
1879
1880 dnl
1881 dnl Don't check for 64 bit fcntl locking if we know that the
1882 dnl glibc2.1 broken check has succeeded.
1883 dnl 
1884
1885   AC_CACHE_CHECK([for 64 bit fcntl locking],samba_cv_HAVE_STRUCT_FLOCK64,[
1886   AC_TRY_RUN([
1887 #if defined(HAVE_UNISTD_H)
1888 #include <unistd.h>
1889 #endif
1890 #include <stdio.h>
1891 #include <stdlib.h>
1892
1893 #ifdef HAVE_FCNTL_H
1894 #include <fcntl.h>
1895 #endif
1896
1897 #ifdef HAVE_SYS_FCNTL_H
1898 #include <sys/fcntl.h>
1899 #endif
1900 main() { struct flock64 fl64;
1901 #if defined(F_SETLKW64) && defined(F_SETLK64) && defined(F_GETLK64)
1902 exit(0);
1903 #else
1904 exit(1);
1905 #endif
1906 }],
1907        samba_cv_HAVE_STRUCT_FLOCK64=yes,samba_cv_HAVE_STRUCT_FLOCK64=no,samba_cv_HAVE_STRUCT_FLOCK64=cross)])
1908
1909   if test x"$samba_cv_HAVE_STRUCT_FLOCK64" = x"yes"; then
1910       AC_DEFINE(HAVE_STRUCT_FLOCK64,1,[Whether the flock64 struct is available])
1911   fi
1912 fi
1913
1914 AC_CACHE_CHECK([for st_blocks in struct stat],samba_cv_HAVE_STAT_ST_BLOCKS,[
1915 AC_TRY_COMPILE([#include <sys/types.h>
1916 #include <sys/stat.h>
1917 #include <unistd.h>],
1918 [struct stat st;  st.st_blocks = 0;],
1919 samba_cv_HAVE_STAT_ST_BLOCKS=yes,samba_cv_HAVE_STAT_ST_BLOCKS=no,samba_cv_HAVE_STAT_ST_BLOCKS=cross)])
1920 if test x"$samba_cv_HAVE_STAT_ST_BLOCKS" = x"yes"; then
1921     AC_DEFINE(HAVE_STAT_ST_BLOCKS,1,[Whether the stat struct has a st_block property])
1922 fi 
1923
1924 AC_CACHE_CHECK([for st_blksize in struct stat],samba_cv_HAVE_STAT_ST_BLKSIZE,[
1925 AC_TRY_COMPILE([#include <sys/types.h>
1926 #include <sys/stat.h>
1927 #include <unistd.h>],
1928 [struct stat st;  st.st_blksize = 0;],
1929 samba_cv_HAVE_STAT_ST_BLKSIZE=yes,samba_cv_HAVE_STAT_ST_BLKSIZE=no,samba_cv_HAVE_STAT_ST_BLKSIZE=cross)])
1930 if test x"$samba_cv_HAVE_STAT_ST_BLKSIZE" = x"yes"; then
1931     AC_DEFINE(HAVE_STAT_ST_BLKSIZE,1,[Whether the stat struct has a st_blksize property])
1932 fi
1933
1934 case "$host_os" in
1935 *linux*)
1936 AC_CACHE_CHECK([for broken RedHat 7.2 system header files],samba_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS,[
1937 AC_TRY_COMPILE([
1938 #ifdef HAVE_SYS_VFS_H
1939 #include <sys/vfs.h>
1940 #endif
1941 #ifdef HAVE_SYS_CAPABILITY_H
1942 #include <sys/capability.h>
1943 #endif
1944 ],[int i;],
1945    samba_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS=no,samba_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS=yes)])
1946 if test x"$samba_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS" = x"yes"; then
1947    AC_DEFINE(BROKEN_REDHAT_7_SYSTEM_HEADERS,1,[Broken RedHat 7.2 system header files])
1948 fi
1949 ;;
1950 esac
1951
1952 AC_CACHE_CHECK([for broken nisplus include files],samba_cv_BROKEN_NISPLUS_INCLUDE_FILES,[
1953 AC_TRY_COMPILE([#include <sys/acl.h>
1954 #if defined(HAVE_RPCSVC_NIS_H)
1955 #include <rpcsvc/nis.h>
1956 #endif],
1957 [int i;],
1958 samba_cv_BROKEN_NISPLUS_INCLUDE_FILES=no,samba_cv_BROKEN_NISPLUS_INCLUDE_FILES=yes)])
1959 if test x"$samba_cv_BROKEN_NISPLUS_INCLUDE_FILES" = x"yes"; then
1960         AC_DEFINE(BROKEN_NISPLUS_INCLUDE_FILES,1,[Whether the nisplus include files are broken])
1961 fi
1962
1963
1964 #################################################
1965 # check for smbwrapper support
1966 AC_MSG_CHECKING(whether to use smbwrapper)
1967 AC_ARG_WITH(smbwrapper,
1968 [  --with-smbwrapper       Include SMB wrapper support (default=no) ],
1969 [ case "$withval" in
1970   yes)
1971     AC_MSG_RESULT(yes)
1972     AC_DEFINE(WITH_SMBWRAPPER,1,[Whether to include smbwrapper support])
1973         WRAPPROG="bin/smbsh\$(EXEEXT)"
1974         WRAP="bin/smbwrapper.$SHLIBEXT"
1975
1976         if test x$ATTEMPT_WRAP32_BUILD = x; then
1977                 WRAP32=""
1978         else
1979                         WRAP32=bin/smbwrapper.32.$SHLIBEXT
1980         fi
1981
1982 # Conditions under which smbwrapper should not be built.
1983
1984         if test x$PICFLAG = x; then
1985            echo No support for PIC code - disabling smbwrapper and smbsh
1986            WRAPPROG=""
1987            WRAP=""
1988            WRAP32=""
1989         elif test x$ac_cv_func_syscall = xno; then
1990            AC_MSG_RESULT([No syscall() -- disabling smbwrapper and smbsh])
1991            WRAPPROG=""
1992            WRAP=""
1993            WRAP32=""
1994         fi
1995         EXTRA_ALL_TARGETS="$EXTRA_ALL_TARGETS $WRAPPROG $WRAP $WRAP32"
1996         SMBWRAPPER="$WRAPPROG $WRAP $WRAP32"
1997     ;;
1998   *)
1999     AC_MSG_RESULT(no)
2000     ;;
2001   esac ],
2002   AC_MSG_RESULT(no)
2003 )
2004
2005 #################################################
2006 # check for AFS clear-text auth support
2007 AC_MSG_CHECKING(whether to use AFS clear-text auth)
2008 AC_ARG_WITH(afs,
2009 [  --with-afs              Include AFS clear-text auth support (default=no) ],
2010 [ case "$withval" in
2011   yes)
2012     AC_MSG_RESULT(yes)
2013     AC_DEFINE(WITH_AFS,1,[Whether to include AFS clear-text auth support])
2014     ;;
2015   *)
2016     AC_MSG_RESULT(no)
2017     ;;
2018   esac ],
2019   AC_MSG_RESULT(no)
2020 )
2021
2022
2023 #################################################
2024 # check for the DFS clear-text auth system
2025 AC_MSG_CHECKING(whether to use DFS clear-text auth)
2026 AC_ARG_WITH(dfs,
2027 [  --with-dce-dfs          Include DCE/DFS clear-text auth support (default=no)],
2028 [ case "$withval" in
2029   yes)
2030     AC_MSG_RESULT(yes)
2031     AC_DEFINE(WITH_DFS,1,[Whether to include DFS support])
2032     ;;
2033   *)
2034     AC_MSG_RESULT(no)
2035     ;;
2036   esac ],
2037   AC_MSG_RESULT(no)
2038 )
2039
2040 #################################################
2041 # active directory support
2042
2043 with_ads_support=yes
2044 AC_MSG_CHECKING([whether to use Active Directory])
2045
2046 AC_ARG_WITH(ads,
2047 [   --with-ads  Active Directory support (default yes)],
2048 [ case "$withval" in
2049     no)
2050         with_ads_support=no
2051         ;;
2052   esac ])
2053
2054 if test x"$with_ads_support" = x"yes"; then
2055    AC_DEFINE(WITH_ADS,1,[Whether to include Active Directory support])
2056 fi
2057
2058 AC_MSG_RESULT($with_ads_support)
2059
2060 FOUND_KRB5=no
2061 if test x"$with_ads_support" = x"yes"; then
2062
2063   #################################################
2064   # check for krb5-config from recent MIT and Heimdal kerberos 5
2065   AC_PATH_PROG(KRB5_CONFIG, krb5-config)
2066   AC_MSG_CHECKING(for working krb5-config)
2067   if test -x "$KRB5_CONFIG"; then
2068     LIBS="$LIBS `$KRB5_CONFIG --libs`"
2069     CFLAGS="$CFLAGS `$KRB5_CONFIG --cflags`" 
2070     CPPFLAGS="$CPPFLAGS `$KRB5_CONFIG --cflags`"
2071     FOUND_KRB5=yes
2072     AC_MSG_RESULT(yes)
2073   else
2074     AC_MSG_RESULT(no. Fallback to previous krb5 detection strategy)
2075   fi
2076   
2077   if test x$FOUND_KRB5 = x"no"; then
2078   #################################################
2079   # check for location of Kerberos 5 install
2080   AC_MSG_CHECKING(for kerberos 5 install path)
2081   AC_ARG_WITH(krb5,
2082   [  --with-krb5=base-dir    Locate Kerberos 5 support (default=/usr)],
2083   [ case "$withval" in
2084     no)
2085       AC_MSG_RESULT(no)
2086       ;;
2087     *)
2088       AC_MSG_RESULT(yes)
2089       LIBS="$LIBS -lkrb5"
2090       CFLAGS="$CFLAGS -I$withval/include"
2091       CPPFLAGS="$CPPFLAGS -I$withval/include"
2092       LDFLAGS="$LDFLAGS -L$withval/lib"
2093       FOUND_KRB5=yes
2094       ;;
2095     esac ],
2096     AC_MSG_RESULT(no)
2097   )
2098   fi
2099
2100 if test x$FOUND_KRB5 = x"no"; then
2101 #################################################
2102 # see if this box has the SuSE location for the heimdal kerberos implementation
2103 AC_MSG_CHECKING(for /usr/include/heimdal)
2104 if test -d /usr/include/heimdal; then
2105     if test -f /usr/lib/heimdal/lib/libkrb5.a; then
2106         LIBS="$LIBS -lkrb5"
2107         CFLAGS="$CFLAGS -I/usr/include/heimdal"
2108         CPPFLAGS="$CPPFLAGS -I/usr/include/heimdal"
2109         LDFLAGS="$LDFLAGS -L/usr/lib/heimdal/lib"
2110         AC_MSG_RESULT(yes)
2111     else
2112         LIBS="$LIBS -lkrb5"
2113         CFLAGS="$CFLAGS -I/usr/include/heimdal"
2114         CPPFLAGS="$CPPFLAGS -I/usr/include/heimdal"
2115         AC_MSG_RESULT(yes)
2116  
2117     fi
2118 else
2119     AC_MSG_RESULT(no)
2120 fi
2121 fi
2122
2123
2124 if test x$FOUND_KRB5 = x"no"; then
2125 #################################################
2126 # see if this box has the RedHat location for kerberos
2127 AC_MSG_CHECKING(for /usr/kerberos)
2128 if test -d /usr/kerberos -a -f /usr/kerberos/lib/libkrb5.a; then
2129     LIBS="$LIBS -lkrb5"
2130     LDFLAGS="$LDFLAGS -L/usr/kerberos/lib"
2131     CFLAGS="$CFLAGS -I/usr/kerberos/include"
2132     CPPFLAGS="$CPPFLAGS -I/usr/kerberos/include"
2133     AC_MSG_RESULT(yes)
2134 else
2135     AC_MSG_RESULT(no)
2136 fi
2137 fi
2138
2139   # now check for krb5.h. Some systems have the libraries without the headers!
2140   # note that this check is done here to allow for different kerberos
2141   # include paths
2142   AC_CHECK_HEADERS(krb5.h)
2143
2144   # now check for gssapi headers.  This is also done here to allow for
2145   # different kerberos include paths
2146   AC_CHECK_HEADERS(gssapi.h gssapi/gssapi_generic.h gssapi/gssapi.h com_err.h)
2147
2148   ##################################################################
2149   # we might need the k5crypto and com_err libraries on some systems
2150   AC_CHECK_LIB(com_err, _et_list, [LIBS="$LIBS -lcom_err"])
2151   AC_CHECK_LIB(k5crypto, krb5_encrypt_data, [LIBS="$LIBS -lk5crypto"])
2152   # Heimdal checks.
2153   AC_CHECK_LIB(crypto, des_set_key, [LIBS="$LIBS -lcrypto"])
2154   AC_CHECK_LIB(asn1, copy_Authenticator, [LIBS="$LIBS -lasn1"])
2155   AC_CHECK_LIB(roken, roken_getaddrinfo_hostspec, [LIBS="$LIBS -lroken"])
2156   # Heimdal checks. On static Heimdal gssapi must be linked before krb5.
2157   AC_CHECK_LIB(gssapi, gss_display_status, [LIBS="$LIBS -lgssapi -lkrb5";
2158         AC_DEFINE(HAVE_GSSAPI,1,[Whether GSSAPI is available])])
2159
2160   AC_CHECK_LIB(krb5, krb5_set_real_time, [AC_DEFINE(HAVE_KRB5_SET_REAL_TIME,1,[Whether krb5_set_real_time is available])])
2161   AC_CHECK_LIB(krb5, krb5_set_default_in_tkt_etypes, [AC_DEFINE(HAVE_KRB5_SET_DEFAULT_IN_TKT_ETYPES,1,[Whether krb5_set_default_in_tkt_etypes, is available])])
2162   AC_CHECK_LIB(krb5, krb5_set_default_tgs_ktypes, [AC_DEFINE(HAVE_KRB5_SET_DEFAULT_TGS_KTYPES,1,[Whether krb5_set_default_tgs_ktypes is available])])
2163
2164   AC_CHECK_LIB(krb5, krb5_principal2salt, [AC_DEFINE(HAVE_KRB5_PRINCIPAL2SALT,1,[Whether krb5_principal2salt is available])])
2165   AC_CHECK_LIB(krb5, krb5_use_enctype, [AC_DEFINE(HAVE_KRB5_USE_ENCTYPE,1,[Whether krb5_use_enctype is available])])
2166   AC_CHECK_LIB(krb5, krb5_string_to_key, [AC_DEFINE(HAVE_KRB5_STRING_TO_KEY,1,[Whether krb5_string_to_key is available])])
2167   AC_CHECK_LIB(krb5, krb5_get_pw_salt, [AC_DEFINE(HAVE_KRB5_GET_PW_SALT,1,[Whether krb5_get_pw_salt is available])])
2168   AC_CHECK_LIB(krb5, krb5_string_to_key_salt, [AC_DEFINE(HAVE_KRB5_STRING_TO_KEY_SALT,1,[Whether krb5_string_to_key_salt is available])])
2169   AC_CHECK_LIB(krb5, krb5_auth_con_setkey, [AC_DEFINE(HAVE_KRB5_AUTH_CON_SETKEY,1,[Whether krb5_auth_con_setkey is available])])
2170   AC_CHECK_LIB(krb5, krb5_auth_con_setuseruserkey, [AC_DEFINE(HAVE_KRB5_AUTH_CON_SETUSERUSERKEY,1,[Whether krb5_auth_con_setuseruserkey is available])])
2171   AC_CHECK_LIB(krb5, krb5_locate_kdc, [AC_DEFINE(HAVE_KRB5_LOCATE_KDC,1,[Whether krb5_locate_kdc is available])])
2172   AC_CHECK_LIB(krb5, krb5_get_permitted_enctypes, [AC_DEFINE(HAVE_KRB5_GET_PERMITTED_ENCTYPES,1,[Whether krb5_get_permitted_enctypes is available])])
2173   AC_CHECK_LIB(krb5, krb5_get_default_in_tkt_etypes, [AC_DEFINE(HAVE_KRB5_GET_DEFAULT_IN_TKT_ETYPES,1,[Whether krb5_get_default_in_tkt_etypes is available])])
2174   AC_CHECK_LIB(krb5, krb5_free_ktypes, [AC_DEFINE(HAVE_KRB5_FREE_KTYPES,1,[Whether krb5_free_ktypes is available])])
2175
2176 AC_CACHE_CHECK([for addrtype in krb5_address],samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS,[
2177 AC_TRY_COMPILE([#include <krb5.h>],
2178 [krb5_address kaddr; kaddr.addrtype = ADDRTYPE_INET;],
2179 samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS=yes,samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS=no)])
2180 if test x"$samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS" = x"yes"; then
2181     AC_DEFINE(HAVE_ADDRTYPE_IN_KRB5_ADDRESS,1,[Whether the krb5_address struct has a addrtype property])
2182 fi
2183
2184 AC_CACHE_CHECK([for addr_type in krb5_address],samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS,[
2185 AC_TRY_COMPILE([#include <krb5.h>],
2186 [krb5_address kaddr; kaddr.addr_type = KRB5_ADDRESS_INET;],
2187 samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS=yes,samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS=no)])
2188 if test x"$samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS" = x"yes"; then
2189     AC_DEFINE(HAVE_ADDR_TYPE_IN_KRB5_ADDRESS,1,[Whether the krb5_address struct has a addr_type property])
2190 fi
2191
2192 AC_CACHE_CHECK([for enc_part2 in krb5_ticket],samba_cv_HAVE_KRB5_TKT_ENC_PART2,[
2193 AC_TRY_COMPILE([#include <krb5.h>],
2194 [krb5_ticket tkt; tkt.enc_part2->authorization_data[0]->contents = NULL;],
2195 samba_cv_HAVE_KRB5_TKT_ENC_PART2=yes,samba_cv_HAVE_KRB5_TKT_ENC_PART2=no)])
2196 if test x"$samba_cv_HAVE_KRB5_TKT_ENC_PART2" = x"yes"; then
2197     AC_DEFINE(HAVE_KRB5_TKT_ENC_PART2,1,[Whether the krb5_ticket struct has a enc_part2 property])
2198 fi
2199
2200 AC_CACHE_CHECK([for keyvalue in krb5_keyblock],samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE,[
2201 AC_TRY_COMPILE([#include <krb5.h>],
2202 [krb5_keyblock key; key.keyvalue.data = NULL;],
2203 samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE=yes,samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE=no)])
2204 if test x"$samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE" = x"yes"; then
2205     AC_DEFINE(HAVE_KRB5_KEYBLOCK_KEYVALUE,1,[Whether the krb5_keyblock struct has a keyvalue property])
2206 fi
2207
2208 AC_CACHE_CHECK([for ENCTYPE_ARCFOUR_HMAC_MD5],samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5,[
2209 AC_TRY_COMPILE([#include <krb5.h>],
2210 [krb5_enctype enctype; enctype = ENCTYPE_ARCFOUR_HMAC_MD5;],
2211 samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5=yes,samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5=no)])
2212 if test x"$samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5" = x"yes"; then
2213     AC_DEFINE(HAVE_ENCTYPE_ARCFOUR_HMAC_MD5,1,[Whether the ENCTYPE_ARCFOUR_HMAC_MD5 key type is available])
2214 fi
2215
2216   ########################################################
2217   # now see if we can find the krb5 libs in standard paths
2218   # or as specified above
2219   AC_CHECK_LIB(krb5, krb5_mk_req_extended, [LIBS="$LIBS -lkrb5";
2220         AC_DEFINE(HAVE_KRB5,1,[Whether KRB5 is available])])
2221
2222   ########################################################
2223   # now see if we can find the gssapi libs in standard paths
2224   AC_CHECK_LIB(gssapi_krb5, gss_display_status, [LIBS="$LIBS -lgssapi_krb5";
2225         AC_DEFINE(HAVE_GSSAPI,1,[Whether GSSAPI is available])])
2226
2227 fi
2228
2229 ########################################################
2230 # Compile with LDAP support?
2231
2232 with_ldap_support=yes
2233 AC_MSG_CHECKING([whether to use LDAP])
2234
2235 AC_ARG_WITH(ldap,
2236 [   --with-ldap  LDAP support (default yes)],
2237 [ case "$withval" in
2238     no)
2239         with_ldap_support=no
2240         ;;
2241   esac ])
2242
2243 AC_MSG_RESULT($with_ldap_support)
2244
2245 if test x"$with_ldap_support" = x"yes"; then
2246
2247   ##################################################################
2248   # we might need the lber lib on some systems. To avoid link errors
2249   # this test must be before the libldap test
2250   AC_CHECK_LIB(lber, ber_scanf, [LDAP_LIBS="$LDAP_LIBS -llber"])
2251
2252   ########################################################
2253   # now see if we can find the ldap libs in standard paths
2254   if test x$have_ldap != xyes; then
2255   AC_CHECK_LIB(ldap, ldap_domain2hostlist, [LDAP_LIBS="$LDAP_LIBS -lldap";
2256         AC_DEFINE(HAVE_LDAP,1,[Whether ldap is available])])
2257         AC_CHECK_HEADERS([ldap.h lber.h], [default_modules="$default_modules pdb_ldap"])
2258
2259         ########################################################
2260         # If we have LDAP, does it's rebind procedure take 2 or 3 arguments?
2261         # Check found in pam_ldap 145.
2262         AC_CHECK_FUNCS(ldap_set_rebind_proc)
2263         AC_CACHE_CHECK(whether ldap_set_rebind_proc takes 3 arguments, pam_ldap_cv_ldap_set_rebind_proc, [
2264         AC_TRY_COMPILE([
2265         #include <lber.h>
2266         #include <ldap.h>], [ldap_set_rebind_proc(0, 0, 0);], [pam_ldap_cv_ldap_set_rebind_proc=3], [pam_ldap_cv_ldap_set_rebind_proc=2]) ])
2267         AC_DEFINE_UNQUOTED(LDAP_SET_REBIND_PROC_ARGS, $pam_ldap_cv_ldap_set_rebind_proc, [Number of arguments to ldap_set_rebind_proc])
2268   fi
2269   
2270         if test x"$with_ads_support" = x"yes"; then
2271                 LIBS="$LIBS $LDAP_LIBS"
2272         fi
2273 fi
2274
2275 AC_SUBST(LDAP_LIBS)
2276
2277 ########################################################
2278 # Compile with MySQL support?
2279 AM_PATH_MYSQL([0.11.0],[default_modules="$default_modules pdb_mysql"],[])
2280
2281 ########################################################
2282 # Compile with XML support?
2283 AM_PATH_XML2([2.0.0],[default_modules="$default_modules pdb_xml"],[])
2284
2285 #################################################
2286 # check for automount support
2287 AC_MSG_CHECKING(whether to use automount)
2288 AC_ARG_WITH(automount,
2289 [  --with-automount        Include automount support (default=no)],
2290 [ case "$withval" in
2291   yes)
2292     AC_MSG_RESULT(yes)
2293     AC_DEFINE(WITH_AUTOMOUNT,1,[Whether to include automount support])
2294     ;;
2295   *)
2296     AC_MSG_RESULT(no)
2297     ;;
2298   esac ],
2299   AC_MSG_RESULT(no)
2300 )
2301
2302 #################################################
2303 # check for smbmount support
2304 AC_MSG_CHECKING(whether to use smbmount)
2305 AC_ARG_WITH(smbmount,
2306 [  --with-smbmount         Include smbmount (Linux only) support (default=no)],
2307 [ case "$withval" in
2308   yes)
2309         case "$host_os" in
2310         *linux*)
2311                 AC_MSG_RESULT(yes)
2312                 AC_DEFINE(WITH_SMBMOUNT,1,[Whether to build smbmount])
2313                 EXTRA_BIN_PROGS="$EXTRA_BIN_PROGS bin/smbmount bin/smbmnt bin/smbumount"
2314                 ;;
2315         *)
2316                 AC_MSG_ERROR(not on a linux system!)
2317                 ;;
2318         esac
2319     ;;
2320   *)
2321     AC_MSG_RESULT(no)
2322     ;;
2323   esac ],
2324   AC_MSG_RESULT(no)
2325 )
2326
2327
2328 #################################################
2329 # check for a PAM clear-text auth, accounts, password and session support
2330 with_pam_for_crypt=no
2331 AC_MSG_CHECKING(whether to use PAM)
2332 AC_ARG_WITH(pam,
2333 [  --with-pam              Include PAM support (default=no)],
2334 [ case "$withval" in
2335   yes)
2336     AC_MSG_RESULT(yes)
2337     AC_DEFINE(WITH_PAM,1,[Whether to include PAM support])
2338     AUTHLIBS="$AUTHLIBS -lpam"
2339     with_pam_for_crypt=yes
2340     ;;
2341   *)
2342     AC_MSG_RESULT(no)
2343     ;;
2344   esac ],
2345   AC_MSG_RESULT(no)
2346 )
2347
2348 # we can't build a pam module if we don't have pam.
2349 AC_CHECK_LIB(pam, pam_get_data, [AC_DEFINE(HAVE_LIBPAM,1,[Whether libpam is available])])
2350
2351 #################################################
2352 # check for pam_smbpass support
2353 AC_MSG_CHECKING(whether to use pam_smbpass)
2354 AC_ARG_WITH(pam_smbpass,
2355 [  --with-pam_smbpass      Build a PAM module to allow other applications to use our smbpasswd file (default=no)],
2356 [ case "$withval" in
2357   yes)
2358     AC_MSG_RESULT(yes)
2359
2360 # Conditions under which pam_smbpass should not be built.
2361
2362        if test x$PICFLAG = x; then
2363           AC_MSG_RESULT([No support for PIC code - disabling pam_smbpass])
2364        elif test x$ac_cv_lib_pam_pam_get_data = xno; then
2365           AC_MSG_RESULT([No libpam found -- disabling pam_smbpass])
2366        else
2367           SHLIB_PROGS="$SHLIB_PROGS bin/pam_smbpass.so"
2368        fi
2369     ;;
2370   *)
2371     AC_MSG_RESULT(no)
2372     ;;
2373   esac ],
2374   AC_MSG_RESULT(no)
2375 )
2376
2377
2378 ###############################################
2379 # test for where we get crypt() from
2380 AC_SEARCH_LIBS(crypt, [crypt],
2381   [test "$ac_cv_search_crypt" = "none required" || AUTHLIBS="-lcrypt $AUTHLIBS"
2382   AC_DEFINE(HAVE_CRYPT,1,[Whether the system has the crypt() function])])
2383
2384 ##
2385 ## moved after the check for -lcrypt in order to
2386 ## ensure that the necessary libraries are included
2387 ## check checking for truncated salt.  Wrapped by the
2388 ## $with_pam_for_crypt variable as above   --jerry
2389 ##
2390 if test $with_pam_for_crypt = no; then
2391 AC_CACHE_CHECK([for a crypt that needs truncated salt],samba_cv_HAVE_TRUNCATED_SALT,[
2392 crypt_LIBS="$LIBS"
2393 LIBS="$AUTHLIBS $LIBS"
2394 AC_TRY_RUN([#include "${srcdir-.}/tests/crypttest.c"],
2395         samba_cv_HAVE_TRUNCATED_SALT=no,samba_cv_HAVE_TRUNCATED_SALT=yes,samba_cv_HAVE_TRUNCATED_SALT=cross)
2396 LIBS="$crypt_LIBS"])
2397 if test x"$samba_cv_HAVE_TRUNCATED_SALT" = x"yes"; then
2398         AC_DEFINE(HAVE_TRUNCATED_SALT,1,[Whether crypt needs truncated salt])
2399 fi
2400 fi
2401
2402 # New experimental SAM system
2403
2404 AC_MSG_CHECKING([whether to build the new (experimental) SAM database])
2405 AC_ARG_WITH(sam,
2406 [  --with-sam              Build new (experimental) SAM database (default=no)],
2407 [ case "$withval" in
2408   yes)
2409     AC_MSG_RESULT(yes)
2410     AC_DEFINE(WITH_SAM,1,[Whether to build the new (experimental) SAM database])
2411     ;;
2412   *)
2413     AC_MSG_RESULT(no)
2414     ;;
2415   esac ],
2416   AC_MSG_RESULT(no)
2417 )
2418
2419
2420 ########################################################################################
2421 ##
2422 ## TESTS FOR SAM BACKENDS.  KEEP THESE GROUPED TOGETHER
2423 ##
2424 ########################################################################################
2425
2426 #################################################
2427 # check for a LDAP password database configuration backwards compatibility
2428 AC_MSG_CHECKING(whether to use LDAP SAM 2.2 compatible configuration)
2429 AC_ARG_WITH(ldapsam,
2430 [  --with-ldapsam           Include LDAP SAM 2.2 compatible configuration (default=no)],
2431 [ case "$withval" in
2432   yes)
2433     AC_MSG_RESULT(yes)
2434     AC_DEFINE(WITH_LDAP_SAMCONFIG,1,[Whether to include 2.2 compatibel LDAP SAM configuration])
2435     ;;
2436   *)
2437     AC_MSG_RESULT(no)
2438     ;;
2439   esac ],
2440   AC_MSG_RESULT(no)
2441 )
2442
2443 ########################################################################################
2444 ##
2445 ## END OF TESTS FOR SAM BACKENDS.  
2446 ##
2447 ########################################################################################
2448
2449 #################################################
2450 # check for a NISPLUS_HOME support 
2451 AC_MSG_CHECKING(whether to use NISPLUS_HOME)
2452 AC_ARG_WITH(nisplus-home,
2453 [  --with-nisplus-home     Include NISPLUS_HOME support (default=no)],
2454 [ case "$withval" in
2455   yes)
2456     AC_MSG_RESULT(yes)
2457     AC_DEFINE(WITH_NISPLUS_HOME,1,[Whether to include nisplus_home support])
2458     ;;
2459   *)
2460     AC_MSG_RESULT(no)
2461     ;;
2462   esac ],
2463   AC_MSG_RESULT(no)
2464 )
2465
2466 #################################################
2467 # check for syslog logging
2468 AC_MSG_CHECKING(whether to use syslog logging)
2469 AC_ARG_WITH(syslog,
2470 [  --with-syslog           Include experimental SYSLOG support (default=no)],
2471 [ case "$withval" in
2472   yes)
2473     AC_MSG_RESULT(yes)
2474     AC_DEFINE(WITH_SYSLOG,1,[Whether to include experimental syslog support])
2475     ;;
2476   *)
2477     AC_MSG_RESULT(no)
2478     ;;
2479   esac ],
2480   AC_MSG_RESULT(no)
2481 )
2482
2483 #################################################
2484 # check for a shared memory profiling support
2485 AC_MSG_CHECKING(whether to use profiling)
2486 AC_ARG_WITH(profiling-data,
2487 [  --with-profiling-data   Include gathering source code profile information (default=no)],
2488 [ case "$withval" in
2489   yes)
2490     AC_MSG_RESULT(yes)
2491     AC_DEFINE(WITH_PROFILE,1,[Whether to use profiling])
2492     ;;
2493   *)
2494     AC_MSG_RESULT(no)
2495     ;;
2496   esac ],
2497   AC_MSG_RESULT(no)
2498 )
2499
2500
2501 #################################################
2502 # check for experimental disk-quotas support
2503 QUOTAOBJS=smbd/noquotas.o
2504
2505 AC_MSG_CHECKING(whether to support disk-quotas)
2506 AC_ARG_WITH(quotas,
2507 [  --with-quotas           Include experimental disk-quota support (default=no)],
2508 [ case "$withval" in
2509   yes)
2510     AC_MSG_RESULT(yes)
2511     case "$host_os" in
2512       *linux*)
2513         # Check for kernel 2.4.x quota braindamage...
2514         AC_CACHE_CHECK([for linux 2.4.x quota braindamage..],samba_cv_linux_2_4_quota_braindamage, [
2515         AC_TRY_COMPILE([#include <stdio.h>
2516 #include <sys/types.h>
2517 #include <asm/types.h>
2518 #include <linux/quota.h>
2519 #include <mntent.h>
2520 #include <linux/unistd.h>],[struct mem_dqblk D;],
2521       samba_cv_linux_2_4_quota_braindamage=yes,samba_cv_linux_2_4_quota_braindamage=no)])
2522 if test x"$samba_cv_linux_2_4_quota_braindamage" = x"yes"; then
2523         AC_DEFINE(LINUX_QUOTAS_2,1,[linux 2.4.x quota braindamage])
2524 else
2525         AC_DEFINE(LINUX_QUOTAS_1,1,[linux quotas])
2526 fi
2527         ;;
2528       *)
2529         ;;
2530     esac
2531     QUOTAOBJS=smbd/quotas.o
2532     AC_DEFINE(WITH_QUOTAS,1,[Whether to include experimental quota support])
2533     ;;
2534   *)
2535     AC_MSG_RESULT(no)
2536     ;;
2537   esac ],
2538   AC_MSG_RESULT(no)
2539 )
2540 AC_SUBST(QUOTAOBJS)
2541
2542 #################################################
2543 # check for experimental utmp accounting
2544
2545 AC_MSG_CHECKING(whether to support utmp accounting)
2546 AC_ARG_WITH(utmp,
2547 [  --with-utmp             Include experimental utmp accounting (default=no)],
2548 [ case "$withval" in
2549   yes)
2550     AC_MSG_RESULT(yes)
2551     AC_DEFINE(WITH_UTMP,1,[Whether to include experimental utmp accounting])
2552     ;;
2553   *)
2554     AC_MSG_RESULT(no)
2555     ;;
2556   esac ],
2557   AC_MSG_RESULT(no)
2558 )
2559
2560 #################################################
2561 # choose native language(s) of man pages
2562 AC_MSG_CHECKING(chosen man pages' language(s))
2563 AC_ARG_WITH(manpages-langs,
2564 [  --with-manpages-langs={en,ja,pl}  Choose man pages' language(s). (en)],
2565 [ case "$withval" in
2566   yes|no)
2567     AC_MSG_WARN(--with-manpages-langs called without argument - will use default)
2568     manlangs="en"
2569   ;;
2570   *)
2571     manlangs="$withval"
2572   ;;
2573   esac
2574
2575   AC_MSG_RESULT($manlangs)
2576   manlangs=`echo $manlangs | sed "s/,/ /g"`   # replacing commas with spaces to produce a list
2577   AC_SUBST(manlangs)],
2578
2579   [manlangs="en"
2580   AC_MSG_RESULT($manlangs)
2581   AC_SUBST(manlangs)]
2582 )
2583
2584 #################################################
2585 # should we build libsmbclient?
2586
2587 INSTALLCLIENTCMD_SH=:
2588 INSTALLCLIENTCMD_A=:
2589 LIBSMBCLIENT_SHARED=
2590 LIBSMBCLIENT=
2591 AC_MSG_CHECKING(whether to build the libsmbclient shared library)
2592 AC_ARG_WITH(libsmbclient,
2593 [  --with-libsmbclient     Build the libsmbclient shared library (default=yes if shared libs supported)],
2594 [ case "$withval" in
2595   no) 
2596      AC_MSG_RESULT(no)
2597      ;;
2598   *)
2599      if test $BLDSHARED = true; then
2600         INSTALLCLIENTCMD_SH="\$(INSTALLCMD)"
2601         LIBSMBCLIENT_SHARED=bin/libsmbclient.$SHLIBEXT
2602         LIBSMBCLIENT=libsmbclient
2603         AC_MSG_RESULT(yes)
2604      else
2605         enable_static=yes
2606         AC_MSG_RESULT(no shared library support -- will supply static library)
2607      fi
2608      if test $enable_static = yes; then
2609         INSTALLCLIENTCMD_A="\$(INSTALLCMD)"
2610         LIBSMBCLIENT=libsmbclient
2611      fi
2612      ;;
2613   esac ],
2614 [
2615 # if unspecified, default is to built it iff possible.
2616   if test $BLDSHARED = true; then
2617      INSTALLCLIENTCMD_SH="\$(INSTALLCMD)"
2618      LIBSMBCLIENT_SHARED=bin/libsmbclient.$SHLIBEXT
2619      LIBSMBCLIENT=libsmbclient
2620      AC_MSG_RESULT(yes)
2621    else
2622      enable_static=yes
2623      AC_MSG_RESULT(no shared library support -- will supply static library)
2624    fi
2625    if test $enable_static = yes; then
2626      INSTALLCLIENTCMD_A="\$(INSTALLCMD)"
2627      LIBSMBCLIENT=libsmbclient
2628   fi]
2629 )
2630
2631
2632 #################################################
2633 # these tests are taken from the GNU fileutils package
2634 AC_CHECKING(how to get filesystem space usage)
2635 space=no
2636
2637 # Test for statvfs64.
2638 if test $space = no; then
2639   # SVR4
2640   AC_CACHE_CHECK([statvfs64 function (SVR4)], fu_cv_sys_stat_statvfs64,
2641   [AC_TRY_RUN([
2642 #if defined(HAVE_UNISTD_H)
2643 #include <unistd.h>
2644 #endif
2645 #include <sys/types.h>
2646 #include <sys/statvfs.h>
2647   main ()
2648   {
2649     struct statvfs64 fsd;
2650     exit (statvfs64 (".", &fsd));
2651   }],
2652   fu_cv_sys_stat_statvfs64=yes,
2653   fu_cv_sys_stat_statvfs64=no,
2654   fu_cv_sys_stat_statvfs64=cross)])
2655   if test $fu_cv_sys_stat_statvfs64 = yes; then
2656     space=yes
2657     AC_DEFINE(STAT_STATVFS64,1,[Whether statvfs64() is available])
2658   fi
2659 fi
2660
2661 # Perform only the link test since it seems there are no variants of the
2662 # statvfs function.  This check is more than just AC_CHECK_FUNCS(statvfs)
2663 # because that got a false positive on SCO OSR5.  Adding the declaration
2664 # of a `struct statvfs' causes this test to fail (as it should) on such
2665 # systems.  That system is reported to work fine with STAT_STATFS4 which
2666 # is what it gets when this test fails.
2667 if test $space = no; then
2668   # SVR4
2669   AC_CACHE_CHECK([statvfs function (SVR4)], fu_cv_sys_stat_statvfs,
2670                  [AC_TRY_LINK([#include <sys/types.h>
2671 #include <sys/statvfs.h>],
2672                               [struct statvfs fsd; statvfs (0, &fsd);],
2673                               fu_cv_sys_stat_statvfs=yes,
2674                               fu_cv_sys_stat_statvfs=no)])
2675   if test $fu_cv_sys_stat_statvfs = yes; then
2676     space=yes
2677     AC_DEFINE(STAT_STATVFS,1,[Whether statvfs() is available])
2678   fi
2679 fi
2680
2681 if test $space = no; then
2682   # DEC Alpha running OSF/1
2683   AC_MSG_CHECKING([for 3-argument statfs function (DEC OSF/1)])
2684   AC_CACHE_VAL(fu_cv_sys_stat_statfs3_osf1,
2685   [AC_TRY_RUN([
2686 #include <sys/param.h>
2687 #include <sys/types.h>
2688 #include <sys/mount.h>
2689   main ()
2690   {
2691     struct statfs fsd;
2692     fsd.f_fsize = 0;
2693     exit (statfs (".", &fsd, sizeof (struct statfs)));
2694   }],
2695   fu_cv_sys_stat_statfs3_osf1=yes,
2696   fu_cv_sys_stat_statfs3_osf1=no,
2697   fu_cv_sys_stat_statfs3_osf1=no)])
2698   AC_MSG_RESULT($fu_cv_sys_stat_statfs3_osf1)
2699   if test $fu_cv_sys_stat_statfs3_osf1 = yes; then
2700     space=yes
2701     AC_DEFINE(STAT_STATFS3_OSF1,1,[Whether statfs requires 3 arguments])
2702   fi
2703 fi
2704
2705 if test $space = no; then
2706 # AIX
2707   AC_MSG_CHECKING([for two-argument statfs with statfs.bsize dnl
2708 member (AIX, 4.3BSD)])
2709   AC_CACHE_VAL(fu_cv_sys_stat_statfs2_bsize,
2710   [AC_TRY_RUN([
2711 #ifdef HAVE_SYS_PARAM_H
2712 #include <sys/param.h>
2713 #endif
2714 #ifdef HAVE_SYS_MOUNT_H
2715 #include <sys/mount.h>
2716 #endif
2717 #ifdef HAVE_SYS_VFS_H
2718 #include <sys/vfs.h>
2719 #endif
2720   main ()
2721   {
2722   struct statfs fsd;
2723   fsd.f_bsize = 0;
2724   exit (statfs (".", &fsd));
2725   }],
2726   fu_cv_sys_stat_statfs2_bsize=yes,
2727   fu_cv_sys_stat_statfs2_bsize=no,
2728   fu_cv_sys_stat_statfs2_bsize=no)])
2729   AC_MSG_RESULT($fu_cv_sys_stat_statfs2_bsize)
2730   if test $fu_cv_sys_stat_statfs2_bsize = yes; then
2731     space=yes
2732     AC_DEFINE(STAT_STATFS2_BSIZE,1,[Whether statfs requires two arguments and struct statfs has bsize property])
2733   fi
2734 fi
2735
2736 if test $space = no; then
2737 # SVR3
2738   AC_MSG_CHECKING([for four-argument statfs (AIX-3.2.5, SVR3)])
2739   AC_CACHE_VAL(fu_cv_sys_stat_statfs4,
2740   [AC_TRY_RUN([#include <sys/types.h>
2741 #include <sys/statfs.h>
2742   main ()
2743   {
2744   struct statfs fsd;
2745   exit (statfs (".", &fsd, sizeof fsd, 0));
2746   }],
2747     fu_cv_sys_stat_statfs4=yes,
2748     fu_cv_sys_stat_statfs4=no,
2749     fu_cv_sys_stat_statfs4=no)])
2750   AC_MSG_RESULT($fu_cv_sys_stat_statfs4)
2751   if test $fu_cv_sys_stat_statfs4 = yes; then
2752     space=yes
2753     AC_DEFINE(STAT_STATFS4,1,[Whether statfs requires 4 arguments])
2754   fi
2755 fi
2756
2757 if test $space = no; then
2758 # 4.4BSD and NetBSD
2759   AC_MSG_CHECKING([for two-argument statfs with statfs.fsize dnl
2760 member (4.4BSD and NetBSD)])
2761   AC_CACHE_VAL(fu_cv_sys_stat_statfs2_fsize,
2762   [AC_TRY_RUN([#include <sys/types.h>
2763 #ifdef HAVE_SYS_PARAM_H
2764 #include <sys/param.h>
2765 #endif
2766 #ifdef HAVE_SYS_MOUNT_H
2767 #include <sys/mount.h>
2768 #endif
2769   main ()
2770   {
2771   struct statfs fsd;
2772   fsd.f_fsize = 0;
2773   exit (statfs (".", &fsd));
2774   }],
2775   fu_cv_sys_stat_statfs2_fsize=yes,
2776   fu_cv_sys_stat_statfs2_fsize=no,
2777   fu_cv_sys_stat_statfs2_fsize=no)])
2778   AC_MSG_RESULT($fu_cv_sys_stat_statfs2_fsize)
2779   if test $fu_cv_sys_stat_statfs2_fsize = yes; then
2780     space=yes
2781         AC_DEFINE(STAT_STATFS2_FSIZE,1,[Whether statfs requires 2 arguments and struct statfs has fsize])
2782   fi
2783 fi
2784
2785 if test $space = no; then
2786   # Ultrix
2787   AC_MSG_CHECKING([for two-argument statfs with struct fs_data (Ultrix)])
2788   AC_CACHE_VAL(fu_cv_sys_stat_fs_data,
2789   [AC_TRY_RUN([#include <sys/types.h>
2790 #ifdef HAVE_SYS_PARAM_H
2791 #include <sys/param.h>
2792 #endif
2793 #ifdef HAVE_SYS_MOUNT_H
2794 #include <sys/mount.h>
2795 #endif
2796 #ifdef HAVE_SYS_FS_TYPES_H
2797 #include <sys/fs_types.h>
2798 #endif
2799   main ()
2800   {
2801   struct fs_data fsd;
2802   /* Ultrix's statfs returns 1 for success,
2803      0 for not mounted, -1 for failure.  */
2804   exit (statfs (".", &fsd) != 1);
2805   }],
2806   fu_cv_sys_stat_fs_data=yes,
2807   fu_cv_sys_stat_fs_data=no,
2808   fu_cv_sys_stat_fs_data=no)])
2809   AC_MSG_RESULT($fu_cv_sys_stat_fs_data)
2810   if test $fu_cv_sys_stat_fs_data = yes; then
2811     space=yes
2812     AC_DEFINE(STAT_STATFS2_FS_DATA,1,[Whether statfs requires 2 arguments and struct fs_data is available])
2813   fi
2814 fi
2815
2816 #
2817 # As a gating factor for large file support, in order to
2818 # use <4GB files we must have the following minimal support
2819 # available.
2820 # long long, and a 64 bit off_t or off64_t.
2821 # If we don't have all of these then disable large
2822 # file support.
2823 #
2824 AC_MSG_CHECKING([if large file support can be enabled])
2825 AC_TRY_COMPILE([
2826 #if defined(HAVE_LONGLONG) && (defined(HAVE_OFF64_T) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8)))
2827 #include <sys/types.h>
2828 #else
2829 __COMPILE_ERROR_
2830 #endif
2831 ],
2832 [int i],
2833 samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT=yes,samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT=no)
2834 if test x"$samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT" = x"yes"; then
2835         AC_DEFINE(HAVE_EXPLICIT_LARGEFILE_SUPPORT,1,[Whether large file support can be enabled])
2836 fi
2837 AC_MSG_RESULT([$samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT])
2838
2839 AC_ARG_WITH(spinlocks, 
2840 [  --with-spinlocks        Use spin locks instead of fcntl locks (default=no) ])
2841 if test "x$with_spinlocks" = "xyes"; then
2842     AC_DEFINE(USE_SPINLOCKS,1,[Whether to use spin locks instead of fcntl locks])
2843
2844     case "$host_cpu" in
2845         sparc)
2846             AC_DEFINE(SPARC_SPINLOCKS,1,[Whether to use sparc spinlocks])
2847             ;;
2848
2849         i386|i486|i586|i686)
2850             AC_DEFINE(INTEL_SPINLOCKS,1,[Whether to use intel spinlocks])
2851             ;;
2852
2853         mips)
2854             AC_DEFINE(MIPS_SPINLOCKS,1,[Whether to use mips spinlocks])
2855             ;;
2856
2857         powerpc)
2858             AC_DEFINE(POWERPC_SPINLOCKS,1,[Whether to use powerpc spinlocks])
2859             ;;
2860     esac
2861 fi
2862
2863 #################################################
2864 # check for ACL support
2865
2866 AC_MSG_CHECKING(whether to support ACLs)
2867 AC_ARG_WITH(acl-support,
2868 [  --with-acl-support      Include ACL support (default=no)],
2869 [ case "$withval" in
2870   yes)
2871
2872         case "$host_os" in
2873         *sysv5*)
2874                 AC_MSG_RESULT(Using UnixWare ACLs)
2875                 AC_DEFINE(HAVE_UNIXWARE_ACLS,1,[Whether UnixWare ACLs are available])
2876                 ;;
2877         *solaris*)
2878                 AC_MSG_RESULT(Using solaris ACLs)
2879                 AC_DEFINE(HAVE_SOLARIS_ACLS,1,[Whether solaris ACLs are available])
2880                 ;;
2881         *hpux*)
2882                 AC_MSG_RESULT(Using HPUX ACLs)
2883                 AC_DEFINE(HAVE_HPUX_ACLS,1,[Whether HPUX ACLs are available])
2884                 ;;
2885         *irix*)
2886                 AC_MSG_RESULT(Using IRIX ACLs)
2887                 AC_DEFINE(HAVE_IRIX_ACLS,1,[Whether IRIX ACLs are available])
2888                 ;;
2889         *aix*)
2890                 AC_MSG_RESULT(Using AIX ACLs)
2891                 AC_DEFINE(HAVE_AIX_ACLS,1,[Whether AIX ACLs are available])
2892                 ;;
2893         *osf*)
2894                 AC_MSG_RESULT(Using Tru64 ACLs)
2895                 AC_DEFINE(HAVE_TRU64_ACLS,1,[Whether Tru64 ACLs are available])
2896                 ACLLIBS="$ACLLIBS -lpacl"
2897                 ;;
2898         *)
2899                 AC_CHECK_LIB(acl,acl_get_file,[ACLLIBS="$ACLLIBS -lacl"])
2900                 AC_CACHE_CHECK([for ACL support],samba_cv_HAVE_POSIX_ACLS,[
2901                 acl_LIBS=$LIBS
2902                 LIBS="$LIBS -lacl"
2903                 AC_TRY_LINK([#include <sys/types.h>
2904 #include <sys/acl.h>],
2905 [ acl_t acl; int entry_id; acl_entry_t *entry_p; return acl_get_entry( acl, entry_id, entry_p);],
2906 samba_cv_HAVE_POSIX_ACLS=yes,samba_cv_HAVE_POSIX_ACLS=no)
2907                 LIBS=$acl_LIBS])
2908                         if test x"$samba_cv_HAVE_POSIX_ACLS" = x"yes"; then
2909                                 AC_MSG_RESULT(Using posix ACLs)
2910                                 AC_DEFINE(HAVE_POSIX_ACLS,1,[Whether POSIX ACLs are available])
2911                                 AC_CACHE_CHECK([for acl_get_perm_np],samba_cv_HAVE_ACL_GET_PERM_NP,[
2912                                 acl_LIBS=$LIBS
2913                                 LIBS="$LIBS -lacl"
2914                                 AC_TRY_LINK([#include <sys/types.h>
2915 #include <sys/acl.h>],
2916 [ acl_permset_t permset_d; acl_perm_t perm; return acl_get_perm_np( permset_d, perm);],
2917 samba_cv_HAVE_ACL_GET_PERM_NP=yes,samba_cv_HAVE_ACL_GET_PERM_NP=no)
2918                                 LIBS=$acl_LIBS])
2919                                 if test x"$samba_cv_HAVE_ACL_GET_PERM_NP" = x"yes"; then
2920                                         AC_DEFINE(HAVE_ACL_GET_PERM_NP,1,[Whether acl_get_perm_np() is available])
2921                                 fi
2922                         fi
2923             ;;
2924         esac
2925         ;;
2926   *)
2927     AC_MSG_RESULT(no)
2928     AC_DEFINE(HAVE_NO_ACLS,1,[Whether no ACLs support is available])
2929     ;;
2930   esac ],
2931   AC_DEFINE(HAVE_NO_ACLS,1,[Whether no ACLs support should be built in])
2932   AC_MSG_RESULT(no)
2933 )
2934
2935 #################################################
2936 # check for sendfile support
2937
2938 with_sendfile_support=yes
2939 AC_MSG_CHECKING(whether to check to support sendfile)
2940 AC_ARG_WITH(sendfile-support,
2941 [  --with-sendfile-support      Check for sendfile support (default=yes)],
2942 [ case "$withval" in
2943   yes)
2944
2945         AC_MSG_RESULT(yes);
2946
2947         case "$host_os" in
2948         *linux*)
2949                 AC_CACHE_CHECK([for linux sendfile64 support],samba_cv_HAVE_SENDFILE64,[
2950                 AC_TRY_LINK([#include <sys/sendfile.h>],
2951 [\
2952 int tofd, fromfd;
2953 off64_t offset;
2954 size_t total;
2955 ssize_t nwritten = sendfile64(tofd, fromfd, &offset, total);
2956 ],
2957 samba_cv_HAVE_SENDFILE64=yes,samba_cv_HAVE_SENDFILE64=no)])
2958
2959                 AC_CACHE_CHECK([for linux sendfile support],samba_cv_HAVE_SENDFILE,[
2960                 AC_TRY_LINK([#include <sys/sendfile.h>],
2961 [\
2962 int tofd, fromfd;
2963 off_t offset;
2964 size_t total;
2965 ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
2966 ],
2967 samba_cv_HAVE_SENDFILE=yes,samba_cv_HAVE_SENDFILE=no)])
2968
2969 # Try and cope with broken Linux sendfile....
2970                 AC_CACHE_CHECK([for broken linux sendfile support],samba_cv_HAVE_BROKEN_LINUX_SENDFILE,[
2971                 AC_TRY_LINK([\
2972 #if defined(_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
2973 #undef _FILE_OFFSET_BITS
2974 #endif
2975 #include <sys/sendfile.h>],
2976 [\
2977 int tofd, fromfd;
2978 off_t offset;
2979 size_t total;
2980 ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
2981 ],
2982 samba_cv_HAVE_BROKEN_LINUX_SENDFILE=yes,samba_cv_HAVE_BROKEN_LINUX_SENDFILE=no)])
2983
2984         if test x"$samba_cv_HAVE_SENDFILE64" = x"yes"; then
2985                 AC_DEFINE(HAVE_SENDFILE64,1,[Whether 64-bit sendfile() is available])
2986                 AC_DEFINE(LINUX_SENDFILE_API,1,[Whether linux sendfile() API is available])
2987                 AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() should be used])
2988         elif test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then
2989                 AC_DEFINE(HAVE_SENDFILE,1,[Whether sendfile() is available])
2990                 AC_DEFINE(LINUX_SENDFILE_API,1,[Whether linux sendfile() API is available])
2991                 AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() should be used])
2992         elif test x"$samba_cv_HAVE_BROKEN_LINUX_SENDFILE" = x"yes"; then
2993                 AC_DEFINE(LINUX_BROKEN_SENDFILE_API,1,[Whether (linux) sendfile() is broken])
2994                 AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile should be used])
2995         else
2996                 AC_MSG_RESULT(no);
2997         fi
2998
2999         ;;
3000         *freebsd*)
3001                 AC_CACHE_CHECK([for freebsd sendfile support],samba_cv_HAVE_SENDFILE,[
3002                 AC_TRY_LINK([\
3003 #include <sys/types.h>
3004 #include <unistd.h>
3005 #include <sys/socket.h>
3006 #include <sys/uio.h>],
3007 [\
3008         int fromfd, tofd, ret, total=0;
3009         off_t offset, nwritten;
3010         struct sf_hdtr hdr;
3011         struct iovec hdtrl;
3012         hdr.headers = &hdtrl;
3013         hdr.hdr_cnt = 1;
3014         hdr.trailers = NULL;
3015         hdr.trl_cnt = 0;
3016         hdtrl.iov_base = NULL;
3017         hdtrl.iov_len = 0;
3018         ret = sendfile(fromfd, tofd, offset, total, &hdr, &nwritten, 0);
3019 ],
3020 samba_cv_HAVE_SENDFILE=yes,samba_cv_HAVE_SENDFILE=no)])
3021
3022         if test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then
3023                 AC_DEFINE(HAVE_SENDFILE,1,[Whether sendfile() support is available])
3024                 AC_DEFINE(FREEBSD_SENDFILE_API,1,[Whether the FreeBSD sendfile() API is available])
3025                 AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
3026         else
3027                 AC_MSG_RESULT(no);
3028         fi
3029         ;;
3030
3031         *hpux*)
3032                 AC_CACHE_CHECK([for hpux sendfile64 support],samba_cv_HAVE_SENDFILE64,[
3033                 AC_TRY_LINK([\
3034 #include <sys/socket.h>
3035 #include <sys/uio.h>],
3036 [\
3037         int fromfd, tofd;
3038         size_t total=0;
3039         struct iovec hdtrl[2];
3040         ssize_t nwritten;
3041         off64_t offset;
3042
3043         hdtrl[0].iov_base = 0;
3044         hdtrl[0].iov_len = 0;
3045
3046         nwritten = sendfile64(tofd, fromfd, offset, total, &hdtrl[0], 0);
3047 ],
3048 samba_cv_HAVE_SENDFILE64=yes,samba_cv_HAVE_SENDFILE64=no)])
3049         if test x"$samba_cv_HAVE_SENDFILE64" = x"yes"; then
3050                 AC_DEFINE(HAVE_SENDFILE64,1,[Whether sendfile64() is available])
3051                 AC_DEFINE(HPUX_SENDFILE_API,1,[Whether the hpux sendfile() API is available])
3052                 AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
3053         else
3054                 AC_MSG_RESULT(no);
3055         fi
3056
3057                 AC_CACHE_CHECK([for hpux sendfile support],samba_cv_HAVE_SENDFILE,[
3058                 AC_TRY_LINK([\
3059 #include <sys/socket.h>
3060 #include <sys/uio.h>],
3061 [\
3062         int fromfd, tofd;
3063         size_t total=0;
3064         struct iovec hdtrl[2];
3065         ssize_t nwritten;
3066         off_t offset;
3067
3068         hdtrl[0].iov_base = 0;
3069         hdtrl[0].iov_len = 0;
3070
3071         nwritten = sendfile(tofd, fromfd, offset, total, &hdtrl[0], 0);
3072 ],
3073 samba_cv_HAVE_SENDFILE=yes,samba_cv_HAVE_SENDFILE=no)])
3074         if test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then
3075                 AC_DEFINE(HAVE_SENDFILE,1,[Whether sendfile() is available])
3076                 AC_DEFINE(HPUX_SENDFILE_API,1,[Whether the hpux sendfile() API is available])
3077                 AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
3078         else
3079                 AC_MSG_RESULT(no);
3080         fi
3081         ;;
3082
3083         *solaris*)
3084                 AC_CHECK_LIB(sendfile,sendfilev)
3085                 AC_CACHE_CHECK([for solaris sendfilev64 support],samba_cv_HAVE_SENDFILEV64,[
3086                 AC_TRY_LINK([\
3087 #include <sys/sendfile.h>],
3088 [\
3089         int sfvcnt;
3090         size_t xferred;
3091         struct sendfilevec vec[2];
3092         ssize_t nwritten;
3093         int tofd;
3094
3095         sfvcnt = 2;
3096
3097         vec[0].sfv_fd = SFV_FD_SELF;
3098         vec[0].sfv_flag = 0;
3099         vec[0].sfv_off = 0;
3100         vec[0].sfv_len = 0;
3101
3102         vec[1].sfv_fd = 0;
3103         vec[1].sfv_flag = 0;
3104         vec[1].sfv_off = 0;
3105         vec[1].sfv_len = 0;
3106         nwritten = sendfilev64(tofd, vec, sfvcnt, &xferred);
3107 ],
3108 samba_cv_HAVE_SENDFILEV64=yes,samba_cv_HAVE_SENDFILEV64=no)])
3109
3110         if test x"$samba_cv_HAVE_SENDFILEV64" = x"yes"; then
3111                 AC_DEFINE(HAVE_SENDFILEV64,1,[Whether sendfilev64() is available])
3112                 AC_DEFINE(SOLARIS_SENDFILE_API,1,[Whether the soloris sendfile() API is available])
3113                 AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
3114         else
3115                 AC_MSG_RESULT(no);
3116         fi
3117
3118                 AC_CACHE_CHECK([for solaris sendfilev support],samba_cv_HAVE_SENDFILEV,[
3119                 AC_TRY_LINK([\
3120 #include <sys/sendfile.h>],
3121 [\
3122         int sfvcnt;
3123         size_t xferred;
3124         struct sendfilevec vec[2];
3125         ssize_t nwritten;
3126         int tofd;
3127
3128         sfvcnt = 2;
3129
3130         vec[0].sfv_fd = SFV_FD_SELF;
3131         vec[0].sfv_flag = 0;
3132         vec[0].sfv_off = 0;
3133         vec[0].sfv_len = 0;
3134
3135         vec[1].sfv_fd = 0;
3136         vec[1].sfv_flag = 0;
3137         vec[1].sfv_off = 0;
3138         vec[1].sfv_len = 0;
3139         nwritten = sendfilev(tofd, vec, sfvcnt, &xferred);
3140 ],
3141 samba_cv_HAVE_SENDFILEV=yes,samba_cv_HAVE_SENDFILEV=no)])
3142
3143         if test x"$samba_cv_HAVE_SENDFILEV" = x"yes"; then
3144                 AC_DEFINE(HAVE_SENDFILEV,1,[Whether sendfilev() is available])
3145                 AC_DEFINE(SOLARIS_SENDFILE_API,1,[Whether the solaris sendfile() API is available])
3146                 AC_DEFINE(WITH_SENDFILE,1,[Whether to include sendfile() support])
3147         else
3148                 AC_MSG_RESULT(no);
3149         fi
3150         ;;
3151
3152         *)
3153         ;;
3154         esac
3155         ;;
3156   *)
3157     AC_MSG_RESULT(no)
3158     ;;
3159   esac ],
3160   AC_MSG_RESULT(yes)
3161 )
3162
3163
3164 #################################################
3165 # Check whether winbind is supported on this platform.  If so we need to
3166 # build and install client programs, sbin programs and shared libraries
3167
3168 AC_MSG_CHECKING(whether to build winbind)
3169
3170 # Initially, the value of $host_os decides whether winbind is supported
3171
3172 case "$host_os" in
3173         *linux*|*irix*)
3174                 HAVE_WINBIND=yes
3175                 ;;
3176         *solaris*)
3177                 HAVE_WINBIND=yes
3178                 WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_solaris.o"
3179                 WINBIND_NSS_EXTRA_LIBS="-lsocket"
3180                 ;;
3181         *hpux11*)
3182                 HAVE_WINBIND=yes
3183                 WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_solaris.o"
3184                 ;;
3185         *)
3186                 HAVE_WINBIND=no
3187                 winbind_no_reason=", unsupported on $host_os"
3188                 ;;
3189 esac
3190
3191 AC_SUBST(WINBIND_NSS_EXTRA_OBJS)
3192 AC_SUBST(WINBIND_NSS_EXTRA_LIBS)
3193
3194 # Check the setting of --with-winbindd
3195
3196 AC_ARG_WITH(winbind,
3197 [  --with-winbind          Build winbind (default, if supported by OS)],
3198
3199   case "$withval" in
3200         yes)
3201                 HAVE_WINBIND=yes
3202                 ;;
3203         no)
3204                 HAVE_WINBIND=no
3205                 winbind_reason=""
3206                 ;;
3207   esac ],
3208 )
3209
3210 # We need unix domain sockets for winbind
3211
3212 if test x"$HAVE_WINBIND" = x"yes"; then
3213         if test x"$samba_cv_unixsocket" = x"no"; then
3214                 winbind_no_reason=", no unix domain socket support on $host_os"
3215                 HAVE_WINBIND=no
3216         fi
3217 fi
3218
3219 # Display test results
3220
3221 if test x"$HAVE_WINBIND" = x"yes"; then
3222         AC_MSG_RESULT(yes)
3223         AC_DEFINE(WITH_WINBIND,1,[Whether to build winbind])
3224
3225         EXTRA_BIN_PROGS="$EXTRA_BIN_PROGS bin/wbinfo\$(EXEEXT)"
3226         EXTRA_SBIN_PROGS="$EXTRA_SBIN_PROGS bin/winbindd\$(EXEEXT)"
3227         if test x"$BLDSHARED" = x"true"; then
3228                 case "$host_os" in
3229                 *irix*)
3230                         SHLIB_PROGS="$SHLIB_PROGS nsswitch/libns_winbind.so"
3231                         ;;
3232                 *)
3233                         SHLIB_PROGS="$SHLIB_PROGS nsswitch/libnss_winbind.so"
3234                         ;;
3235                 esac
3236                 if test x"$with_pam" = x"yes"; then
3237                         SHLIB_PROGS="$SHLIB_PROGS nsswitch/pam_winbind.so"
3238                 fi
3239         fi
3240 else
3241         AC_MSG_RESULT(no$winbind_no_reason)
3242 fi
3243
3244 # Solaris has some extra fields in struct passwd that need to be
3245 # initialised otherwise nscd crashes.  Unfortunately autoconf < 2.50
3246 # doesn't have the AC_CHECK_MEMBER macro which would be handy for checking
3247 # this. 
3248
3249 #AC_CHECK_MEMBER(struct passwd.pw_comment,
3250 #               AC_DEFINE(HAVE_PASSWD_PW_COMMENT, 1, [Defined if struct passwd has pw_comment field]),
3251 #               [#include <pwd.h>])
3252
3253 AC_CACHE_CHECK([whether struct passwd has pw_comment],samba_cv_passwd_pw_comment, [
3254     AC_TRY_COMPILE([#include <pwd.h>],[struct passwd p; p.pw_comment;],
3255         samba_cv_passwd_pw_comment=yes,samba_cv_passwd_pw_comment=no)])
3256 if test x"$samba_cv_passwd_pw_comment" = x"yes"; then
3257    AC_DEFINE(HAVE_PASSWD_PW_COMMENT,1,[Whether struct passwd has pw_comment])
3258 fi
3259
3260 #AC_CHECK_MEMBER(struct passwd.pw_age,
3261 #               AC_DEFINE(HAVE_PASSWD_PW_AGE, 1, [Defined if struct passwd has pw_age field]),
3262 #               [#include <pwd.h>])
3263
3264 AC_CACHE_CHECK([whether struct passwd has pw_age],samba_cv_passwd_pw_age, [
3265     AC_TRY_COMPILE([#include <pwd.h>],[struct passwd p; p.pw_age;],
3266         samba_cv_passwd_pw_age=yes,samba_cv_passwd_pw_age=no)])
3267 if test x"$samba_cv_passwd_pw_age" = x"yes"; then
3268    AC_DEFINE(HAVE_PASSWD_PW_AGE,1,[Whether struct passwd has pw_age])
3269 fi
3270
3271 #################################################
3272 # Check to see if we should use the included popt 
3273
3274 AC_ARG_WITH(included-popt,
3275 [  --with-included-popt    use bundled popt library, not from system],
3276
3277   case "$withval" in
3278         yes)
3279                 INCLUDED_POPT=yes
3280                 ;;
3281         no)
3282                 INCLUDED_POPT=no
3283                 ;;
3284   esac ],
3285 )
3286 if test x"$INCLUDED_POPT" != x"yes"; then
3287     AC_CHECK_LIB(popt, poptGetContext,
3288                  INCLUDED_POPT=no, INCLUDED_POPT=yes)
3289 fi
3290
3291 AC_MSG_CHECKING(whether to use included popt)
3292 if test x"$INCLUDED_POPT" = x"yes"; then
3293     AC_MSG_RESULT(yes)
3294     BUILD_POPT='$(POPT_OBJS)'
3295     FLAGS1="-I$srcdir/popt"
3296 else
3297     AC_MSG_RESULT(no)
3298     LIBS="$LIBS -lpopt"
3299 fi
3300 AC_SUBST(BUILD_POPT)
3301 AC_SUBST(FLAGS1)
3302
3303 #################################################
3304 # Check if the user wants Python
3305
3306 # At the moment, you can use this to set which Python binary to link
3307 # against.  (Libraries built for Python2.2 can't be used by 2.1,
3308 # though they can coexist in different directories.)  In the future
3309 # this might make the Python stuff be built by default.
3310
3311 # Defaulting python breaks the clean target if python isn't installed
3312
3313 PYTHON=
3314
3315 AC_ARG_WITH(python,
3316 [  --with-python=PYTHONNAME  build Python libraries],
3317 [ case "${withval-python}" in
3318   yes)
3319         PYTHON=python
3320         EXTRA_ALL_TARGETS="$EXTRA_ALL_TARGETS python_ext"
3321         ;;
3322   no)
3323         PYTHON=
3324         ;;
3325   *)
3326         PYTHON=${withval-python}
3327         ;;
3328   esac ])
3329 AC_SUBST(PYTHON)
3330
3331 for i in `echo $default_modules | sed -e's/,/ /g'`
3332 do
3333         dnl Set to shared instead of static when dlopen() is available?
3334         eval MODULE_DEFAULT_$i=STATIC
3335 done
3336
3337 # Always built these modules static
3338 MODULE_pdb_guest=STATIC
3339 MODULE_rpc_spoolss=STATIC
3340 MODULE_rpc_srv=STATIC
3341
3342 AC_ARG_WITH(static-modules,
3343 [  --with-static-modules=MODULES  Comma-seperated list of names of modules to statically link in],
3344 [ if test $withval; then
3345         for i in `echo $withval | sed -e's/,/ /g'`
3346         do
3347                 eval MODULE_$i=STATIC
3348         done
3349 fi ])
3350
3351 AC_ARG_WITH(shared-modules,
3352 [  --with-shared-modules=MODULES  Comma-seperated list of names of modules to build shared],
3353 [ if test $withval; then
3354         for i in `echo $withval | sed -e's/,/ /g'`
3355         do
3356                         eval MODULE_$i=SHARED
3357         done
3358 fi ])
3359
3360 SMB_MODULE(pdb_xml, modules/xml.o, bin/xml.so, PDB,
3361                   [ CFLAGS="$CFLAGS $XML_CFLAGS"; LIBS="$LIBS $XML_LIBS" ] )
3362 SMB_MODULE(pdb_mysql, modules/mysql.o, bin/mysql.so, PDB, 
3363                    [ CFLAGS="$CFLAGS $MYSQL_CFLAGS"; LIBS="$LIBS $MYSQL_LIBS" ] )
3364 SMB_MODULE(pdb_ldap, passdb/pdb_ldap.o, bin/ldapsam.so, PDB, 
3365                    [ LIBS="$LIBS $LDAP_LIBS" ] )
3366 SMB_MODULE(pdb_smbpasswd, passdb/pdb_smbpasswd.o, bin/smbpasswd.so, PDB)
3367 SMB_MODULE(pdb_tdbsam, passdb/pdb_tdb.o, bin/tdbsam.so, PDB)
3368 SMB_MODULE(pdb_nisplussam, passdb/pdb_nisplus.o, bin/nisplussam.so, PDB)
3369 SMB_MODULE(pdb_unix, passdb/pdb_unix.o, bin/unixsam.so, PDB)
3370 SMB_MODULE(pdb_guest, passdb/pdb_guest.o, bin/guest.so, PDB)
3371 SMB_SUBSYSTEM(PDB)
3372
3373 SMB_MODULE(rpc_lsa, \$(RPC_LSA_OBJ), bin/librpc_lsarpc.so, RPC)
3374 SMB_MODULE(rpc_reg, \$(RPC_REG_OBJ), bin/librpc_winreg.so, RPC)
3375 SMB_MODULE(rpc_wks, \$(RPC_WKS_OBJ), bin/librpc_wkssvc.so, RPC)
3376 SMB_MODULE(rpc_net, \$(RPC_NETLOG_OBJ), bin/librpc_NETLOGON.so, RPC)
3377 SMB_MODULE(rpc_dfs, \$(RPC_DFS_OBJ), bin/librpc_netdfs.so, RPC)
3378 SMB_MODULE(rpc_srv, \$(RPC_SVC_OBJ), bin/librpc_srvsvc.so, RPC)
3379 SMB_MODULE(rpc_spoolss, \$(RPC_SPOOLSS_OBJ), bin/librpc_spoolss.so, RPC)
3380 SMB_MODULE(rpc_samr, \$(RPC_SAMR_OBJ), bin/librpc_samr.so, RPC)
3381 SMB_SUBSYSTEM(RPC)
3382
3383 SMB_MODULE(charset_weird, modules/developer.o, bin/developer.so, CHARSET)
3384 SMB_SUBSYSTEM(CHARSET)
3385
3386 SMB_MODULE(auth_rhosts, \$(AUTH_RHOSTS_OBJ), bin/rhosts.so, AUTH)
3387 SMB_MODULE(auth_sam, \$(AUTH_SAM_OBJ), bin/sam.so, AUTH)
3388 SMB_MODULE(auth_unix, \$(AUTH_UNIX_OBJ), bin/unix.so, AUTH)
3389 SMB_MODULE(auth_winbind, \$(AUTH_WINBIND_OBJ), bin/winbind.so, AUTH)
3390 SMB_MODULE(auth_server, \$(AUTH_SERVER_OBJ), bin/server.so, AUTH)
3391 SMB_MODULE(auth_domain, \$(AUTH_DOMAIN_OBJ), bin/domain.so, AUTH)
3392 SMB_MODULE(auth_builtin, \$(AUTH_BUILTIN_OBJ), bin/builtin.so, AUTH)
3393 SMB_SUBSYSTEM(AUTH)
3394
3395 SMB_MODULE(vfs_recycle, \$(VFS_RECYCLE_OBJ), bin/recycle.so, VFS)
3396 SMB_MODULE(vfs_audit, \$(VFS_AUDIT_OBJ), bin/audit.so, VFS)
3397 SMB_MODULE(vfs_extd_audit, \$(VFS_EXTD_AUDIT_OBJ), bin/extd_audit.so, VFS)
3398 SMB_MODULE(vfs_fake_perms, \$(VFS_FAKE_PERMS_OBJ), bin/fake_perms.so, VFS)
3399 SMB_MODULE(vfs_netatalk, \$(VFS_NETATALK), bin/netatalk.so, VFS)
3400 SMB_SUBSYSTEM(VFS)
3401
3402 AC_DEFINE_UNQUOTED(STRING_STATIC_MODULES, "$string_static_modules", [String list of builtin modules])
3403
3404 AC_SUBST(MODULES_CLEAN)
3405
3406 #################################################
3407 # do extra things if we are running insure
3408
3409 if test "${ac_cv_prog_CC}" = "insure"; then
3410         CPPFLAGS="$CPPFLAGS -D__INSURE__"
3411 fi
3412
3413 #################################################
3414 # final configure stuff
3415
3416 AC_MSG_CHECKING([configure summary])
3417 AC_TRY_RUN([#include "${srcdir-.}/tests/summary.c"],
3418            AC_MSG_RESULT(yes),
3419            AC_MSG_ERROR([summary failure. Aborting config]); exit 1;,
3420            AC_MSG_WARN([cannot run when cross-compiling]))
3421
3422 builddir=`pwd`
3423 AC_SUBST(builddir)
3424
3425 dnl Remove -L/usr/lib/? from LDFLAGS and LIBS
3426 LIB_REMOVE_USR_LIB(LDFLAGS)
3427 LIB_REMOVE_USR_LIB(LIBS)
3428
3429 dnl Remove -I/usr/include/? from CFLAGS and CPPFLAGS
3430 CFLAGS_REMOVE_USR_INCLUDE(CFLAGS)
3431 CFLAGS_REMOVE_USR_INCLUDE(CPPFLAGS)
3432
3433 AC_OUTPUT(include/stamp-h Makefile script/findsmb)
3434
3435 #################################################
3436 # Print very concise instructions on building/use
3437 if test "x$enable_dmalloc" = xyes
3438 then
3439         AC_MSG_RESULT([Note: The dmalloc debug library will be included.  To turn it on use])
3440         AC_MSG_RESULT([      \$ eval \`dmalloc samba\`.])
3441 fi