summaryrefslogtreecommitdiff
path: root/source3/configure.in
AgeCommit message (Collapse)AuthorFilesLines
2009-02-09s3 OneFS: Add kernel oplocks implementationTim Prouty1-0/+2
A few functions in oplocks_onefs.c need to be accessed from the onefs vfs module. It would be ideal if oplocks were implemented at the vfs layer, but since they aren't yet, a new header is added to source3/include to make these functions available to the onefs vfs module. oplocks_onefs.o doesn't need to be linked into the onefs vfs module explicitly, since it is already linked into smbd by default.
2009-02-09S3 OneFS: Add in Isilon specific performance counter moduletodd stecher1-1/+3
2009-02-09S3: New module interface for SMB message statistics gatheringtodd stecher1-1/+2
This changelist allows for the addition of custom performance monitoring modules through smb.conf. Entrypoints in the main message processing code have been added to capture the command, subop, ioctl, identity and message size statistics.
2009-02-09look for nanosleep in librt, some Unix flavours have it thereBjörn Jacke1-0/+1
2009-02-06s3-spoolss: prepare to use generated spoolss.Günther Deschner1-3/+3
Guenther
2009-02-04s3-eventlog: remove old eventlog server.Günther Deschner1-2/+2
Guenther
2009-02-03merged-build: force non-shared build for samba4Stefan Metzmacher1-0/+3
This should fix 'make test4'. metze
2009-01-30s3 build: Remove unused fstat check to fix a bunch of HAVE_FSTAT warningsTim Prouty1-1/+1
2009-01-29add configure check for Tru64 sub-second timestamp resolutionBjörn Jacke1-0/+40
2009-01-30s3:build: fix build on AIX - only test for splice on linuxMichael Adam1-0/+7
Michael
2009-01-29add configure check for AIX style sub-second resolution supportBjörn Jacke1-2/+42
2009-01-29rather cosmetic fix for failed birthtime configure checksBjörn Jacke1-3/+3
2009-01-29give configure check "sub-second timestamps without struct timespec" a ↵Björn Jacke1-1/+1
chance to succeed
2009-01-29s3:configure: autodetect ctdb/cluster supportStefan Metzmacher1-4/+115
We need to make sure ctdb has transaction support and we autodetect ipv6 support. metze
2009-01-27Fix detection of dns_sd libraries.Jeremy Allison1-1/+1
Jeremy.
2009-01-27async_req: Fix the S4 buildKai Blin1-1/+1
2009-01-23This change allows for the autoconfigre detection of sub-second time ↵todd stecher1-1/+39
resolution in the FreeBSD stat structure
2009-01-23async_req: Move to top level dirKai Blin1-0/+1
2009-01-22Move configure test files to the top-level and share them between s3 andJelmer Vernooij1-11/+11
s4.
2009-01-21Move check_python.m4 to common m4 directory.Jelmer Vernooij1-1/+1
2009-01-21Automagically expand includes in Makefile.in during configure timeJelmer Vernooij1-1/+17
when make is not GNU Make.
2009-01-21Only check for Perl once in Samba 3.Jelmer Vernooij1-11/+8
2009-01-21Move check_make.m4 to the top-level.Jelmer Vernooij1-1/+1
2009-01-09s3-svcctl: remove last traces of hand-marshalled svcctl code.Günther Deschner1-2/+2
Guenther
2009-01-05s3: build lib/tevent staticly into samba3Stefan Metzmacher1-0/+10
metze
2008-12-17s3-ntsvcs: remove last traces of hand-marshalled NTSVCS.Günther Deschner1-2/+2
Guenther
2008-12-17Compile libluaVolker Lendecke1-0/+1
2008-12-16nsswitch: Move source3 files to top level dir.Kai Blin1-19/+19
Don't move source4 files yet to not confuse git's rename tracking too much.
2008-12-10Also search for -lgpfs which is available as GPL in GPFS PTF8Volker Lendecke1-0/+14
(cherry picked from commit 3c93c96fd0fe362c35fe8127058f94868abc9342) Signed-off-by: Michael Adam <obnox@samba.org>
2008-12-10Revert "Also search for -lgpfs which is available as GPL in GPFS PTF8"Volker Lendecke1-14/+0
This reverts commit 3c93c96fd0fe362c35fe8127058f94868abc9342.
2008-12-10Also search for -lgpfs which is available as GPL in GPFS PTF8Volker Lendecke1-0/+14
2008-12-02Add support for OneFS ACLsSteven Danneman1-0/+4
Add to the OneFS VFS module, support for NTFS ACLs through the calls: SMB_VFS_FGET_NT_ACL() SMB_VFS_GET_NT_ACL() SMB_VFS_FSET_NT_ACL() Also create several new onefs specific smb.conf parameters in onefs.h
2008-12-02Add OneFS VFS module skeleton.Tim Prouty1-0/+15
Also set configure to autodetect OneFS OS and build this VFS module.
2008-12-02configure.in: Fix smbtorture_s3 tests.Kai Blin1-1/+1
Seems like Jeremy forgot to fix configure.in when importing d448132 to master in 8d674e35. Generate the vfs_streams_depot module so make test works again.
2008-11-24Allow SYSLOG_FACILITY to be modified with a new configure option called ↵Dan Sledz1-0/+16
--with-syslog-facility
2008-11-23s3 build: when detecting to use internal zlib, put "-I../lib/zlib" first in ↵Michael Adam1-1/+1
CFLAGS This should fix a build error on our Tru64 build farm box where a zlib.h is found in an include path handed in via external CFLAGS, but that zlib.h belongs to an old zlib. So in ndr_compression.c, "#include <zlib.h>" includes the wrong header for the internal zlib. Michael
2008-11-21FreeBSD configure check for backtrace_symbolsDan Sledz1-0/+2
On FreeBSD backtrace_symbols is defined in libexecinfo.so.1. Look for it there as well.
2008-11-13i18n/l10n pam_winbindBo Yang1-1/+2
Signed-off-by: Günther Deschner <gd@samba.org>
2008-11-12s3: Add support for storing dos attributes as st_flags in the stat struct.Tim Prouty1-0/+19
Some filesystems have support for storing dos attributes directly in the inode's st_flags and accessing them through the stat struct. This patch: - Adds a configure check to see if the special flags are available. - Implements getting and setting dos attributes in the stat struct and inode, respectively. This will not change the existing functionality of any system that doesn't have the special flags available.
2008-11-10Added vfs_acl_tdb.c module to do ACLs completely in userspace. Passes all of ↵Jeremy Allison1-1/+2
RAW-ACLS except for the last test which uses a non-POSIX chown. More testing/documentation to follow. Jeremy.
2008-11-02Samba3: Remove more configure tests already done by libreplace.Jelmer Vernooij1-29/+11
2008-11-01Remove sys_chroot() - libreplace already provides an alternative.Jelmer Vernooij1-1/+1
2008-11-01Remove tests for functions provided by libreplace from configure.Jelmer Vernooij1-3/+3
2008-10-30use glibc sys/inotify.h headerAndrew Tridgell1-1/+1
when we first added the inotify code glibc didn't have the inotify functions yet. Now that it does we can use the official header and avoid the asm/unistd.h syscall workaround
2008-10-27Fix definition of environ on Mac OS X (bugzilla: #5412).Jelmer Vernooij1-1/+2
2008-10-27Remove duplicate check for volatile, move all utime-checks toJelmer Vernooij1-10/+2
libreplace.
2008-10-21Automatically enable merged build (for more complete 'make test') when ↵Jelmer Vernooij1-1/+4
possible during developer builds.
2008-10-19Make sure crypt libs get included.Jelmer Vernooij1-0/+2
2008-10-18Move ufc to libreplace.Jelmer Vernooij1-6/+0
2008-10-18Use common detection function for zlib.Jelmer Vernooij1-25/+3