lmdb

Check-in [e44e5f6325]
Login

Check-in [e44e5f6325]

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

Overview
Comment:CHICKEN 5.1 build tweaks
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk | v1.0.1
Files: files | file ages | folders
SHA3-256: e44e5f6325d5a5ba909921680c76f13b467e5c41a64a02ea05ea20cf9ad33d40
User & Date: murphy 2019-12-12 20:40:52.535
Context
2019-12-12
20:41
Updated release information file check-in: 24d846cb70 user: murphy tags: trunk
20:40
CHICKEN 5.1 build tweaks check-in: e44e5f6325 user: murphy tags: trunk, v1.0.1
2018-09-01
16:36
Added release information file check-in: 19c956667d user: murphy tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Deleted build-lmdb.
1
2
#!/bin/sh -e
"$CHICKEN_CSC" -O2 -d1 -C -pthread -C "$CFLAGS" -L -pthread -L "$LDFLAGS" mdb.impl.c midl.impl.c "$@"
<
<




Deleted build-lmdb.bat.
1
2
@ECHO OFF
%CHICKEN_CSC% -O2 -d1 -C %CFLAGS% -L %LDFLAGS% mdb.impl.c midl.impl.c %*
<
<




Changes to lmdb.egg.
1
2
3
4
5
6
7
8
9
10
11
12




13






14
15
((category db)
 (synopsis "Bindings to LMDB")
 (author "Thomas Chust")
 (license "OpenLDAP")
 (version "1.0.0")
 (dependencies
   srfi-1)
 (test-dependencies
   test)
 (components
   (extension lmdb
     (custom-build "build-lmdb")




     (source-dependencies "lmdb.h" "mdb.impl.c" "midl.h" "midl.impl.c"))))







;; 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
((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: ;;
Name change from mdb.impl.c to mdb-impl.c.
Name change from midl.impl.c to midl-impl.c.