address-info

Check-in [7fe5310deb]
Login

Check-in [7fe5310deb]

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

Overview
Comment:added Windows linker flags
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk | v1.0.1
Files: files | file ages | folders
SHA3-256: 7fe5310deb1b08d9d89dc5c0f1d05832b17c624337a3a6a4fd4659b5fe1b4fa3
User & Date: murphy 2017-08-22 00:15:55.722
Context
2017-08-22
00:16
updated release information file check-in: fe8a9818c9 user: murphy tags: trunk
00:15
added Windows linker flags check-in: 7fe5310deb user: murphy tags: trunk, v1.0.1
2017-08-21
23:20
updated release information file check-in: de9e102759 user: murphy tags: trunk, v1.0.0
Changes
Unified Diff Ignore Whitespace Patch
Changes to address-info.setup.
1





2
3
4
5
6
7
8
(compile -s -O2 -d1 "address-info.scm" -j address-info)






(cond-expand
 (enable-static
  (compile -c -O2 -d1 "address-info.scm" -unit address-info))
 (else
  ))

|
>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
(compile -s -O2 -d1 "address-info.scm" -j address-info
         ,@(cond-expand
            (windows
             '("-lws2_32"))
            (else
             '())))

(cond-expand
 (enable-static
  (compile -c -O2 -d1 "address-info.scm" -unit address-info))
 (else
  ))

16
17
18
19
20
21
22
23





24
25
26
27
       '("address-info.o"))
      (else
       '()))
   "address-info.import.so")
 `((version "1.0.0")
   ,@(cond-expand
      (enable-static
       '((static "address-info.o")))





      (else
       '()))))

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







|
>
>
>
>
>




21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
       '("address-info.o"))
      (else
       '()))
   "address-info.import.so")
 `((version "1.0.0")
   ,@(cond-expand
      (enable-static
       `((static "address-info.o")
         ,@(cond-expand
            (windows
             '((static-options "-lws2_32")))
            (else
             '()))))
      (else
       '()))))

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