Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Got the last bit of Baruch's patch in. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | miniz |
| Files: | files | file ages | folders |
| SHA1: |
d8902124d481ced2a800fc3ec4d32126 |
| User & Date: | stephan 2014-08-19 17:26:16.157 |
Context
|
2014-08-19
| ||
| 18:49 | addremove two files not handled by the previous patch file. ... (check-in: ca5d6f2b48 user: stephan tags: miniz) | |
| 17:26 | Got the last bit of Baruch's patch in. ... (check-in: d8902124d4 user: stephan tags: miniz) | |
| 16:52 | "the zip file patch" from Baruch. ... (check-in: 26ecec6c2c user: stephan tags: miniz) | |
Changes
Changes to Makefile.classic.
| ︙ | ︙ | |||
42 43 44 45 46 47 48 | #### Extra arguments for linking the finished binary. Fossil needs # to link against the Z-Lib compression library. There are no # other dependencies. We sometimes add the -static option here # so that we can build a static executable that will run in a # chroot jail. # | | | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | #### Extra arguments for linking the finished binary. Fossil needs # to link against the Z-Lib compression library. There are no # other dependencies. We sometimes add the -static option here # so that we can build a static executable that will run in a # chroot jail. # LIB = $(LDFLAGS) # If using HTTPS: LIB += -lcrypto -lssl #### Tcl shell for use in running the fossil testsuite. If you do not # care about testing the end result, this can be blank. # |
| ︙ | ︙ |
Changes to src/main.c.
| ︙ | ︙ | |||
953 954 955 956 957 958 959 |
int rc;
const char *zRc;
#endif
fossil_print("Compiled on %s %s using %s (%d-bit)\n",
__DATE__, __TIME__, COMPILER_NAME, sizeof(void*)*8);
fossil_print("SQLite %s %.30s\n", sqlite3_libversion(), sqlite3_sourceid());
fossil_print("Schema version %s\n", AUX_SCHEMA);
| | | 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 |
int rc;
const char *zRc;
#endif
fossil_print("Compiled on %s %s using %s (%d-bit)\n",
__DATE__, __TIME__, COMPILER_NAME, sizeof(void*)*8);
fossil_print("SQLite %s %.30s\n", sqlite3_libversion(), sqlite3_sourceid());
fossil_print("Schema version %s\n", AUX_SCHEMA);
fossil_print("miniz %s, loaded %s\n", MZ_VERSION, mz_version());
#if defined(FOSSIL_ENABLE_SSL)
fossil_print("SSL (%s)\n", SSLeay_version(SSLEAY_VERSION));
#endif
#if defined(FOSSIL_ENABLE_TH1_HOOKS)
fossil_print("TH1_HOOKS\n");
#endif
#if defined(FOSSIL_ENABLE_TCL)
|
| ︙ | ︙ |