Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | In Makefile.mingw: Don't compile some zlib optimized assembler sources when compiled with FOSSIL_ENABLE_MINIZ. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 8a5c394ba4c5da8e76f7be360b0c794b |
User & Date: | mgagnon 2014-12-06 14:24:21 |
Original Comment: | Don't compile some zlib optimized assembler sources when compiled with FOSSIL_ENABLE_MINIZ. |
Context
2014-12-06
| ||
15:44 | Update the built-in SQLite to the latest 3.8.8 alpha. check-in: 5e598cec user: drh tags: trunk | |
14:24 | In Makefile.mingw: Don't compile some zlib optimized assembler sources when compiled with FOSSIL_ENABLE_MINIZ. check-in: 8a5c394b user: mgagnon tags: trunk | |
2014-12-01
| ||
17:22 | Add the administrative log capability. check-in: f3455a56 user: drh tags: trunk | |
Changes
Changes to win/Makefile.mingw.
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
ifneq (,$(findstring x86_64-w64-mingw32,$(PREFIX))) X64 = 1 endif endif ifndef X64 SSLCONFIG = mingw ZLIBCONFIG = LOC="-DASMV -DASMINF" OBJA="inffas86.o match.o" LIBTARGETS = $(ZLIBDIR)/inffas86.o $(ZLIBDIR)/match.o else SSLCONFIG = mingw64 ZLIBCONFIG = LIBTARGETS = endif ifndef FOSSIL_ENABLE_MINIZ |
> > > > > |
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
ifneq (,$(findstring x86_64-w64-mingw32,$(PREFIX))) X64 = 1 endif endif ifndef X64 SSLCONFIG = mingw ifndef FOSSIL_ENABLE_MINIZ ZLIBCONFIG = LOC="-DASMV -DASMINF" OBJA="inffas86.o match.o" LIBTARGETS = $(ZLIBDIR)/inffas86.o $(ZLIBDIR)/match.o else ZLIBCONFIG = LIBTARGETS = endif else SSLCONFIG = mingw64 ZLIBCONFIG = LIBTARGETS = endif ifndef FOSSIL_ENABLE_MINIZ |