summaryrefslogtreecommitdiffstats
path: root/generator/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* generator: List files generated in a separate file.Richard W.M. Jones2010-12-121-1/+1
|
* build: xml-light is no longer required (thanks Maxim Koltsov).Richard W.M. Jones2010-11-111-2/+2
| | | | | | At some point we removed the last thing that required xml-light, but were still testing for it at various places in the build. This removes all traces.
* ocaml: Error on compiler warnings.Richard Jones2010-11-091-1/+1
|
* docs: Which API calls were first supported in which upstream versions.Richard W.M. Jones2010-11-041-0/+2
| | | | | | | | Run src/api-support/update-from-tarballs.sh (this won't work unless you have a local copy of the tarballs from the website). src/api-support/added contains the result of running the script, a list of pairs: (API name, version first appeared).
* daemon: Send back the errno as a string.Richard W.M. Jones2010-11-031-0/+1
| | | | | | | | This changes the protocol again so that if the errno is available, it is converted to a string (like "EIO") and sent back over the protocol to the library. In this commit the library just discards the string.
* generator: Provide no-op generator if no OCaml compiler.Richard Jones2010-09-111-0/+16
|
* generator: Calculate MD5 of test.iso at runtime.Richard Jones2010-09-111-4/+1
| | | | | | | | | Because this used to be compiled into the C test, it changed every time the ISO was rebuilt (which because of Makefile deps was every run). Now it is calculated at runtime so the C test file doesn't keep changing.
* Split generator into separate source files.Richard Jones2010-09-111-0/+95
'src/generator.ml' is no more. Instead the generator is logically split up over many different source files. Read generator/README for help and tips. We compile the generator down to bytecode, not native code. This means it will run more slowly, but is done for maximum portability.