summaryrefslogtreecommitdiff
path: root/include/git/zlib.h
Commit message (Collapse)AuthorAgeFilesLines
* Move public headers to src/gitAndreas Ericsson2008-11-181-60/+0
| | | | | | | | | | | It's arguably smoother to keep them close to the source, as that's where one's working when modifying them. More importantly, though, is the ability to use private headers in the src/ dir that simply include "git/$samename.h" to get to the public API at the same time. Signed-off-by: Andreas Ericsson <ae@op5.se> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
* Use same-directory include for public headersAndreas Ericsson2008-11-181-1/+1
| | | | | | | | | | | It doesn't make sense to use "git/somefile.h" in the public git headers, as it's quite likely that projects using them will have a git directory themselves. This alters it, making the public headers look for headers in the same directory they themselves are in. Signed-off-by: Andreas Ericsson <ae@op5.se> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
* Add a zlib support shellShawn O. Pearce2008-11-031-0/+60
Some versions of zlib don't have a deflateBound defined, so we define it ourselves after including zlib.h. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>