Mercurial > libpst
annotate Makefile.cvs @ 355:d1f930be4711
From Jeffrey Morlan:
pst_build_id_ptr and pst_build_desc_ptr require that the first child
of a BTree page have the same starting ID as itself. This is not
required by the spec, and is not true in many real-world PSTs
(presumably, the original first child of the page got
deleted). Because of this, many emails are not being extracted from
these PSTs. It also triggers an infinite loop in lspst (a separate
bug, also fixed)
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 06 Jul 2016 10:12:22 -0700 |
parents | 507a42e3c48e |
children | f1f9920cc7b1 |
rev | line source |
---|---|
16 | 1 default: all |
2 | |
35 | 3 HOST=$(shell hostname) |
4 | |
16 | 5 all: |
128
7f747c8c9d02
cleanup installed headers
Carl Byington <carl@five-ten-sg.com>
parents:
35
diff
changeset
|
6 libtoolize --force --copy |
153
0b1766da9be8
use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
7 aclocal -I m4 |
16 | 8 autoheader |
302
507a42e3c48e
allow automake to add missing files
Carl Byington <carl@five-ten-sg.com>
parents:
183
diff
changeset
|
9 automake --add-missing |
16 | 10 autoconf |
183 | 11 ./configure >/dev/null |
181 | 12 rm -rf html.internal |
13 doxygen | |
14 tar cfz libpst.html.tar.gz html.internal |