Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove superfluous library reference when compiling with MinGW. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9a091248757ae42b50e3cdb518caab7c |
User & Date: | mistachkin 2016-01-19 18:59:38.717 |
Context
2016-01-20
| ||
23:07 | Fix "Newer" button in timeline when using "c" parameter ... (check-in: 28dd7c1d user: baruch tags: pending-review) | |
14:42 | Upgrade the build-in SQLite to a new 3.11.0 alpha that fixes the LIKE operator bug found in 3.10.0. ... (check-in: 0d757274 user: drh tags: trunk) | |
13:36 | Add submenu to default branch list page ... (Closed-Leaf check-in: 737e8d23 user: baruch tags: pending-review) | |
13:04 | (experiment) Implement "package require Tcl" according to the alternative TIP #440 implementation. ... (check-in: 6bb2308f user: jan.nijtmans tags: tip-440-alt) | |
12:15 | Remove even fusefs command from non fuse-enabled builds ... (check-in: 06fd798b user: baruch tags: pending-review) | |
10:46 | Change piechart table to view since tables have undefined order ... (Closed-Leaf check-in: cdf0d6a3 user: baruch tags: pending-review) | |
2016-01-19
| ||
18:59 | Remove superfluous library reference when compiling with MinGW. ... (check-in: 9a091248 user: mistachkin tags: trunk) | |
18:48 | Get configure and make, via autosetup, working on MinGW. ... (check-in: a0061bb2 user: mistachkin tags: trunk) | |
Changes
Changes to auto.def.
︙ | ︙ | |||
75 76 77 78 79 80 81 | proc is_mingw {} { return [string match *mingw* [get-define host]] } if {[is_mingw]} { define-append EXTRA_CFLAGS -DBROKEN_MINGW_CMDLINE | | | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | proc is_mingw {} { return [string match *mingw* [get-define host]] } if {[is_mingw]} { define-append EXTRA_CFLAGS -DBROKEN_MINGW_CMDLINE define-append LIBS -lkernel32 -lws2_32 } else { # # NOTE: All platforms except MinGW should use the linenoise # package. It is currently unsupported on Win32. # define USE_LINENOISE 1 } |
︙ | ︙ |