summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_headers.py
AgeCommit message (Collapse)AuthorFilesLines
2012-09-27s4-python: Various formatting fixes.Jelmer Vernooij1-1/+0
* Trailing whitespace * use of "==" where "is" should be used * double spaces
2011-03-15build: added simple header handling for our librariesAndrew Tridgell1-1/+23
we don't need header munging for tdb/talloc etc
2011-03-15build: removed mkdir of public headers directoryAndrew Tridgell1-7/+0
not needed now that we have public_headers_allow_broken
2011-03-15build: added public_headers_allow_broken optionAndrew Tridgell1-1/+6
the s3 waf build will use this to say that we should allow public headers that contain references to non-public headers. In the s4 build that is not allowed, but the s3 build does not yet have clean public headers
2011-03-15waf: auto-create include paths if neededAndrew Tridgell1-0/+7
2011-03-15waf: build headers in separate 'headers' build groupAndrew Tridgell1-1/+1
2011-03-15waf: always generate public headers in the build treeAndrew Tridgell1-165/+118
this allows us to properly test our public headers before install
2011-03-15waf: moved header file handling into its own moduleAndrew Tridgell1-0/+200
It is getting quite complex now, and shouldn't just be mixed in with everything else