summaryrefslogtreecommitdiffstats
path: root/source3/configure.in
Commit message (Collapse)AuthorAgeFilesLines
* s3-svcctl: remove last traces of hand-marshalled svcctl code.Günther Deschner2009-01-091-2/+2
| | | | Guenther
* s3: build lib/tevent staticly into samba3Stefan Metzmacher2009-01-051-0/+10
| | | | metze
* s3-ntsvcs: remove last traces of hand-marshalled NTSVCS.Günther Deschner2008-12-171-2/+2
| | | | Guenther
* Compile libluaVolker Lendecke2008-12-171-0/+1
|
* nsswitch: Move source3 files to top level dir.Kai Blin2008-12-161-19/+19
| | | | Don't move source4 files yet to not confuse git's rename tracking too much.
* Also search for -lgpfs which is available as GPL in GPFS PTF8Volker Lendecke2008-12-101-0/+14
| | | | | | (cherry picked from commit 3c93c96fd0fe362c35fe8127058f94868abc9342) Signed-off-by: Michael Adam <obnox@samba.org>
* Revert "Also search for -lgpfs which is available as GPL in GPFS PTF8"Volker Lendecke2008-12-101-14/+0
| | | | This reverts commit 3c93c96fd0fe362c35fe8127058f94868abc9342.
* Also search for -lgpfs which is available as GPL in GPFS PTF8Volker Lendecke2008-12-101-0/+14
|
* Add support for OneFS ACLsSteven Danneman2008-12-021-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
* Add OneFS VFS module skeleton.Tim Prouty2008-12-021-0/+15
| | | | Also set configure to autodetect OneFS OS and build this VFS module.
* configure.in: Fix smbtorture_s3 tests.Kai Blin2008-12-021-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.
* Allow SYSLOG_FACILITY to be modified with a new configure option called ↵Dan Sledz2008-11-241-0/+16
| | | | --with-syslog-facility
* s3 build: when detecting to use internal zlib, put "-I../lib/zlib" first in ↵Michael Adam2008-11-231-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
* FreeBSD configure check for backtrace_symbolsDan Sledz2008-11-211-0/+2
| | | | | On FreeBSD backtrace_symbols is defined in libexecinfo.so.1. Look for it there as well.
* i18n/l10n pam_winbindBo Yang2008-11-131-1/+2
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3: Add support for storing dos attributes as st_flags in the stat struct.Tim Prouty2008-11-121-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.
* Added vfs_acl_tdb.c module to do ACLs completely in userspace. Passes all of ↵Jeremy Allison2008-11-101-1/+2
| | | | | | RAW-ACLS except for the last test which uses a non-POSIX chown. More testing/documentation to follow. Jeremy.
* Samba3: Remove more configure tests already done by libreplace.Jelmer Vernooij2008-11-021-29/+11
|
* Remove sys_chroot() - libreplace already provides an alternative.Jelmer Vernooij2008-11-011-1/+1
|
* Remove tests for functions provided by libreplace from configure.Jelmer Vernooij2008-11-011-3/+3
|
* use glibc sys/inotify.h headerAndrew Tridgell2008-10-301-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
* Fix definition of environ on Mac OS X (bugzilla: #5412).Jelmer Vernooij2008-10-271-1/+2
|
* Remove duplicate check for volatile, move all utime-checks toJelmer Vernooij2008-10-271-10/+2
| | | | libreplace.
* Automatically enable merged build (for more complete 'make test') when ↵Jelmer Vernooij2008-10-211-1/+4
| | | | possible during developer builds.
* Make sure crypt libs get included.Jelmer Vernooij2008-10-191-0/+2
|
* Move ufc to libreplace.Jelmer Vernooij2008-10-181-6/+0
|
* Use common detection function for zlib.Jelmer Vernooij2008-10-181-25/+3
|
* Fix typo.Jelmer Vernooij2008-10-151-1/+1
|
* Build zlib (required for ndr_compression) if it's not pulled in throughJelmer Vernooij2008-10-151-0/+36
| | | | other means.
* Fix merged build .Jelmer Vernooij2008-10-141-1/+1
|
* Give the user a hint about whether a merged build would be possible.Jelmer Vernooij2008-10-141-0/+21
|
* Allow auto-detect if --enable-merged-build was not specified.Jelmer Vernooij2008-10-141-1/+2
|
* Add netlogond auth methodVolker Lendecke2008-10-061-1/+2
| | | | | | This authenticates against a local running samba4 using SamLogonEx. We retrieve the machine password using samba4's mymachinepwd script and store the schannel key for re-use in secrets.tdb.
* Fix bug 5798: "CFLAGS info lost in configure"Volker Lendecke2008-10-021-1/+1
| | | | | | | | Michael, please check and merge to the other branches if it's right. Thanks, Volker
* libgpo: add gpext_security module build to configure.Günther Deschner2008-09-271-0/+1
| | | | Guenther
* SMB traffic analyzer vfs module from Holger Hetterich <hhetter@novell.com>Holger Hetterich2008-09-241-2/+2
| | | | | | | | Used to gather data to feed to a database for live and historical analysis of usage per user, per share, etc. Helper apps to read the data still to come. This one still needs to be made ipv6 enabled (connection is made to the helper app).
* s3:configure: add -L./bin also for the merged buildStefan Metzmacher2008-09-241-0/+4
| | | | metze
* Fix make pch in the merged buildVolker Lendecke2008-09-231-1/+3
|
* idmap_adex: Add new idmap plugin for support RFC2307 enabled AD forests.Gerald (Jerry) Carter2008-09-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The adex idmap/nss_info plugin is an adapation of the Likewise Enterprise plugin with support for OU based cells removed (since the Windows pieces to manage the cells are not available). This plugin supports * The RFC2307 schema for users and groups. * Connections to trusted domains * Global catalog searches * Cross forest trusts * User and group aliases Prerequiste: Add the following attributes to the Partial Attribute Set in global catalog: * uidNumber * uid * gidNumber A basic config using the current trunk code would look like [global] idmap backend = adex idmap uid = 10000 - 19999 idmap gid = 20000 - 29999 idmap config US:backend = adex idmap config US:range = 20000 - 29999 winbind nss info = adex winbind normalize names = yes winbind refresh tickets = yes template homedir = /home/%D/%U template shell = /bin/bash
* Ensure vfs_acl_xattr is built.Jeremy Allison2008-09-171-1/+2
| | | | Jeremy.
* Merge branch 'master' of ssh://git.samba.org/data/git/samba into singlelibJelmer Vernooij2008-09-171-0/+1
|\
| * idmap_hash: Add the idmap/nss-info provider from Likewise Open.Gerald (Jerry) Carter2008-09-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Port the Likewise Open idmap/nss_info provider (renamed to idmap_hash). * uids & gids are generated based on a hashing algorithm that collapse the Domain SID to a 31 bit number. The reverse mapping from the high order 11 bits to the originat8ing sdomain SID is stored in a has table initialized at start up. * Includes support for "idmap_hash:name_map = <filename>" for the name aliasing layer. The name map file consist of entries in the form "alias = DOMAIN\name"
* | Move common libraries from root to lib/.Jelmer Vernooij2008-09-171-7/+7
| |
* | Merge branch 'singlepopt' into singleJelmer Vernooij2008-09-161-2/+2
|\ \ | | | | | | | | | | | | Conflicts: source4/Makefile
| * | Use a single copy of popt in samba3 and samba4.Jelmer Vernooij2008-09-161-2/+2
| |/
* | Merge branch 'singlensswrap' into singleJelmer Vernooij2008-09-161-1/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: source3/configure.in source4/Makefile source4/configure.ac source4/lib/nss_wrapper/nss_wrapper.c source4/lib/replace/system/passwd.h source4/main.mk
| * | Use single cope of nss_wrapper in Samba 3 and Samba 4.Jelmer Vernooij2008-09-161-1/+1
| |/
* | Merge branch 'singlesw' into singleJelmer Vernooij2008-09-161-1/+1
|\ \ | | | | | | | | | | | | | | | Conflicts: source3/lib/socket_wrapper/socket_wrapper.c source4/lib/replace/system/network.h
| * | Use single copy of socket_wrapper in Samba 3 and Samba 4.Jelmer Vernooij2008-09-161-1/+1
| |/
* | Merge branch 'singlereplace' into singleJelmer Vernooij2008-09-161-1/+1
|\ \ | | | | | | | | | | | | | | | Conflicts: source4/configure.ac source4/torture/local/config.mk