lmdb

Check-in [78b84ab7ab]
Login

Check-in [78b84ab7ab]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Added missing cond-expand branches
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk | v1.0.2
Files: files | file ages | folders
SHA3-256: 78b84ab7ab860b97ac4e743fbc5de5fb5240b696a8d5d2799d5e7839587d6b04
User & Date: murphy 2019-12-12 20:55:23.776
Context
2019-12-12
20:56
Updated release information file check-in: b39412fc8a user: murphy tags: trunk
20:55
Added missing cond-expand branches check-in: 78b84ab7ab user: murphy tags: trunk, v1.0.2
20:41
Updated release information file check-in: 24d846cb70 user: murphy tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to lmdb.egg.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

16
17
18
19

20
21
22
23

24
25
((category db)
 (synopsis "Bindings to LMDB")
 (author "Thomas Chust")
 (license "OpenLDAP")
 (version "1.0.1")
 (dependencies
   srfi-1)
 (test-dependencies
   test)
 (components
   (extension lmdb
     (source-dependencies "lmdb.h")
     (objects mdb-impl midl-impl)
     (cond-expand
       [unix (csc-options -L -pthread)]))

   (c-object mdb-impl
     (source-dependencies "lmdb.h" "midl.h")
     (cond-expand
       [unix (csc-options -C -fPIC -C -pthread)]))

   (c-object midl-impl
     (source-dependencies "midl.h")
     (cond-expand
       [unix (csc-options -C -fPIC -C -pthread)]))))


;; vim: set ai et ts=4 sts=2 sw=2 ft=scheme: ;;




|









|
>



|
>



|
>


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
((category db)
 (synopsis "Bindings to LMDB")
 (author "Thomas Chust")
 (license "OpenLDAP")
 (version "1.0.2")
 (dependencies
   srfi-1)
 (test-dependencies
   test)
 (components
   (extension lmdb
     (source-dependencies "lmdb.h")
     (objects mdb-impl midl-impl)
     (cond-expand
       [unix (csc-options -L -pthread)]
       [else]))
   (c-object mdb-impl
     (source-dependencies "lmdb.h" "midl.h")
     (cond-expand
       [unix (csc-options -C -fPIC -C -pthread)]
       [else]))
   (c-object midl-impl
     (source-dependencies "midl.h")
     (cond-expand
       [unix (csc-options -C -fPIC -C -pthread)]
       [else]))))

;; vim: set ai et ts=4 sts=2 sw=2 ft=scheme: ;;