| | @@ -54,11 +54,11 @@ |
| 54 | 54 | |
| 55 | 55 | #### Enable compiling with debug symbols (much larger binary) |
| 56 | 56 | # |
| 57 | 57 | # FOSSIL_ENABLE_SYMBOLS = 1 |
| 58 | 58 | |
| 59 | | -#### Enable JSON (http://www.json.org) support using "cson" |
| 59 | +#### Enable JSON (https://www.json.org) support using "cson" |
| 60 | 60 | # |
| 61 | 61 | FOSSIL_ENABLE_JSON = 1 |
| 62 | 62 | |
| 63 | 63 | #### Enable HTTPS support via OpenSSL (links to libssl and libcrypto) |
| 64 | 64 | # |
| | @@ -1069,13 +1069,14 @@ |
| 1069 | 1069 | # |
| 1070 | 1070 | # Closely related is SQLITE3_ORIGIN, with the same 0/1 mapping, |
| 1071 | 1071 | # plus a value of 2 means that we are building a client-provided |
| 1072 | 1072 | # sqlite3.c. |
| 1073 | 1073 | SQLITE3_OBJ.0 = $(OBJDIR)/sqlite3.o |
| 1074 | | -SQLITE3_OBJ.1 = |
| 1074 | +SQLITE3_OBJ.1 = $(OBJDIR)/sqlite3-see.o |
| 1075 | 1075 | # SQLITE3_OBJ.2 is set by the configure process |
| 1076 | 1076 | SQLITE3_OBJ. = $(SQLITE3_OBJ.0) |
| 1077 | +SQLITE3_OBJ = $(SQLITE3_OBJ.$(SQLITE3_ORIGIN)) |
| 1077 | 1078 | |
| 1078 | 1079 | # The USE_SEE variable may be undefined, 0 or 1. If undefined or 0, |
| 1079 | 1080 | # in-tree SQLite is used. If 1, then sqlite3-see.c (not part of the |
| 1080 | 1081 | # source tree) is used and extra flags are provided to enable the |
| 1081 | 1082 | # SQLite Encryption Extension. |
| | @@ -2567,11 +2568,11 @@ |
| 2567 | 2568 | -Dgetenv=fossil_getenv \ |
| 2568 | 2569 | -Dfopen=fossil_fopen |
| 2569 | 2570 | |
| 2570 | 2571 | PIKCHR_OPTIONS = -DPIKCHR_TOKEN_LIMIT=10000 |
| 2571 | 2572 | |
| 2572 | | -$(OBJDIR)/sqlite3.o: $(SQLITE3_SRC) $(SRCDIR)/../win/Makefile.mingw.mistachkin |
| 2573 | +$(SQLITE3_OBJ): $(SQLITE3_SRC) $(SRCDIR)/../win/Makefile.mingw.mistachkin |
| 2573 | 2574 | $(XTCC) $(SQLITE_OPTIONS) $(SQLITE_CFLAGS) $(SEE_FLAGS) \ |
| 2574 | 2575 | -c $(SQLITE3_SRC) -o $@ |
| 2575 | 2576 | |
| 2576 | 2577 | $(OBJDIR)/cson_amalgamation.o: $(SRCDIR_extsrc)/cson_amalgamation.c |
| 2577 | 2578 | $(XTCC) -c $(SRCDIR_extsrc)/cson_amalgamation.c -o $@ |
| 2578 | 2579 | |