Julian Catchen
unread,Mar 26, 2014, 6:52:34 PM3/26/14Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to stacks...@googlegroups.com, andrea...@uni-konstanz.de, thierry...@me.com, zee...@gmail.com
Hi Thierry, Zophonias, and Andi,
I think the problem has to do with the version of zlib installed on your
systems. The gzbuffer() function was added to zlib version 1.2.4 (in
2010) and it appears that the zlib version you are using may be prior to
that version. You can check by looking at the zlib header file, on my
system:
more /usr/include/zlib.h
To fix it, you could upgrade your version of zlib, or remove those calls
to gzbuffer() from the code (just delete the lines containing the calls
to gzbuffer()).
I'm not sure the best way to handle it in the source, any thoughts? We
could try to conditionally compile based on the version of zlib present,
or something like that, but that would be a pain.
julian