summaryrefslogtreecommitdiffstats
path: root/source/include/includes.h
Commit message (Collapse)AuthorAgeFilesLines
* r6651: It's not the smartest thing in the world to #define _SAMBA_BUILD_ in ↵Volker Lendecke2005-05-071-1/+0
| | | | | | | | | | a file that is only included if _SAMBA_BUILD_ is defined... Let's see how far this gets us. Volker
* r6639: Attempt to fix the build with tallocVolker Lendecke2005-05-071-0/+1
| | | | Volker
* r6570: Add socket_wrapper library to 3.0. Can be enabled by passingJelmer Vernooij2005-05-021-1/+5
| | | | --enable-socket-wrapper to configure
* r6318: don't include smbwrapper stuff unless asked forHerb Lewis2005-04-121-0/+2
|
* r6266: Add includes for sys/extattr.h and sys/uio.h for FreeBSD xattr code.Jeremy Allison2005-04-101-0/+8
| | | | Jeremy.
* r6149: Fixes bugs #2498 and 2484.Derrell Lipman2005-03-311-0/+3
| | | | | | | | | | | | | | | | | | 1. using smbc_getxattr() et al, one may now request all access control entities in the ACL without getting all other NT attributes. 2. added the ability to exclude specified attributes from the result set provided by smbc_getxattr() et al, when requesting all attributes, all NT attributes, or all DOS attributes. 3. eliminated all compiler warnings, including when --enable-developer compiler flags are in use. removed -Wcast-qual flag from list, as that is specifically to force warnings in the case of casting away qualifiers. Note: In the process of eliminating compiler warnings, a few nasties were discovered. In the file libads/sasl.c, PRIVATE kerberos interfaces are being used; and in libsmb/clikrb5.c, both PRIAVE and DEPRECATED kerberos interfaces are being used. Someone who knows kerberos should look at these and determine if there is an alternate method of accomplishing the task.
* r5517: code cleanup; rename the sorted_tree to pathtree (used by registry code) Gerald Carter2005-02-231-1/+0
| | | | | | I was going to use this for tracking dfs mounts in smbclient but found another way. Still the cleanup is valid so commiting it. should be minimally disruptive since it is not widely used.
* r4724: Add support for Windows privileges in Samba 3.0Gerald Carter2005-01-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | (based on Simo's code in trunk). Rewritten with the following changes: * privilege set is based on a 32-bit mask instead of strings (plans are to extend this to a 64 or 128-bit mask before the next 3.0.11preX release). * Remove the privilege code from the passdb API (replication to come later) * Only support the minimum amount of privileges that make sense. * Rewrite the domain join checks to use the SeMachineAccountPrivilege instead of the 'is a member of "Domain Admins"?' check that started all this. Still todo: * Utilize the SePrintOperatorPrivilege in addition to the 'printer admin' parameter * Utilize the SeAddUserPrivilege for adding users and groups * Fix some of the hard coded _lsa_*() calls * Start work on enough of SAM replication to get privileges from one Samba DC to another. * Come up with some management tool for manipultaing privileges instead of user manager since it is buggy when run on a 2k client (haven't tried xp). Works ok on NT4.
* r4268: Merge fix for bugzilla #2150.Tim Potter2004-12-191-9/+0
|
* r3772: BUG 2006: patch from Michel Gravey <michel.gravey@optogone.com>; fix ↵Gerald Carter2004-11-151-1/+1
| | | | build when using gcc 3.0
* r3538: Fix the build with the latest Heimdal code.Jeremy Allison2004-11-051-6/+2
| | | | Jeremy.
* r3495: Fix the build (recent kerberos-changes).Günther Deschner2004-11-031-1/+3
| | | | Guenther
* r3438: fix some kerberos-related prototype warningsGünther Deschner2004-11-011-0/+3
| | | | Guenther
* r2835: Since we always have -I. and -I$(srcdir) in CFLAGS, we can get rid of Tim Potter2004-10-071-3/+3
| | | | | '..' from all #include preprocessor commands. This fixes bugzilla #1880 where OpenVMS gets confused about the '.' characters.
* r2364: Include yp_prot.h before ypclnt.h as AIX 5.2 spits the dummy otherwise.Tim Potter2004-09-161-3/+3
| | | | Bugzilla #1778.
* r2248: Merge of tridge's PRINTF_ATTRIBUTE fixes from samba4.Tim Potter2004-09-081-2/+3
|
* r2246: Some good fixes for HPUX from JBravo on #samba-technical:Tim Potter2004-09-071-0/+39
| | | | | | | | | | | - Fix linker options so that stuff actually builds (oops - part of this commit was accidentally made in -r2245) - Add some preprocessor magic to avoid warnings being printed for every single C file being compiled. This was due to a bug in the HPUX system header files. This should make the HPUX build farm machine build again.
* r2133: Several fixes:Gerald Carter2004-08-311-3/+3
| | | | | | | | | | | | | | | | | | | * BUG 1627: fix for NIS compiles on HPUX 11.00, AIX 4.3 and 5.1 patch from Olaf Flebbe <o.flebbe@science-computing.de>. Will need to watch this one in the build farm. * Fix bug found by rwf@loonybin.net where the PRINT_ATTRIBUTE_PUBLISHED was getting reset by attempts to sanitize the defined attributes (PRINTER_ATTRIBUTE_SAMBA) * Resolve name conflict on DEC OSF-5.1 (inspired by patch from Adharsh Praveen <rprav@india.hp.com>) * Work around parsing error in the print change notify code (not that the alignment bug is still there but reording the entries in the array works around it). * remove duplicate declaration of getprintprocdir from rpcclient.
* r2026: Simplify statcache to use an in-memory tdb. Modify tdb to useJeremy Allison2004-08-241-1/+0
| | | | | | a customer hash function for this tdb (yes it does make a difference on benchmarks). Remove the no longer used hash.c code. Jeremy.
* r1721: Get rid of compiler-warning.Günther Deschner2004-08-111-0/+1
| | | | Guenther
* r1500: BUG 1516: manually declare ldap_open_with_timeout() to workaround ↵Gerald Carter2004-07-141-0/+9
| | | | compiler errors on IRIX
* r1195: Ensure libsmb/clikrb5.c compiles.Jeremy Allison2004-06-191-2/+2
| | | | Jeremy.
* r1193: Ensure we check for and use krb5_free_unparsed_name().Jeremy Allison2004-06-191-0/+4
| | | | Jeremy.
* r1111: Rename vsnprintf to smb_vsnprintf so we don't get duplicate symbol ↵Jelmer Vernooij2004-06-101-0/+1
| | | | | | errors when linking against an app that does have vsnprintf() (bug #478)
* r4: merge in the SAMBA_3_0 branch from cvsCVS Import User2004-04-041-7/+2
| | | | | | | | to checkout try this: svn co svn+ssh://svn.samba.org/home/svn/samba/branches/SAMBA_3_0 samba-3_0-work metze
* r2: import HEAD into svn+ssh://svn.samba.org/home/svn/samba/trunkCVS Import User2004-04-041-0/+1333
metze