| | @@ -174,11 +174,11 @@ |
| 174 | 174 | #### The directories where the OpenSSL include and library files are located. |
| 175 | 175 | # The recommended usage here is to use the Sysinternals junction tool |
| 176 | 176 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 177 | 177 | # Fossil source code directory and the target OpenSSL source directory. |
| 178 | 178 | # |
| 179 | | -OPENSSLDIR = $(SRCDIR)/../compat/openssl-1.0.2p |
| 179 | +OPENSSLDIR = $(SRCDIR)/../compat/openssl-1.0.2q |
| 180 | 180 | OPENSSLINCDIR = $(OPENSSLDIR)/include |
| 181 | 181 | OPENSSLLIBDIR = $(OPENSSLDIR) |
| 182 | 182 | |
| 183 | 183 | #### Either the directory where the Tcl library is installed or the Tcl |
| 184 | 184 | # source code directory resides (depending on the value of the macro |
| | @@ -526,10 +526,11 @@ |
| 526 | 526 | $(SRCDIR)/printf.c \ |
| 527 | 527 | $(SRCDIR)/publish.c \ |
| 528 | 528 | $(SRCDIR)/purge.c \ |
| 529 | 529 | $(SRCDIR)/rebuild.c \ |
| 530 | 530 | $(SRCDIR)/regexp.c \ |
| 531 | + $(SRCDIR)/repolist.c \ |
| 531 | 532 | $(SRCDIR)/report.c \ |
| 532 | 533 | $(SRCDIR)/rss.c \ |
| 533 | 534 | $(SRCDIR)/schema.c \ |
| 534 | 535 | $(SRCDIR)/search.c \ |
| 535 | 536 | $(SRCDIR)/security_audit.c \ |
| | @@ -736,10 +737,11 @@ |
| 736 | 737 | $(OBJDIR)/printf_.c \ |
| 737 | 738 | $(OBJDIR)/publish_.c \ |
| 738 | 739 | $(OBJDIR)/purge_.c \ |
| 739 | 740 | $(OBJDIR)/rebuild_.c \ |
| 740 | 741 | $(OBJDIR)/regexp_.c \ |
| 742 | + $(OBJDIR)/repolist_.c \ |
| 741 | 743 | $(OBJDIR)/report_.c \ |
| 742 | 744 | $(OBJDIR)/rss_.c \ |
| 743 | 745 | $(OBJDIR)/schema_.c \ |
| 744 | 746 | $(OBJDIR)/search_.c \ |
| 745 | 747 | $(OBJDIR)/security_audit_.c \ |
| | @@ -873,10 +875,11 @@ |
| 873 | 875 | $(OBJDIR)/printf.o \ |
| 874 | 876 | $(OBJDIR)/publish.o \ |
| 875 | 877 | $(OBJDIR)/purge.o \ |
| 876 | 878 | $(OBJDIR)/rebuild.o \ |
| 877 | 879 | $(OBJDIR)/regexp.o \ |
| 880 | + $(OBJDIR)/repolist.o \ |
| 878 | 881 | $(OBJDIR)/report.o \ |
| 879 | 882 | $(OBJDIR)/rss.o \ |
| 880 | 883 | $(OBJDIR)/schema.o \ |
| 881 | 884 | $(OBJDIR)/search.o \ |
| 882 | 885 | $(OBJDIR)/security_audit.o \ |
| | @@ -1229,10 +1232,11 @@ |
| 1229 | 1232 | $(OBJDIR)/printf_.c:$(OBJDIR)/printf.h \ |
| 1230 | 1233 | $(OBJDIR)/publish_.c:$(OBJDIR)/publish.h \ |
| 1231 | 1234 | $(OBJDIR)/purge_.c:$(OBJDIR)/purge.h \ |
| 1232 | 1235 | $(OBJDIR)/rebuild_.c:$(OBJDIR)/rebuild.h \ |
| 1233 | 1236 | $(OBJDIR)/regexp_.c:$(OBJDIR)/regexp.h \ |
| 1237 | + $(OBJDIR)/repolist_.c:$(OBJDIR)/repolist.h \ |
| 1234 | 1238 | $(OBJDIR)/report_.c:$(OBJDIR)/report.h \ |
| 1235 | 1239 | $(OBJDIR)/rss_.c:$(OBJDIR)/rss.h \ |
| 1236 | 1240 | $(OBJDIR)/schema_.c:$(OBJDIR)/schema.h \ |
| 1237 | 1241 | $(OBJDIR)/search_.c:$(OBJDIR)/search.h \ |
| 1238 | 1242 | $(OBJDIR)/security_audit_.c:$(OBJDIR)/security_audit.h \ |
| | @@ -2002,10 +2006,18 @@ |
| 2002 | 2006 | |
| 2003 | 2007 | $(OBJDIR)/regexp.o: $(OBJDIR)/regexp_.c $(OBJDIR)/regexp.h $(SRCDIR)/config.h |
| 2004 | 2008 | $(XTCC) -o $(OBJDIR)/regexp.o -c $(OBJDIR)/regexp_.c |
| 2005 | 2009 | |
| 2006 | 2010 | $(OBJDIR)/regexp.h: $(OBJDIR)/headers |
| 2011 | + |
| 2012 | +$(OBJDIR)/repolist_.c: $(SRCDIR)/repolist.c $(TRANSLATE) |
| 2013 | + $(TRANSLATE) $(SRCDIR)/repolist.c >$@ |
| 2014 | + |
| 2015 | +$(OBJDIR)/repolist.o: $(OBJDIR)/repolist_.c $(OBJDIR)/repolist.h $(SRCDIR)/config.h |
| 2016 | + $(XTCC) -o $(OBJDIR)/repolist.o -c $(OBJDIR)/repolist_.c |
| 2017 | + |
| 2018 | +$(OBJDIR)/repolist.h: $(OBJDIR)/headers |
| 2007 | 2019 | |
| 2008 | 2020 | $(OBJDIR)/report_.c: $(SRCDIR)/report.c $(TRANSLATE) |
| 2009 | 2021 | $(TRANSLATE) $(SRCDIR)/report.c >$@ |
| 2010 | 2022 | |
| 2011 | 2023 | $(OBJDIR)/report.o: $(OBJDIR)/report_.c $(OBJDIR)/report.h $(SRCDIR)/config.h |
| 2012 | 2024 | |