summaryrefslogtreecommitdiff
path: root/source3/configure.in
AgeCommit message (Collapse)AuthorFilesLines
2008-08-27Add st_birthtime and friends for accurate create times on systems that ↵Jeremy Allison1-0/+90
support it (*BSD and MacOSX). Should have done this ages ago, sorry. Jeremy. (This used to be commit 4c3a9558906f213948c3bdc081be73f8fed148cb)
2008-08-26Avoid a race condition in glibc between AIO and setresuid().Andrew Tridgell1-11/+13
See this test: http://samba.org/~tridge/junkcode/aio_uid.c The problem is that setresuid() tries to be clever about threads, and tries to change the euid of any threads that are running. If a AIO read or write completes while this is going on then the signal from the thread where the IO completed is lost, as it gets -1/EPERM from rt_sigqueueinfo() The simplest fix is to try to use setreuid() instead of setresuid(), as setreuid() doesn't try to be clever. Unfortunately this also means we must use become_root()/unbecome_root() in the aio code. (This used to be commit 56c5a6f024875bb79b0104beb36f6b0ec1e1e9f9)
2008-08-21cifs.upcall: enable building by default on linuxJeff Layton1-4/+19
When building on linux, default to building cifs.upcall. Throw a warning if ADS support is disabled or keyutils isn't installed. Signed-off-by: Jeff Layton <jlayton@redhat.com> (This used to be commit d8018d15f013b8d7be8618b75dac5112711193b7)
2008-08-21libsmbclient examples: add Makefile.internal.in for building from a samba sourceMichael Adam1-0/+1
Without needing to install libsmbclient to /usr/local/samba first. Michael (This used to be commit f0e47bce2e98131812e96fb88cc3d1fe939e8d6c)
2008-08-14Revert "Add a gpfs_prefetch module"Michael Adam1-2/+1
This reverts commit fc9b30bed2d774dca6660b497cb50f982b23b885. Sorry, this got pushed by accident: "This can not go upstream yet because it uses the non-GPL libgpfs." Michael (This used to be commit 26a3cf0be918fe577a979f3e358d58359e42b2f1)
2008-08-13Add a gpfs_prefetch moduleVolker Lendecke1-1/+2
This can not go upstream yet because it uses the non-GPL libgpfs. So it will not be compiled by default and will not be included in the SOFS RPMs. But upon Sven's request, we include it in the git tree and the source RPMs, so that it can be built for in-house tests. (This used to be commit fc9b30bed2d774dca6660b497cb50f982b23b885)
2008-08-11netapi: generate the netapi testsuite makefile.Günther Deschner1-0/+1
Guenther (This used to be commit a2247a5b19237291cec8c6a873652d78d55aaeb7)
2008-08-08Try and fix the build for systems that don't have ↵Jeremy Allison1-0/+1
krb5_auth_con_set_req_cksumtype(). Jeremy. (This used to be commit 8598e7b06ec57ca6fcde863270e6bb0e2de9993e)
2008-08-08Add Derrick Schommer's <dschommer@F5.com> kerberos delegation patch. SomeJeremy Allison1-0/+1
work by me and advice by Love. Jeremy. (This used to be commit ecc3838e4cb5d0c0769ec6d9a34a877ca584ffcc)
2008-07-22Check for f_frsize when using statvfsZach Loafman1-1/+12
Add a configure test for the availability of f_frsize in struct statvfs (for broken platforms that define statvfs but still have f_bsize/f_iosize). Also add sys/types.h to the other struct statvfs test (again, some platforms need it). (This used to be commit 591bf1d15ff3b93db908cc3a4b6e10d09e5b74b6)
2008-07-22Add --enable-picky-developerZach Loafman1-1/+5
This adds an --enable-picky-developer option that will halt compilation on warnings. Yes, this could be handled by a direct Makefile change, but people should be encourage to do it! (This used to be commit 10a2ab40771b7d0222f339a87a45630a23ce4788)
2008-07-16This patchset comprises a number of cleanups for the cifs upcallJeremy Allison1-16/+16
binary. The biggest change is that it renames it from cifs.spnego to cifs.upcall since the cifs.spnego name really isn't applicable anymore. It also fixes a segfault when the program is run without any args and adds a manpage. Comments and/or suggestions appreciated. This set should apply cleanly to the 3.3 test branch. Signed-off-by: Jeff Layton <jlayton@redhat.com> Jeremy. (This used to be commit c633f10d9e78327664e6bca51f66756bcf0505a6)
2008-07-10Fix realpath() check so that it doesn't generate a core() when it fails.Zach Loafman1-2/+10
(This used to be commit 5fdbf89c898efff57c65061ea2c360d2cd91bcec)
2008-07-07build: remove library-versions.in - it is not used any more.Michael Adam1-1/+1
Michael (This used to be commit e2699b7f86302e5c770f8e3160f72f070d700b6c)
2008-07-07build: set SONAME version of libraries from configure, not using ↵Michael Adam1-6/+15
library-versions This sets the library versions (previously gotten from library-versions file during make) already at configure time. For library "foo", the version is stored in the LIBFOO_SOVER configure variable. For all libraries except libwbclient, this is done through the call of SMB_LIBRARY(). NOTE: Currently the versions are hard-coded in the SMB_LIBRARY() calls in configure.in, but this change makes it easier to retrieve the version from the libraries source dir at configure time, e.g. for talloc and tdb. Michael (This used to be commit 3c300f9f8cffb5af32e291ec75007ab98fe96561)
2008-07-07build: handle libaddns by SMB_LIBRARY() and correctly create SONAME file.Michael Adam1-37/+1
Create .so file as a symlink. Michael (This used to be commit bbf665ad5790e89ff01867e2762fe2b94db7277d)
2008-07-07build: handle libsmbsharemodes by SMB_LIBRARY() and correctly create SONAME ↵Michael Adam1-47/+1
file. Create libsmbsharemodes.so as a symlink. Michael (This used to be commit 1157048146084e9ab34d7c2e77e8d00b22df53a4)
2008-07-07build: handle libsmbclient by SMB_LIBRARY() and correctly create soname file.Michael Adam1-50/+3
Create libsmbclient.so as a symlink to libsmbclient.so.0. Michael (This used to be commit c463bd0cb9927176eec89e25788c6ea78eafdd16)
2008-06-27Revert "build: add symbol versioning when we build with gnu ld"Karolin Seeger1-17/+0
This reverts commit cb5492978b6b157f529806afb2f5fc6202888129. For more information, please have a look at the discussion on samba-technical starting with [1]. [1] http://lists.samba.org/archive/samba-technical/2008-June/059511.html Karolin (cherry picked from commit 1e5aeb96f92fef8056ec9010e125f4d0d31dd90e) (This used to be commit d06baf0e744d779b836783f61ec97d3a6d380eb5)
2008-06-17Without stdlib.h we don't get a prototype for free().Andrew Bartlett1-0/+1
This test fails if GCC emits any warnings (presumably to detect the function propertly), but unless we include this message then free() fail. Why we need to call free in a configure test is probably something to blame on valgrind... Andrew Bartlett (This used to be commit d013f6fadc3e80fabb4a1784207dabc84f9b7dc2)
2008-06-14Use the correct cups-devel test for HAVE_IPRINT alsoVolker Lendecke1-1/+2
(This used to be commit a42d7e1146e7469062ead2c8f22f549a48154e03)
2008-06-14Correctly check for presence of cups-develVolker Lendecke1-1/+15
On SuSE at least cups-config belongs to cups-libs which does not contain the headers which are in cups-devel. (This used to be commit 2408d2493f7c6e0beee58febd547516bbeb0929d)
2008-06-12Add -brtl to the AIX linker flagsVolker Lendecke1-1/+3
Thanks to William Jojo (cherry picked from commit 74b195b54416d9e3eb46079a71eed31a15c7293a) (This used to be commit 5ffad12d68288eca4756519ec7ab90995a277517)
2008-06-09configure: we require autoconf 2.54Stefan Metzmacher1-2/+2
I've tested with autoconf from 2.53 to 2.62. metze (This used to be commit a268a6d251e58c27262e11fcd85b8281dfaddd8b)
2008-06-09configure: fix warnings with autoconf-2.62 rename SMB_BUILD_ => samba_cv_Stefan Metzmacher1-3/+3
AC_CACHE_VAL() variables must contain _cv_ to be cached. metze (This used to be commit 89663ab4d10586b96807c56de53fd60d2488093c)
2008-06-09configure: fix warnings with autoconf-2.62 rename samba_stat_hires => ↵Stefan Metzmacher1-6/+6
samba_cv_stat_hires AC_CACHE_VAL() variables must contain _cv_ to be cached. metze (This used to be commit 426b1e36e262ae47ea62e36e1df8a76c930394bc)
2008-06-09configure: fix warnings with autoconf-2.62 rename smb_krb5_ => smb_krb5_cv_Stefan Metzmacher1-21/+21
AC_CACHE_VAL() variables must contain _cv_ to be cached. metze (This used to be commit 38a03d61ecd35a70905b895b839a994e974cbaf1)
2008-05-23build: make sure LIBWBCLIENT_*_TARGET is never emptyStefan Metzmacher1-4/+4
This should fix the build with non gnu make metze (cherry picked from commit 401a0c84fe5f60e57e95331805da6b53dd1d7c2e) (This used to be commit 36ba31e39b28e5495b0aeb8638df3a10ce6c51e6)
2008-05-23build: add symbol versioning when we build with gnu ldStefan Metzmacher1-0/+17
There's --enable-symbol-versioning=no to disable it. metze (cherry picked from commit cb5492978b6b157f529806afb2f5fc6202888129) (This used to be commit a739652d94300881479262648592223536fc8eec)
2008-05-23build: autogenerate exports/libwbclient.symsStefan Metzmacher1-0/+4
metze (cherry picked from commit 8e0fcd583a643a8f4240698efcbb177463534a82) (This used to be commit 17ce13775423efffd8ddfb967e1e09b2f41849af)
2008-05-23build: pass .syms extention via @SYMSEXT@ from configureStefan Metzmacher1-0/+4
metze (cherry picked from commit efb23fdce72db48b4c149fb3dd4a6f4aa3eebbbe) (This used to be commit 3bf5a047e3d478b3356df7aa5c4f4a9d0b763639)
2008-05-22configure: samba_cv_unixsocket was renamed into libreplace_cv_HAVE_UNIXSOCKETStefan Metzmacher1-1/+1
metze (This used to be commit d53b589debdb95d3ae46e6b45c6951f522ccc5a1)
2008-05-22configure: remove HAVE_IPV6 test as LIBREPLACE_NETWORK_CHECKS already have thisStefan Metzmacher1-23/+0
metze (This used to be commit e94ff756be627b40c433cb53547007a5c219cc9e)
2008-05-20net: Split out "net afs"Kai Blin1-0/+3
(This used to be commit 3f10527f79dddff703d31588cad3e9f37176565b)
2008-05-18configure: Fix comment to match the current iconv check.Kai Blin1-1/+5
(This used to be commit 5d9963479fa31783522d68cdbc8876613a3d1774)
2008-05-17configure: make use of LIBREPLACE_NETWORK_LIBS instead of redoing the testsStefan Metzmacher1-37/+3
metze (This used to be commit 6b782b58971cbbe56ead5d7e8db6eb8c3526e8ee)
2008-05-17configure: remove some header checks which are already done by ↵Stefan Metzmacher1-4/+3
AC_LIBREPLACE_NETWORK_CHECKS metze (This used to be commit d81e58597e0ecdcf1ce6d8d71071fbf5d50670c2)
2008-05-17configure: remove unused configure checks for HAVE_SOCK_SIN_LEN and ↵Stefan Metzmacher1-28/+0
HAVE_UNIXSOCKET and rely on libreplace metze (This used to be commit ca163ff81a3f5d8303d45baa048850dfbc72a6a8)
2008-05-17configure: remove unused configure check for HAVE_WORKING_AF_LOCALStefan Metzmacher1-10/+0
metze (This used to be commit dddc4f0cef8ea71783fa7f7b68ec9ad3f29f7add)
2008-05-16libreplace: use AC_LIBREPLACE_NETWORK_CHECKS only for sambaStefan Metzmacher1-0/+1
metze (This used to be commit 0c9b24e1e75c5c10d3f3baafb80c5c27bb7e4c78)
2008-05-14configure: Kill linker warnings about 32bit libs on 64bit Linux.Kai Blin1-1/+1
(This used to be commit 9a40cbd66f71c49af4c72ed826d66c5f037a3171)
2008-05-06Enable tests for splice on Linux. Add a static (vl, I hate this)Jeremy Allison1-0/+20
so we can detect broken Linux recvfile splice and correctly fall back. Jeremy. (This used to be commit ec2d301a7aac173aba41dd2074037f27d05095ce)
2008-04-30pam_winbind: Fix Bug #5430 (patch from fumiyas@osstech.co.jp).Günther Deschner1-0/+2
Guenther (This used to be commit d8372f73b93d3f323310f5456fef204884c303bb)
2008-04-22configure: fix a comment typoMichael Adam1-1/+1
Michael (This used to be commit af2a1f15e6d45139ba62e334a3529d407430e6bd)
2008-04-16add AC_TRY_RUN_STRICT support for Sun Studio compilerBjörn Jacke1-0/+12
(This used to be commit ce7025df2958dac284ec9e5ce47ab172c3aa2567)
2008-04-16Fix out of tree build. Remove the embedded srcdir path from talloc and tdb.Gerald W. Carter1-2/+2
(This used to be commit 359921acd436684a0b4cf76ba15f82a224d2c337)
2008-04-13gpo: add scripts plugin.Günther Deschner1-0/+1
Guenther (This used to be commit cd6388f04041a667bf0909d81e8af5f7b3bdc4af)
2008-04-12libnetapi: fix dependency problem by linking libnetapi statically (internally)Michael Adam1-0/+7
This is a workaround until we have isolated enough internal libraries as shared libraries. Michael (This used to be commit 8a87e402701494ba1c9d56a9febe3e5c25dc2bf7)
2008-04-01configure: be more portable, use 'printf "%s"' instead of "echo -n"Michael Adam1-1/+1
Michael (This used to be commit 06dfb0cf7cd39e1072534fc32e79a4b4f6e49cb6)
2008-03-24Fix libtdb some to move back towards allowing out of tree buildsGerald (Jerry) Carter1-1/+1
Remaining problem is that not all *.syms linker scripts are generated so the LD command needs to look in a single place. Out of tree builds now work but report write access to the source tree in order to create the $(srcdir)/expotrs/libtdb.sysms file. (This used to be commit 6e9287c5c3a6bbd15ec495593978c1a76e64ee60)