Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-10-01 | s3:configure: don't throw away PRINT_LIBS | Björn Jacke | 1 | -1/+1 | |
PRINT_LIBS might have been set before intentionally, so don't thow it away. | |||||
2009-09-29 | s3: Remove the lua interpreter again | Volker Lendecke | 1 | -41/+0 | |
This was meant to support async winbind. But as the hairy parts of async winbind (getgrent) are done without it, it can go again. | |||||
2009-09-17 | s3: build with pam support when possible | Björn Jacke | 1 | -3/+3 | |
2009-09-15 | s3: ignore cups-config to tidy up library dependencies | Björn Jacke | 1 | -1/+1 | |
contrary to krb5-config for example, which outputs useful things, cups-config --libs does not output libs we have to link against. It outputs libs that cups linked against. We just have to link against cups. | |||||
2009-09-15 | s3: BSD needs sys/sysctl.h included to build properly | Björn Jacke | 1 | -1/+1 | |
FreeBSD (and other BSDs, too) need sys/sysctl.h inclueded to use sysctlbyname(). Thanks to Timur Bakeyev for that. | |||||
2009-09-02 | Do not redefine strupr | Matt Kraai | 1 | -0/+1 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2009-08-30 | s3: Fix libtalloc so version | Simo Sorce | 1 | -1/+1 | |
2009-08-28 | s3: Add catia to the list of modules compiled by default | Aravind Srinivasan | 1 | -1/+1 | |
Signed-off-by: Tim Prouty <tprouty@samba.org> | |||||
2009-08-24 | LIBREPLACEOBJ now contains the full path | Andrew Tridgell | 1 | -4/+1 | |
2009-08-24 | s3:configure: require talloc >= 2.0.0 | Stefan Metzmacher | 1 | -1/+1 | |
metze | |||||
2009-08-12 | Fix EVERY SINGLE build on the buildfarm that doesn't have | Jeremy Allison | 1 | -0/+1 | |
bindtextdomain or textdomain. C'mon, this is what configure.in is *FOR*. Jeremy. | |||||
2009-07-05 | s3:configure: honor CFLAGS in compile tests | Björn Jacke | 1 | -10/+10 | |
When compilation is done for the architecture that's not the compiler's default, for example by setting CFLAGS to -m64, then compile tests might fail when they are done with the comiler's default arch. This should fix bugzilla #6162. | |||||
2009-07-03 | Restore ABI compatibility for talloc. | Simo Sorce | 1 | -1/+1 | |
2009-07-03 | s3:configure: fix syntax error in avahi configure test | Björn Jacke | 1 | -1/+1 | |
2009-07-03 | s3:configure: define _LARGEFILE64_SOURCE on QNX | Matt Kraai | 1 | -0/+4 | |
2009-07-02 | change talloc to 2.0.0 | Andrew Tridgell | 1 | -1/+1 | |
This is needed to prevent samba3 and samba4 from using an ABI incompatible system version of talloc See ongoing discussion on the samba-technical mailing list | |||||
2009-06-30 | umount.cifs: don't build it by default | Jeff Layton | 1 | -6/+37 | |
Now that the sanity checks for mount.cifs default to matching the behavior of /bin/mount, then there is virtually no need for umount.cifs. The only exception is when someone enables the loose setuid behavior in mount.cifs. If an unprivileged user mounts a share that isn't in /etc/fstab, then /bin/mount won't allow that user to unmount it. In that situation, umount.cifs will be necessary to allow unmounting the share. Signed-off-by: Jeff Layton <jlayton@samba.org> Acked-by: Steve French <smfrench@us.ibm.com> | |||||
2009-06-29 | s3:build: check for external liblua, link lua statically if using internal lib | Michael Adam | 1 | -1/+41 | |
So liblua is treated the same way as libtalloc and libtdb. Michael | |||||
2009-06-26 | The solaris linker seems to require an extra mention of dependent libs | Volker Lendecke | 1 | -3/+8 | |
2009-06-19 | s3:build: build talloctort only when using the internal liballoc | Michael Adam | 1 | -0/+3 | |
Fixes the build with the external libtalloc. And is the reasonable thing to do anyways. Michael | |||||
2009-06-19 | s3:build: build the tdb tools only when using the internal libtdb | Michael Adam | 1 | -0/+9 | |
This fixes the build when internal libtdb is used. Michael | |||||
2009-06-19 | s3:build: check for availability of external libtdb and use it if available | Michael Adam | 1 | -18/+34 | |
Link internal libtalloc statiaclly if extenal libtalloc is not found or does not have appropriate version. Michael | |||||
2009-06-19 | s3:build: link libtalloc statically if using internal libtalloc | Michael Adam | 1 | -0/+1 | |
Michael | |||||
2009-06-11 | Fix build with external talloc. | Jelmer Vernooij | 1 | -28/+27 | |
2009-06-08 | Check for dmalloc at the end of the configure | Timur I. Bakeyev | 1 | -10/+10 | |
Enabling dmalloc in Samba3 build leads to the wrong detection of the strndup() function - there isn't one in FreeBSD prior to 7.2, but dmalloc defines it, so, farther tests with -ldmalloc added wrongly find it. the cheapest fix is to move dmalloc detection and inclusion to the bottom of configure, so it can't affect detection of the system capabilities. Here is the patch. With regards, Timur Bakeyev. Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2009-06-06 | Add an early prototyp of pdb_ads.c. | Volker Lendecke | 1 | -1/+2 | |
The purpose of this module is to connect to a locally running samba4 ldap server for an alternative "Franky" setup. Right now it contains a couple of gross hacks: For example it just takes the s4-chosed RID directly as uid/gid... Checking in tldap and pdb_ads now, I think 3777 insertions are enough for a start... | |||||
2009-05-26 | Attempt to fix the build on HP/UX | Volker Lendecke | 1 | -0/+2 | |
2009-05-20 | Do not do a merged build without shared libs | Volker Lendecke | 1 | -0/+1 | |
Jelmer, you might want to take a look at Andrew B's problem with --enable-developer --disable-shared --disable-shared-libs | |||||
2009-05-20 | Only build the krb5 locator when building shared libs | Volker Lendecke | 1 | -1/+3 | |
2009-05-19 | Another attempt at fixing the static build of vfs_notify_fam | Volker Lendecke | 1 | -5/+6 | |
2009-05-19 | Fix detection of "enum FAMCodes" | Volker Lendecke | 1 | -1/+1 | |
2009-05-16 | Fix static linking of vfs_notify_fam | Volker Lendecke | 1 | -0/+5 | |
2009-05-12 | s3:build: extend the support fo Debian GNU/kFooBar to kOpenSolaris | Michael Adam | 1 | -5/+5 | |
As suggested by Robert Millan. Michael | |||||
2009-05-12 | s3:build: support non-linux gnu ports | Michael Adam | 1 | -4/+16 | |
This is based on a patch by the debian package maintainers, adapted for the merged branch. Michael | |||||
2009-05-08 | Fix bug #6330 - DFS doesn't work on AIX. Jeremy. | Jeremy Allison | 1 | -0/+10 | |
2009-05-08 | s3:configure: "test" only takes one "=" | Björn Jacke | 1 | -1/+1 | |
2009-05-03 | Fix bug 6136: New AFS syscall conventions | Geza Gemes | 1 | -2/+3 | |
Haven't checked this myself, but as I've already got several reports that Samba won't compile against current OpenAFS anymore, I just believe Geza Gemes. This patch only affects AFS code, so it should not hurt anything else. Volker | |||||
2009-05-02 | Explicitly link in pthreads for lib/pthreadpool if required | Volker Lendecke | 1 | -0/+3 | |
No idea why it works on my Linux without -lpthread ... :-) | |||||
2009-05-01 | Add thread pool | Volker Lendecke | 1 | -1/+14 | |
Included if pthreads are found, can be disabled with --enable-pthreadpool=no Tim, Steven, I haven't yet seen comments from you. You have been asking for such a thing at SambaXP. Do you like this? :-) | |||||
2009-04-22 | ѕ3/configure: fix regexp for ld version recognition | Björn Jacke | 1 | -1/+1 | |
Signed-off-by: Jelmer Vernooij <jelmer@samba.org> | |||||
2009-04-20 | Move syslog check out of m4 library file into configure.in | Jelmer Vernooij | 1 | -0/+1 | |
2009-04-01 | Print an error if trying a merged build without a system kerberos lib | Volker Lendecke | 1 | -0/+9 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2009-04-01 | s3:build: rename WINBIND_LIBS -> LIBWBCLIENT_LIBS for unification | Michael Adam | 1 | -5/+5 | |
Michael | |||||
2009-04-01 | s3:build: unify linking of libwbclient with a @LIBWBCLIENT_TARGET@ | Michael Adam | 1 | -0/+4 | |
just like for the libs configured with SMB_LIBRARY(). This makes @LIBWBCLIENT_STATIC@ vanish from the object collections. Michael | |||||
2009-03-30 | s3/cups: add encryption support | Björn Jacke | 1 | -0/+1 | |
2009-03-23 | Use avahi to register _smb._tcp in smbd | Volker Lendecke | 1 | -1/+1 | |
2009-03-23 | Add tevent avahi binding | Volker Lendecke | 1 | -1/+1 | |
2009-03-23 | Add avahi detection to configure | Volker Lendecke | 1 | -0/+36 | |
2009-03-23 | Disable dns_sd by default | Volker Lendecke | 1 | -2/+2 | |
2009-03-23 | s3:build: prevent from setting "-O -g", check for $debug first. | Michael Adam | 1 | -3/+3 | |
This makes configure actually behave as the comments describe. The reversal of order was introduced by mistake in 90ea8ae9b1ed3b7ed1c93076517e026e629ea1aa Michael |