concurrencykit / ck

Concurrency primitives, safe memory reclamation mechanisms and non-blocking (including lock-free) data structures designed to aid in the research, design and implementation of high performance concurrent systems developed in C99+.

Home Page:http://concurrencykit.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Configurable doc compression

hydrapolic opened this issue · comments

In Gentoo Linux we compress all documentation. Since ck already does the compression, it would lead to double compression. Would it be possible to pass an argument to ./configure whether we want documentation compression?

Thank you

Sure! We can add this. What's the preferred idiom / name for such an option?

Doesn't matter at all, but google returned some results for DOC_COMPRESS.

Ok. This is now possible in master by setting GZIP to an empty string. For example:

GZIP="" ./configure

Sorry it took a while!

Cool, thanks.