summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_conftests.py
AgeCommit message (Collapse)AuthorFilesLines
2013-05-06configure: print a message when docbook.xsl is missing localyMatthieu Patou1-0/+3
Signed-off-by: Matthieu Patou <mat@matws.net> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
2012-06-08build: try to fix large file support for AIXBjörn Jacke1-0/+8
Autobuild-User(master): Björn Jacke <bj@sernet.de> Autobuild-Date(master): Fri Jun 8 00:37:00 CEST 2012 on sn-devel-104
2012-05-18Add include/lib folders from the commandlineThomas Nagy1-1/+66
By using opt.add_option(..., match=['Checking for library iconv'], dest='iconvdir'), all configuration tests displaying 'Checking for library iconv' will get $(iconvdir)/lib and $(iconvdir)/include
2012-04-05build: Add getconf LFS_CFLAGS support to waf buildAndrew Bartlett1-1/+19
2012-02-10wafsamba: Expand tabs.Jelmer Vernooij1-1/+1
2010-12-10build: add a function to test if -lc is neededMatthieu Patou1-0/+45
This is needed on openbsd as some linking flags makes mandatory to specify the libc for the linking
2010-12-08waf: added configure test for -Wl,--version-scriptAndrew Tridgell1-1/+9
this checks that the linker supports --version-script Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2010-10-31build: In some case the flags for the sun studio linker are wrongMatthieu Patou1-0/+14
In this case we test if the -Wl,-h,%s works and if so use this form Autobuild-User: Matthieu Patou <mat@samba.org> Autobuild-Date: Sun Oct 31 16:35:17 UTC 2010 on sn-devel-104
2010-10-30build: set shared libraries flags correctly on mac os XMatthieu Patou1-0/+21
2010-08-22wafsamba: fix CHECK_XSLTPROC_MANPAGES().Jelmer Vernooij1-12/+5
2010-06-24build: check if the manpages stylesheet is available locallyAndrew Tridgell1-5/+31
this avoids trying to fetch the stylesheet from the internet. If we can't process the stylesheet with --nonet at configure time then don't build manpages. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
2010-06-20build: Allow for a custom message in CHECK_C_PROTOTYPEKai Blin1-2/+4
2010-05-05build: added configure test for inlineAndrew Tridgell1-0/+24
2010-05-02build: uname on opensolaris returns 1 for successAndrew Tridgell1-1/+1
check for -1 as failure, not 0 for success
2010-04-21build: fixed uname output to be on target machine when cross compilingAndrew Tridgell1-7/+30
this also makes the output of define_ret configure tests show up in the configure output
2010-04-20build: added uname display and SYSTEM_UNAME defineAndrew Tridgell1-0/+19
suggestion from Metze
2010-04-19build: added --cross-answers supportAndrew Tridgell1-1/+1
This allows you to easily cross-compile even without a --cross-execute emulator See http://wiki.samba.org/index.php/Waf#cross-compiling for details
2010-04-13build: allow cross-builds to use shared librariesAndrew Tridgell1-1/+1
2010-04-06build: don't link when checking a C prototypeAndrew Tridgell1-0/+2
2010-04-06s4-waf: added auto-detection of perl manpage extensionsAndrew Tridgell1-16/+77
some systems produce pidl.1p, others pidl.1. We need to know which one to use.
2010-04-06build: auto-detect platforms which don't support shared libsAndrew Tridgell1-6/+27
2010-04-06build: these chdir() calls break waf on HPUX. They are not neededAndrew Tridgell1-7/+0
2010-04-06s3-waf: fixed tests for charsetsAndrew Tridgell1-7/+4
Pair-Programmed-With: Kai
2010-04-06build: improved exception handling for systems without rpathAndrew Tridgell1-8/+3
2010-04-06build: much better rpath test functionAndrew Tridgell1-0/+106
This creates a full shared lib, and a binary that uses it. Then it tests that the binary runs correctly, relying on rpath Thanks to Thomas for the code for this!
2010-04-06build: Import conf decorator in samba_conftests.pyKai Blin1-1/+1
2010-04-06build: started a library of common config tests for s3/s4Andrew Tridgell1-0/+64
Pair-Programmed-With: Kai Blin <kai@samba.org>