summaryrefslogtreecommitdiffstats
path: root/autogen.sh
Commit message (Collapse)AuthorAgeFilesLines
* maint: avoid using test's -a and -o operators; they are not portableJim Meyering2011-06-281-1/+1
| | | | | | * configure.ac: use "test C1 && test C2", not "test C1 -a C2"; * autogen.sh: Likewise. * sh/hivexget: Use "test C1 || test C2", not "test C1 -o C2"
* maint: use "test x = x", not "test x == x"Jim Meyering2011-06-281-1/+1
| | | | * autogen.sh: Using "test x = x" is more portable.
* Add build framework for OCaml, Perl, Python bindings.Richard Jones2010-02-241-0/+1
| | | | | (No bindings are actually built, this just adds the build, test and generator framework for them).
* Add a generator for generating bindings to other languages.Richard Jones2010-02-221-0/+6
| | | | | | | At the moment the generator just generates the C header file and C POD documentation. This just so we can compare the existing hand-written code with the generated code to make sure that our description of the API within the generator is correct.
* Support for Windows Registry.Richard Jones2010-02-191-0/+51
In hivex/: This mini-library allows us to extract Windows Registry binary files ("hives"). There are also two tools: hivexml converts a hive to a self-describing XML format. hivexget can be used to extract single subkeys from a hive.