Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Additional source dependency entries in egg file |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | chicken-5 |
Files: | files | file ages | folders |
SHA3-256: |
7964a1f7ad3d4fef7f2b58d20d3bcd31 |
User & Date: | murphy 2018-08-27 20:22:43.872 |
Context
2018-08-27
| ||
20:23 | Removed hash function bug workaround check-in: 2ca2dc01e3 user: murphy tags: chicken-5 | |
20:22 | Additional source dependency entries in egg file check-in: 7964a1f7ad user: murphy tags: chicken-5 | |
14:06 | Corrections of SRFI-4 comprehensions check-in: 3876586c85 user: murphy tags: chicken-5 | |
Changes
Changes to protobuf.egg.
︙ | ︙ | |||
16 17 18 19 20 21 22 | (extension protobuf (modules protobuf srfi-4-comprehensions protobuf-encoding protobuf-reflection protobuf-syntax | | > > > > > > | > > > > > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | (extension protobuf (modules protobuf srfi-4-comprehensions protobuf-encoding protobuf-reflection protobuf-syntax protobuf-generic) (source-dependencies "srfi-4-comprehensions.scm" "encoding.scm" "reflection.scm" "syntax.scm" "generic.scm")) (program protoc-gen-chicken (component-dependencies protobuf) (source-dependencies "google/protobuf/descriptor.scm" "extend/protobuf/bigint.scm" "google/protobuf/compiler/plugin.scm" "generator.scm")) (c-include extend/protobuf (files "extend/protobuf/bigint.proto" "extend/protobuf/chicken.proto")))) ;; vim: set ai et ts=8 sts=2 sw=2 ft=scheme: ;; |