summaryrefslogtreecommitdiffstats
path: root/source3/m4/check_path.m4
Commit message (Collapse)AuthorAgeFilesLines
* s3:configure: use the same dynconfig options and default values as the ↵Stefan Metzmacher2011-07-131-302/+1
| | | | | | toplevel build metze
* s3:configure: remove unused --with-rootsbindir configure optionStefan Metzmacher2011-06-241-18/+0
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Fri Jun 24 23:57:20 CEST 2011 on sn-devel-104
* s3-autconf Move nmbd socket directory to PREFIX/var/nmbdAndrew Bartlett2011-06-241-2/+2
| | | | | | | | | | | | | | | This is consistent with the new ncalrpc socket directory, also added in this release. Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org> The last 2 patches address bug #8230 (Move .nmbd socket directory to non-hidden name PREFIX/var/nmbd). (cherry picked from commit 833fdb5b3693a7c9111bb98e5bc9a29d29be9d1d) Signed-off-by: Stefan Metzmacher <metze@samba.org>
* s3: Make nmbd socket dir configurableVolker Lendecke2011-01-071-0/+18
| | | | | Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Fri Jan 7 14:14:19 CET 2011 on sn-devel-104
* s3: Fix typo found by jhell <jhell@DataIX.net>Volker Lendecke2010-02-131-2/+2
|
* build: use AS_HELP_STRING() for --with-localedirMichael Adam2009-09-231-1/+1
| | | | Michael
* build: add switch "--with-codepagedir=DIR" to configure.Michael Adam2009-09-231-0/+16
| | | | | | This is to address bug #6444. Michael
* s3:build: pass the path to smbtorture4 down to make with and without '-t' prefixStefan Metzmacher2009-02-031-1/+3
| | | | metze
* s3:configure: autodetect ctdb/cluster supportStefan Metzmacher2009-01-291-14/+0
| | | | | | | We need to make sure ctdb has transaction support and we autodetect ipv6 support. metze
* s3 build: Eliminate the gmake-specific Makefile syntaxTim Prouty2009-01-271-1/+3
|
* s3 make test: Add the ability to specify a custom smb.conf for make testTim Prouty2009-01-261-0/+19
| | | | | | | | | | - Adds new -c <custom conf> option to selftest.sh that when specified adds a line to make test's server.conf: "include <custom conf>" - Adds getopts processing to selftest.sh - Changes selftest.sh shrdir arg to use -s <shrdir> - Changes selftest.sh smbtorture4_path arg to use -t <smbtortur4 path> - Adds configure option --with-selftest-custom-conf=<custom conf> - Updates Makefile.in to take advantage of the new/changed parameters
* Make STATEDIR and CACHEDIR configurable through ./configure and loadparm.cSteven Danneman2009-01-121-0/+32
| | | | | | If they are not explicitely set in either place both will default to LOCKDIR. Signed-off-by: Michael Adam <obnox@samba.org>
* i18n/l10n pam_winbindBo Yang2008-11-131-0/+19
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3: Add support for make test to use a share dir outside of the prefix dirTim Prouty2008-11-111-0/+16
| | | | | | | | | | | | | Some systems need to have the tdbs (and other files required for samba to run) on a different filesystem than the share directory that samba is exporting. This patch: - Adds an optional "shrdir" argument to selftest.sh - If shrdir is specified it will be used, otherwise the default will be used: "<prefix>/tmp" - Adds a new configure option: --with-selftest-shrdir - Plumbs shrdir through Makefile.in and configure.in
* Correctly report when merged-build is used in developer mode.Jelmer Vernooij2008-10-211-0/+1
|
* Add dyn_NCALRPCDIRVolker Lendecke2008-10-061-0/+19
|
* configure: use libdir=${prefix}/lib and modules=${libdir}/samba as default ↵Michael Adam2008-08-151-2/+2
| | | | | | | | | | with-fhs. This is what one actually wants: Shared/static libs in /usr/lib, shared modules and so on in /usr/lib/samba. Michael (This used to be commit 03de8c1955a85f2e3e9f947309e09023138a1591)
* configure: use ${libdir} instead of \${LIBDIR}.Michael Adam2008-08-151-4/+4
| | | | | | | | | Now after removing --with-libdir, the value of ${libdir} won't change anymore at that stage, so there is no need to have the variable expansion deferred to "make". Michael (This used to be commit 256977cf05cb4c4073ece1389a7e4939b18f5f13)
* configure: remove the --with-libdir parameter.Michael Adam2008-08-151-16/+0
| | | | | | | | | This is redundant: use the autoconf-provided --libdir instead. This will also make the new distinction between libdir and modulesdir more visible. Michael (This used to be commit c1d53b7c767275b39dc8ecfcd5b6129ee2cabb6d)
* configure: Add --with-modulesdir to accompany --with-libdir.Michael Adam2008-08-151-2/+21
| | | | | | | | | | | | | | | | | | This starts the seplitting of libdir in to libdir and modulesdir. Our shared libs should go into libdir, the internal shared modules, codepages, and other stuff that was originally in libdir, should go into modulesdir. The idea behind this is, that in a typical installation, the shared (and static) libraries (as libtalloc, libsmbclient, libwbclient and others) should be put into /usr/lib, while the e.g. the vfs modules should reside in /usr/lib/samba. This is meant to ease the work of packagers and reduce the needs for manual interaction and workarounds. Michael (This used to be commit b17d1ff646e22c3e979224d119b283fc3af780a8)
* Add --enable-picky-developerZach Loafman2008-07-221-0/+8
| | | | | | | 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)
* configure: Move path (and debug) checks to an m4 include file check_path.m4.Michael Adam2008-02-191-0/+316
This is inspired by metze's check_path.m4 of Samba4. Michael (This used to be commit d1db2b78c9dacddc0e24304624a6a0d0a817f774)