When I run "make release" pretty much every command gives the error:
gcc: unrecognized option '-NDEBUG'
Looking in the makefile, I changed the line
CFLAGS += -NDEBUG
to read
CFLAGS += -DNDEBUG
and that seemed to fix it.
As an aside, I'm having a lot of trouble figuring out what packages I
actually need to build to get things to work, and what their
dependencies are on your system software. For example, it turns out I
didn't really want 'make release'. I thentried 'make deb' instead, and
that is not compiling because ruby is not installed. What I am really
trying to do is build a tarball of the WARC Tools package (as
described here:
http://code.google.com/p/warc-tools/issues/detail?id=89).
I guess I'll have to keep trying to find the appropriate command in
the makefile or doc/install.
Gordon