summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2013-02-10Cast NULL in void * in functions using va_argGravatar Thomas Preud'homme1-3/+3
NULL isn't necessary a zero value. For instance, on AMD64 architecture, a null pointer is 0x7fff00000000. Usually things works automagically as the compiler always cast NULL and 0 in void * if stored in a pointer variable. But with functions with variable number of arguments the compiler can't know the type of the arguments and thus don't make the cast. In consequences, NULL and 0 must be cast explicitely in void * if the parameter is a pointer.
2013-02-10Remove leading space when unfoldingGravatar Daniele Forsi1-2/+2
According to RFC 2425 paragraph 5.8.1, the leading whitespace on folded lines must be removed when unfolding happens.
2013-02-10Add manpagesGravatar Mathias Palm34-3/+2303
Provides manpages instead of generating them from c2man as c2man is deprecated.
2013-02-10Provide info documentationGravatar Mathias Palm5-2/+872
Create texi files so that info files can be generated with texinfo.
2013-02-10Add sample filesGravatar Mathias Palm2-0/+237
Add sample files to test the library.
2013-02-10Ease distribution of libvformatGravatar Mathias Palm2-3/+6
* Remove AC_PROG_RANLIB as there is no need for ranlib when libtool is used. * Remove unused AC_CONFIG_FILES. * Remove files generated when testing the library in clean rule.
2013-02-10Copy common/types.h to vformat/vf_iface.hGravatar Mathias Palm18-30/+41
Copy the content of common/types.h into vformat/vf_iface.h. Keep common/types.h because some files depends on it.
2013-02-10initial commit of 1.13 sourcesGravatar Nikias Bassen113-0/+12373