address-info

Check-in [2ba9698c3a]
Login

Check-in [2ba9698c3a]

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 | v1.0.5 | chicken-5
Files: files | file ages | folders
SHA3-256: 2ba9698c3ab8ba726bfc4410caa47add64e7227144ff2ebdbfa87694ccb0e0d6
User & Date: murphy 2019-12-12 20:52:16.346
Context
2019-12-12
20:53
Updated release information file check-in: 36649006ac user: murphy tags: chicken-5
20:52
CHICKEN 5.1 build tweaks check-in: 2ba9698c3a user: murphy tags: v1.0.5, chicken-5
2019-05-12
21:57
Updated release information with new tag check-in: c78ad828e2 user: murphy tags: chicken-5
Changes
Unified Diff Ignore Whitespace Patch
Changes to address-info.egg.
1
2
3
4
5
6
7
8
9
10
11


12
13
14
((category net)
 (synopsis "Network address information access")
 (license "BSD")
 (author "Thomas Chust")
 (version "1.0.4")
 (dependencies
   srfi-1)
 (test-dependencies
   test)
 (components
   (extension address-info


     (custom-build "build-address-info"))))

;; 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
((category net)
 (synopsis "Network address information access")
 (license "BSD")
 (author "Thomas Chust")
 (version "1.0.5")
 (dependencies
   srfi-1)
 (test-dependencies
   test)
 (components
   (extension address-info
     (cond-expand
       [windows (csc-options -L -lws2_32)]
       [else]))))

;; vim: set ai et ts=4 sts=2 sw=2 ft=scheme: ;;
Deleted build-address-info.
1
2
#!/bin/sh -e
"$CHICKEN_CSC" -O2 -d1 -C "$CFLAGS" -L "$LDFLAGS" "$@"
<
<




Deleted build-address-info.bat.
1
2
@echo off
%CHICKEN_CSC% -O2 -d1 -C %CFLAGS% -L -lws2_32 -L %LDFLAGS% %*
<
<