Fossil SCM
Additional fixes to the build process to ensure that pikchr.c has a valid header file.
Commit
f46f8c3839ee3b710be05478b8d0ce50f43c1789c076270b281189ccdd2bcd4e
Parent
57f16ce8e550f3e…
5 files changed
+13
+13
+1
-1
+3
-1
+3
-1
+13
| --- tools/makemake.tcl | ||
| +++ tools/makemake.tcl | ||
| @@ -1436,10 +1436,13 @@ | ||
| 1436 | 1436 | |
| 1437 | 1437 | writeln -nonewline "headers: makeheaders\$E page_index.h builtin_data.h VERSION.h\n\t +makeheaders\$E " |
| 1438 | 1438 | foreach s [lsort $src] { |
| 1439 | 1439 | writeln -nonewline "${s}_.c:$s.h " |
| 1440 | 1440 | } |
| 1441 | +foreach s [lsort $src_ext] { | |
| 1442 | + writeln -nonewline "\$(SRCDIR_extsrc)\\${s}.c:$s.h " | |
| 1443 | +} | |
| 1441 | 1444 | writeln "\$(SRCDIR_extsrc)\\sqlite3.h \$(SRCDIR)\\th.h VERSION.h \$(SRCDIR_extsrc)\\cson_amalgamation.h" |
| 1442 | 1445 | writeln "\t@copy /Y nul: headers" |
| 1443 | 1446 | |
| 1444 | 1447 | close $output_file |
| 1445 | 1448 | # |
| @@ -1759,10 +1762,15 @@ | ||
| 1759 | 1762 | writeln " \\" |
| 1760 | 1763 | writeln -nonewline " " |
| 1761 | 1764 | } |
| 1762 | 1765 | writeln -nonewline "\"\$(OX)\\${s}_.c\""; incr i |
| 1763 | 1766 | } |
| 1767 | +foreach s [lsort $src_ext] { | |
| 1768 | + writeln " \\" | |
| 1769 | + writeln -nonewline " " | |
| 1770 | + writeln -nonewline "\"\$(SRCDIR_extsrc)\\${s}.c\""; incr i | |
| 1771 | +} | |
| 1764 | 1772 | writeln "\n" |
| 1765 | 1773 | writeln -nonewline "EXTRA_FILES = " |
| 1766 | 1774 | set i 0 |
| 1767 | 1775 | foreach s [lsort $extra_files] { |
| 1768 | 1776 | if {$i > 0} { |
| @@ -2002,10 +2010,15 @@ | ||
| 2002 | 2010 | writeln " \\" |
| 2003 | 2011 | writeln -nonewline "\t\t\t" |
| 2004 | 2012 | } |
| 2005 | 2013 | writeln -nonewline "\"\$(OX)\\${s}_.c\":\"\$(OX)\\$s.h\""; incr i |
| 2006 | 2014 | } |
| 2015 | +foreach s [lsort $src_ext] { | |
| 2016 | + writeln " \\" | |
| 2017 | + writeln -nonewline "\t\t\t" | |
| 2018 | + writeln -nonewline "\"\$(SRCDIR_extsrc)\\${s}.c\":\"\$(OX)\\$s.h\""; incr i | |
| 2019 | +} | |
| 2007 | 2020 | writeln " \\\n\t\t\t\"\$(SRCDIR_extsrc)\\sqlite3.h\" \\" |
| 2008 | 2021 | writeln "\t\t\t\"\$(SRCDIR)\\th.h\" \\" |
| 2009 | 2022 | writeln "\t\t\t\"\$(OX)\\VERSION.h\" \\" |
| 2010 | 2023 | writeln "\t\t\t\"\$(SRCDIR_extsrc)\\cson_amalgamation.h\"" |
| 2011 | 2024 | writeln "\t@copy /Y nul: $@" |
| 2012 | 2025 |
| --- tools/makemake.tcl | |
| +++ tools/makemake.tcl | |
| @@ -1436,10 +1436,13 @@ | |
| 1436 | |
| 1437 | writeln -nonewline "headers: makeheaders\$E page_index.h builtin_data.h VERSION.h\n\t +makeheaders\$E " |
| 1438 | foreach s [lsort $src] { |
| 1439 | writeln -nonewline "${s}_.c:$s.h " |
| 1440 | } |
| 1441 | writeln "\$(SRCDIR_extsrc)\\sqlite3.h \$(SRCDIR)\\th.h VERSION.h \$(SRCDIR_extsrc)\\cson_amalgamation.h" |
| 1442 | writeln "\t@copy /Y nul: headers" |
| 1443 | |
| 1444 | close $output_file |
| 1445 | # |
| @@ -1759,10 +1762,15 @@ | |
| 1759 | writeln " \\" |
| 1760 | writeln -nonewline " " |
| 1761 | } |
| 1762 | writeln -nonewline "\"\$(OX)\\${s}_.c\""; incr i |
| 1763 | } |
| 1764 | writeln "\n" |
| 1765 | writeln -nonewline "EXTRA_FILES = " |
| 1766 | set i 0 |
| 1767 | foreach s [lsort $extra_files] { |
| 1768 | if {$i > 0} { |
| @@ -2002,10 +2010,15 @@ | |
| 2002 | writeln " \\" |
| 2003 | writeln -nonewline "\t\t\t" |
| 2004 | } |
| 2005 | writeln -nonewline "\"\$(OX)\\${s}_.c\":\"\$(OX)\\$s.h\""; incr i |
| 2006 | } |
| 2007 | writeln " \\\n\t\t\t\"\$(SRCDIR_extsrc)\\sqlite3.h\" \\" |
| 2008 | writeln "\t\t\t\"\$(SRCDIR)\\th.h\" \\" |
| 2009 | writeln "\t\t\t\"\$(OX)\\VERSION.h\" \\" |
| 2010 | writeln "\t\t\t\"\$(SRCDIR_extsrc)\\cson_amalgamation.h\"" |
| 2011 | writeln "\t@copy /Y nul: $@" |
| 2012 |
| --- tools/makemake.tcl | |
| +++ tools/makemake.tcl | |
| @@ -1436,10 +1436,13 @@ | |
| 1436 | |
| 1437 | writeln -nonewline "headers: makeheaders\$E page_index.h builtin_data.h VERSION.h\n\t +makeheaders\$E " |
| 1438 | foreach s [lsort $src] { |
| 1439 | writeln -nonewline "${s}_.c:$s.h " |
| 1440 | } |
| 1441 | foreach s [lsort $src_ext] { |
| 1442 | writeln -nonewline "\$(SRCDIR_extsrc)\\${s}.c:$s.h " |
| 1443 | } |
| 1444 | writeln "\$(SRCDIR_extsrc)\\sqlite3.h \$(SRCDIR)\\th.h VERSION.h \$(SRCDIR_extsrc)\\cson_amalgamation.h" |
| 1445 | writeln "\t@copy /Y nul: headers" |
| 1446 | |
| 1447 | close $output_file |
| 1448 | # |
| @@ -1759,10 +1762,15 @@ | |
| 1762 | writeln " \\" |
| 1763 | writeln -nonewline " " |
| 1764 | } |
| 1765 | writeln -nonewline "\"\$(OX)\\${s}_.c\""; incr i |
| 1766 | } |
| 1767 | foreach s [lsort $src_ext] { |
| 1768 | writeln " \\" |
| 1769 | writeln -nonewline " " |
| 1770 | writeln -nonewline "\"\$(SRCDIR_extsrc)\\${s}.c\""; incr i |
| 1771 | } |
| 1772 | writeln "\n" |
| 1773 | writeln -nonewline "EXTRA_FILES = " |
| 1774 | set i 0 |
| 1775 | foreach s [lsort $extra_files] { |
| 1776 | if {$i > 0} { |
| @@ -2002,10 +2010,15 @@ | |
| 2010 | writeln " \\" |
| 2011 | writeln -nonewline "\t\t\t" |
| 2012 | } |
| 2013 | writeln -nonewline "\"\$(OX)\\${s}_.c\":\"\$(OX)\\$s.h\""; incr i |
| 2014 | } |
| 2015 | foreach s [lsort $src_ext] { |
| 2016 | writeln " \\" |
| 2017 | writeln -nonewline "\t\t\t" |
| 2018 | writeln -nonewline "\"\$(SRCDIR_extsrc)\\${s}.c\":\"\$(OX)\\$s.h\""; incr i |
| 2019 | } |
| 2020 | writeln " \\\n\t\t\t\"\$(SRCDIR_extsrc)\\sqlite3.h\" \\" |
| 2021 | writeln "\t\t\t\"\$(SRCDIR)\\th.h\" \\" |
| 2022 | writeln "\t\t\t\"\$(OX)\\VERSION.h\" \\" |
| 2023 | writeln "\t\t\t\"\$(SRCDIR_extsrc)\\cson_amalgamation.h\"" |
| 2024 | writeln "\t@copy /Y nul: $@" |
| 2025 |
+13
| --- tools/makemake.tcl | ||
| +++ tools/makemake.tcl | ||
| @@ -1436,10 +1436,13 @@ | ||
| 1436 | 1436 | |
| 1437 | 1437 | writeln -nonewline "headers: makeheaders\$E page_index.h builtin_data.h VERSION.h\n\t +makeheaders\$E " |
| 1438 | 1438 | foreach s [lsort $src] { |
| 1439 | 1439 | writeln -nonewline "${s}_.c:$s.h " |
| 1440 | 1440 | } |
| 1441 | +foreach s [lsort $src_ext] { | |
| 1442 | + writeln -nonewline "\$(SRCDIR_extsrc)\\${s}.c:$s.h " | |
| 1443 | +} | |
| 1441 | 1444 | writeln "\$(SRCDIR_extsrc)\\sqlite3.h \$(SRCDIR)\\th.h VERSION.h \$(SRCDIR_extsrc)\\cson_amalgamation.h" |
| 1442 | 1445 | writeln "\t@copy /Y nul: headers" |
| 1443 | 1446 | |
| 1444 | 1447 | close $output_file |
| 1445 | 1448 | # |
| @@ -1759,10 +1762,15 @@ | ||
| 1759 | 1762 | writeln " \\" |
| 1760 | 1763 | writeln -nonewline " " |
| 1761 | 1764 | } |
| 1762 | 1765 | writeln -nonewline "\"\$(OX)\\${s}_.c\""; incr i |
| 1763 | 1766 | } |
| 1767 | +foreach s [lsort $src_ext] { | |
| 1768 | + writeln " \\" | |
| 1769 | + writeln -nonewline " " | |
| 1770 | + writeln -nonewline "\"\$(SRCDIR_extsrc)\\${s}.c\""; incr i | |
| 1771 | +} | |
| 1764 | 1772 | writeln "\n" |
| 1765 | 1773 | writeln -nonewline "EXTRA_FILES = " |
| 1766 | 1774 | set i 0 |
| 1767 | 1775 | foreach s [lsort $extra_files] { |
| 1768 | 1776 | if {$i > 0} { |
| @@ -2002,10 +2010,15 @@ | ||
| 2002 | 2010 | writeln " \\" |
| 2003 | 2011 | writeln -nonewline "\t\t\t" |
| 2004 | 2012 | } |
| 2005 | 2013 | writeln -nonewline "\"\$(OX)\\${s}_.c\":\"\$(OX)\\$s.h\""; incr i |
| 2006 | 2014 | } |
| 2015 | +foreach s [lsort $src_ext] { | |
| 2016 | + writeln " \\" | |
| 2017 | + writeln -nonewline "\t\t\t" | |
| 2018 | + writeln -nonewline "\"\$(SRCDIR_extsrc)\\${s}.c\":\"\$(OX)\\$s.h\""; incr i | |
| 2019 | +} | |
| 2007 | 2020 | writeln " \\\n\t\t\t\"\$(SRCDIR_extsrc)\\sqlite3.h\" \\" |
| 2008 | 2021 | writeln "\t\t\t\"\$(SRCDIR)\\th.h\" \\" |
| 2009 | 2022 | writeln "\t\t\t\"\$(OX)\\VERSION.h\" \\" |
| 2010 | 2023 | writeln "\t\t\t\"\$(SRCDIR_extsrc)\\cson_amalgamation.h\"" |
| 2011 | 2024 | writeln "\t@copy /Y nul: $@" |
| 2012 | 2025 |
| --- tools/makemake.tcl | |
| +++ tools/makemake.tcl | |
| @@ -1436,10 +1436,13 @@ | |
| 1436 | |
| 1437 | writeln -nonewline "headers: makeheaders\$E page_index.h builtin_data.h VERSION.h\n\t +makeheaders\$E " |
| 1438 | foreach s [lsort $src] { |
| 1439 | writeln -nonewline "${s}_.c:$s.h " |
| 1440 | } |
| 1441 | writeln "\$(SRCDIR_extsrc)\\sqlite3.h \$(SRCDIR)\\th.h VERSION.h \$(SRCDIR_extsrc)\\cson_amalgamation.h" |
| 1442 | writeln "\t@copy /Y nul: headers" |
| 1443 | |
| 1444 | close $output_file |
| 1445 | # |
| @@ -1759,10 +1762,15 @@ | |
| 1759 | writeln " \\" |
| 1760 | writeln -nonewline " " |
| 1761 | } |
| 1762 | writeln -nonewline "\"\$(OX)\\${s}_.c\""; incr i |
| 1763 | } |
| 1764 | writeln "\n" |
| 1765 | writeln -nonewline "EXTRA_FILES = " |
| 1766 | set i 0 |
| 1767 | foreach s [lsort $extra_files] { |
| 1768 | if {$i > 0} { |
| @@ -2002,10 +2010,15 @@ | |
| 2002 | writeln " \\" |
| 2003 | writeln -nonewline "\t\t\t" |
| 2004 | } |
| 2005 | writeln -nonewline "\"\$(OX)\\${s}_.c\":\"\$(OX)\\$s.h\""; incr i |
| 2006 | } |
| 2007 | writeln " \\\n\t\t\t\"\$(SRCDIR_extsrc)\\sqlite3.h\" \\" |
| 2008 | writeln "\t\t\t\"\$(SRCDIR)\\th.h\" \\" |
| 2009 | writeln "\t\t\t\"\$(OX)\\VERSION.h\" \\" |
| 2010 | writeln "\t\t\t\"\$(SRCDIR_extsrc)\\cson_amalgamation.h\"" |
| 2011 | writeln "\t@copy /Y nul: $@" |
| 2012 |
| --- tools/makemake.tcl | |
| +++ tools/makemake.tcl | |
| @@ -1436,10 +1436,13 @@ | |
| 1436 | |
| 1437 | writeln -nonewline "headers: makeheaders\$E page_index.h builtin_data.h VERSION.h\n\t +makeheaders\$E " |
| 1438 | foreach s [lsort $src] { |
| 1439 | writeln -nonewline "${s}_.c:$s.h " |
| 1440 | } |
| 1441 | foreach s [lsort $src_ext] { |
| 1442 | writeln -nonewline "\$(SRCDIR_extsrc)\\${s}.c:$s.h " |
| 1443 | } |
| 1444 | writeln "\$(SRCDIR_extsrc)\\sqlite3.h \$(SRCDIR)\\th.h VERSION.h \$(SRCDIR_extsrc)\\cson_amalgamation.h" |
| 1445 | writeln "\t@copy /Y nul: headers" |
| 1446 | |
| 1447 | close $output_file |
| 1448 | # |
| @@ -1759,10 +1762,15 @@ | |
| 1762 | writeln " \\" |
| 1763 | writeln -nonewline " " |
| 1764 | } |
| 1765 | writeln -nonewline "\"\$(OX)\\${s}_.c\""; incr i |
| 1766 | } |
| 1767 | foreach s [lsort $src_ext] { |
| 1768 | writeln " \\" |
| 1769 | writeln -nonewline " " |
| 1770 | writeln -nonewline "\"\$(SRCDIR_extsrc)\\${s}.c\""; incr i |
| 1771 | } |
| 1772 | writeln "\n" |
| 1773 | writeln -nonewline "EXTRA_FILES = " |
| 1774 | set i 0 |
| 1775 | foreach s [lsort $extra_files] { |
| 1776 | if {$i > 0} { |
| @@ -2002,10 +2010,15 @@ | |
| 2010 | writeln " \\" |
| 2011 | writeln -nonewline "\t\t\t" |
| 2012 | } |
| 2013 | writeln -nonewline "\"\$(OX)\\${s}_.c\":\"\$(OX)\\$s.h\""; incr i |
| 2014 | } |
| 2015 | foreach s [lsort $src_ext] { |
| 2016 | writeln " \\" |
| 2017 | writeln -nonewline "\t\t\t" |
| 2018 | writeln -nonewline "\"\$(SRCDIR_extsrc)\\${s}.c\":\"\$(OX)\\$s.h\""; incr i |
| 2019 | } |
| 2020 | writeln " \\\n\t\t\t\"\$(SRCDIR_extsrc)\\sqlite3.h\" \\" |
| 2021 | writeln "\t\t\t\"\$(SRCDIR)\\th.h\" \\" |
| 2022 | writeln "\t\t\t\"\$(OX)\\VERSION.h\" \\" |
| 2023 | writeln "\t\t\t\"\$(SRCDIR_extsrc)\\cson_amalgamation.h\"" |
| 2024 | writeln "\t@copy /Y nul: $@" |
| 2025 |
+1
-1
| --- win/Makefile.dmc | ||
| +++ win/Makefile.dmc | ||
| @@ -1007,7 +1007,7 @@ | ||
| 1007 | 1007 | |
| 1008 | 1008 | zip_.c : $(SRCDIR)\zip.c |
| 1009 | 1009 | +translate$E $** > $@ |
| 1010 | 1010 | |
| 1011 | 1011 | headers: makeheaders$E page_index.h builtin_data.h VERSION.h |
| 1012 | - +makeheaders$E add_.c:add.h ajax_.c:ajax.h alerts_.c:alerts.h allrepo_.c:allrepo.h attach_.c:attach.h backlink_.c:backlink.h backoffice_.c:backoffice.h bag_.c:bag.h bisect_.c:bisect.h blob_.c:blob.h branch_.c:branch.h browse_.c:browse.h builtin_.c:builtin.h bundle_.c:bundle.h cache_.c:cache.h capabilities_.c:capabilities.h captcha_.c:captcha.h cgi_.c:cgi.h chat_.c:chat.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h color_.c:color.h comformat_.c:comformat.h configure_.c:configure.h content_.c:content.h cookies_.c:cookies.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h deltafunc_.c:deltafunc.h descendants_.c:descendants.h diff_.c:diff.h diffcmd_.c:diffcmd.h dispatch_.c:dispatch.h doc_.c:doc.h encode_.c:encode.h etag_.c:etag.h event_.c:event.h export_.c:export.h extcgi_.c:extcgi.h file_.c:file.h fileedit_.c:fileedit.h finfo_.c:finfo.h foci_.c:foci.h forum_.c:forum.h fshell_.c:fshell.h fusefs_.c:fusefs.h fuzz_.c:fuzz.h glob_.c:glob.h graph_.c:graph.h gzip_.c:gzip.h hname_.c:hname.h hook_.c:hook.h http_.c:http.h http_socket_.c:http_socket.h http_ssl_.c:http_ssl.h http_transport_.c:http_transport.h import_.c:import.h info_.c:info.h interwiki_.c:interwiki.h json_.c:json.h json_artifact_.c:json_artifact.h json_branch_.c:json_branch.h json_config_.c:json_config.h json_diff_.c:json_diff.h json_dir_.c:json_dir.h json_finfo_.c:json_finfo.h json_login_.c:json_login.h json_query_.c:json_query.h json_report_.c:json_report.h json_status_.c:json_status.h json_tag_.c:json_tag.h json_timeline_.c:json_timeline.h json_user_.c:json_user.h json_wiki_.c:json_wiki.h leaf_.c:leaf.h loadctrl_.c:loadctrl.h login_.c:login.h lookslike_.c:lookslike.h main_.c:main.h manifest_.c:manifest.h markdown_.c:markdown.h markdown_html_.c:markdown_html.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h moderate_.c:moderate.h name_.c:name.h patch_.c:patch.h path_.c:path.h piechart_.c:piechart.h pikchrshow_.c:pikchrshow.h pivot_.c:pivot.h popen_.c:popen.h pqueue_.c:pqueue.h printf_.c:printf.h publish_.c:publish.h purge_.c:purge.h rebuild_.c:rebuild.h regexp_.c:regexp.h repolist_.c:repolist.h report_.c:report.h rss_.c:rss.h schema_.c:schema.h search_.c:search.h security_audit_.c:security_audit.h setup_.c:setup.h setupuser_.c:setupuser.h sha1_.c:sha1.h sha1hard_.c:sha1hard.h sha3_.c:sha3.h shun_.c:shun.h sitemap_.c:sitemap.h skins_.c:skins.h smtp_.c:smtp.h sqlcmd_.c:sqlcmd.h stash_.c:stash.h stat_.c:stat.h statrep_.c:statrep.h style_.c:style.h sync_.c:sync.h tag_.c:tag.h tar_.c:tar.h terminal_.c:terminal.h th_main_.c:th_main.h timeline_.c:timeline.h tkt_.c:tkt.h tktsetup_.c:tktsetup.h undo_.c:undo.h unicode_.c:unicode.h unversioned_.c:unversioned.h update_.c:update.h url_.c:url.h user_.c:user.h utf8_.c:utf8.h util_.c:util.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h winfile_.c:winfile.h winhttp_.c:winhttp.h xfer_.c:xfer.h xfersetup_.c:xfersetup.h zip_.c:zip.h $(SRCDIR_extsrc)\sqlite3.h $(SRCDIR)\th.h VERSION.h $(SRCDIR_extsrc)\cson_amalgamation.h | |
| 1012 | + +makeheaders$E add_.c:add.h ajax_.c:ajax.h alerts_.c:alerts.h allrepo_.c:allrepo.h attach_.c:attach.h backlink_.c:backlink.h backoffice_.c:backoffice.h bag_.c:bag.h bisect_.c:bisect.h blob_.c:blob.h branch_.c:branch.h browse_.c:browse.h builtin_.c:builtin.h bundle_.c:bundle.h cache_.c:cache.h capabilities_.c:capabilities.h captcha_.c:captcha.h cgi_.c:cgi.h chat_.c:chat.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h color_.c:color.h comformat_.c:comformat.h configure_.c:configure.h content_.c:content.h cookies_.c:cookies.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h deltafunc_.c:deltafunc.h descendants_.c:descendants.h diff_.c:diff.h diffcmd_.c:diffcmd.h dispatch_.c:dispatch.h doc_.c:doc.h encode_.c:encode.h etag_.c:etag.h event_.c:event.h export_.c:export.h extcgi_.c:extcgi.h file_.c:file.h fileedit_.c:fileedit.h finfo_.c:finfo.h foci_.c:foci.h forum_.c:forum.h fshell_.c:fshell.h fusefs_.c:fusefs.h fuzz_.c:fuzz.h glob_.c:glob.h graph_.c:graph.h gzip_.c:gzip.h hname_.c:hname.h hook_.c:hook.h http_.c:http.h http_socket_.c:http_socket.h http_ssl_.c:http_ssl.h http_transport_.c:http_transport.h import_.c:import.h info_.c:info.h interwiki_.c:interwiki.h json_.c:json.h json_artifact_.c:json_artifact.h json_branch_.c:json_branch.h json_config_.c:json_config.h json_diff_.c:json_diff.h json_dir_.c:json_dir.h json_finfo_.c:json_finfo.h json_login_.c:json_login.h json_query_.c:json_query.h json_report_.c:json_report.h json_status_.c:json_status.h json_tag_.c:json_tag.h json_timeline_.c:json_timeline.h json_user_.c:json_user.h json_wiki_.c:json_wiki.h leaf_.c:leaf.h loadctrl_.c:loadctrl.h login_.c:login.h lookslike_.c:lookslike.h main_.c:main.h manifest_.c:manifest.h markdown_.c:markdown.h markdown_html_.c:markdown_html.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h moderate_.c:moderate.h name_.c:name.h patch_.c:patch.h path_.c:path.h piechart_.c:piechart.h pikchrshow_.c:pikchrshow.h pivot_.c:pivot.h popen_.c:popen.h pqueue_.c:pqueue.h printf_.c:printf.h publish_.c:publish.h purge_.c:purge.h rebuild_.c:rebuild.h regexp_.c:regexp.h repolist_.c:repolist.h report_.c:report.h rss_.c:rss.h schema_.c:schema.h search_.c:search.h security_audit_.c:security_audit.h setup_.c:setup.h setupuser_.c:setupuser.h sha1_.c:sha1.h sha1hard_.c:sha1hard.h sha3_.c:sha3.h shun_.c:shun.h sitemap_.c:sitemap.h skins_.c:skins.h smtp_.c:smtp.h sqlcmd_.c:sqlcmd.h stash_.c:stash.h stat_.c:stat.h statrep_.c:statrep.h style_.c:style.h sync_.c:sync.h tag_.c:tag.h tar_.c:tar.h terminal_.c:terminal.h th_main_.c:th_main.h timeline_.c:timeline.h tkt_.c:tkt.h tktsetup_.c:tktsetup.h undo_.c:undo.h unicode_.c:unicode.h unversioned_.c:unversioned.h update_.c:update.h url_.c:url.h user_.c:user.h utf8_.c:utf8.h util_.c:util.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h winfile_.c:winfile.h winhttp_.c:winhttp.h xfer_.c:xfer.h xfersetup_.c:xfersetup.h zip_.c:zip.h $(SRCDIR_extsrc)\pikchr.c:pikchr.h $(SRCDIR_extsrc)\sqlite3.h $(SRCDIR)\th.h VERSION.h $(SRCDIR_extsrc)\cson_amalgamation.h | |
| 1013 | 1013 | @copy /Y nul: headers |
| 1014 | 1014 |
| --- win/Makefile.dmc | |
| +++ win/Makefile.dmc | |
| @@ -1007,7 +1007,7 @@ | |
| 1007 | |
| 1008 | zip_.c : $(SRCDIR)\zip.c |
| 1009 | +translate$E $** > $@ |
| 1010 | |
| 1011 | headers: makeheaders$E page_index.h builtin_data.h VERSION.h |
| 1012 | +makeheaders$E add_.c:add.h ajax_.c:ajax.h alerts_.c:alerts.h allrepo_.c:allrepo.h attach_.c:attach.h backlink_.c:backlink.h backoffice_.c:backoffice.h bag_.c:bag.h bisect_.c:bisect.h blob_.c:blob.h branch_.c:branch.h browse_.c:browse.h builtin_.c:builtin.h bundle_.c:bundle.h cache_.c:cache.h capabilities_.c:capabilities.h captcha_.c:captcha.h cgi_.c:cgi.h chat_.c:chat.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h color_.c:color.h comformat_.c:comformat.h configure_.c:configure.h content_.c:content.h cookies_.c:cookies.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h deltafunc_.c:deltafunc.h descendants_.c:descendants.h diff_.c:diff.h diffcmd_.c:diffcmd.h dispatch_.c:dispatch.h doc_.c:doc.h encode_.c:encode.h etag_.c:etag.h event_.c:event.h export_.c:export.h extcgi_.c:extcgi.h file_.c:file.h fileedit_.c:fileedit.h finfo_.c:finfo.h foci_.c:foci.h forum_.c:forum.h fshell_.c:fshell.h fusefs_.c:fusefs.h fuzz_.c:fuzz.h glob_.c:glob.h graph_.c:graph.h gzip_.c:gzip.h hname_.c:hname.h hook_.c:hook.h http_.c:http.h http_socket_.c:http_socket.h http_ssl_.c:http_ssl.h http_transport_.c:http_transport.h import_.c:import.h info_.c:info.h interwiki_.c:interwiki.h json_.c:json.h json_artifact_.c:json_artifact.h json_branch_.c:json_branch.h json_config_.c:json_config.h json_diff_.c:json_diff.h json_dir_.c:json_dir.h json_finfo_.c:json_finfo.h json_login_.c:json_login.h json_query_.c:json_query.h json_report_.c:json_report.h json_status_.c:json_status.h json_tag_.c:json_tag.h json_timeline_.c:json_timeline.h json_user_.c:json_user.h json_wiki_.c:json_wiki.h leaf_.c:leaf.h loadctrl_.c:loadctrl.h login_.c:login.h lookslike_.c:lookslike.h main_.c:main.h manifest_.c:manifest.h markdown_.c:markdown.h markdown_html_.c:markdown_html.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h moderate_.c:moderate.h name_.c:name.h patch_.c:patch.h path_.c:path.h piechart_.c:piechart.h pikchrshow_.c:pikchrshow.h pivot_.c:pivot.h popen_.c:popen.h pqueue_.c:pqueue.h printf_.c:printf.h publish_.c:publish.h purge_.c:purge.h rebuild_.c:rebuild.h regexp_.c:regexp.h repolist_.c:repolist.h report_.c:report.h rss_.c:rss.h schema_.c:schema.h search_.c:search.h security_audit_.c:security_audit.h setup_.c:setup.h setupuser_.c:setupuser.h sha1_.c:sha1.h sha1hard_.c:sha1hard.h sha3_.c:sha3.h shun_.c:shun.h sitemap_.c:sitemap.h skins_.c:skins.h smtp_.c:smtp.h sqlcmd_.c:sqlcmd.h stash_.c:stash.h stat_.c:stat.h statrep_.c:statrep.h style_.c:style.h sync_.c:sync.h tag_.c:tag.h tar_.c:tar.h terminal_.c:terminal.h th_main_.c:th_main.h timeline_.c:timeline.h tkt_.c:tkt.h tktsetup_.c:tktsetup.h undo_.c:undo.h unicode_.c:unicode.h unversioned_.c:unversioned.h update_.c:update.h url_.c:url.h user_.c:user.h utf8_.c:utf8.h util_.c:util.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h winfile_.c:winfile.h winhttp_.c:winhttp.h xfer_.c:xfer.h xfersetup_.c:xfersetup.h zip_.c:zip.h $(SRCDIR_extsrc)\sqlite3.h $(SRCDIR)\th.h VERSION.h $(SRCDIR_extsrc)\cson_amalgamation.h |
| 1013 | @copy /Y nul: headers |
| 1014 |
| --- win/Makefile.dmc | |
| +++ win/Makefile.dmc | |
| @@ -1007,7 +1007,7 @@ | |
| 1007 | |
| 1008 | zip_.c : $(SRCDIR)\zip.c |
| 1009 | +translate$E $** > $@ |
| 1010 | |
| 1011 | headers: makeheaders$E page_index.h builtin_data.h VERSION.h |
| 1012 | +makeheaders$E add_.c:add.h ajax_.c:ajax.h alerts_.c:alerts.h allrepo_.c:allrepo.h attach_.c:attach.h backlink_.c:backlink.h backoffice_.c:backoffice.h bag_.c:bag.h bisect_.c:bisect.h blob_.c:blob.h branch_.c:branch.h browse_.c:browse.h builtin_.c:builtin.h bundle_.c:bundle.h cache_.c:cache.h capabilities_.c:capabilities.h captcha_.c:captcha.h cgi_.c:cgi.h chat_.c:chat.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h color_.c:color.h comformat_.c:comformat.h configure_.c:configure.h content_.c:content.h cookies_.c:cookies.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h deltafunc_.c:deltafunc.h descendants_.c:descendants.h diff_.c:diff.h diffcmd_.c:diffcmd.h dispatch_.c:dispatch.h doc_.c:doc.h encode_.c:encode.h etag_.c:etag.h event_.c:event.h export_.c:export.h extcgi_.c:extcgi.h file_.c:file.h fileedit_.c:fileedit.h finfo_.c:finfo.h foci_.c:foci.h forum_.c:forum.h fshell_.c:fshell.h fusefs_.c:fusefs.h fuzz_.c:fuzz.h glob_.c:glob.h graph_.c:graph.h gzip_.c:gzip.h hname_.c:hname.h hook_.c:hook.h http_.c:http.h http_socket_.c:http_socket.h http_ssl_.c:http_ssl.h http_transport_.c:http_transport.h import_.c:import.h info_.c:info.h interwiki_.c:interwiki.h json_.c:json.h json_artifact_.c:json_artifact.h json_branch_.c:json_branch.h json_config_.c:json_config.h json_diff_.c:json_diff.h json_dir_.c:json_dir.h json_finfo_.c:json_finfo.h json_login_.c:json_login.h json_query_.c:json_query.h json_report_.c:json_report.h json_status_.c:json_status.h json_tag_.c:json_tag.h json_timeline_.c:json_timeline.h json_user_.c:json_user.h json_wiki_.c:json_wiki.h leaf_.c:leaf.h loadctrl_.c:loadctrl.h login_.c:login.h lookslike_.c:lookslike.h main_.c:main.h manifest_.c:manifest.h markdown_.c:markdown.h markdown_html_.c:markdown_html.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h moderate_.c:moderate.h name_.c:name.h patch_.c:patch.h path_.c:path.h piechart_.c:piechart.h pikchrshow_.c:pikchrshow.h pivot_.c:pivot.h popen_.c:popen.h pqueue_.c:pqueue.h printf_.c:printf.h publish_.c:publish.h purge_.c:purge.h rebuild_.c:rebuild.h regexp_.c:regexp.h repolist_.c:repolist.h report_.c:report.h rss_.c:rss.h schema_.c:schema.h search_.c:search.h security_audit_.c:security_audit.h setup_.c:setup.h setupuser_.c:setupuser.h sha1_.c:sha1.h sha1hard_.c:sha1hard.h sha3_.c:sha3.h shun_.c:shun.h sitemap_.c:sitemap.h skins_.c:skins.h smtp_.c:smtp.h sqlcmd_.c:sqlcmd.h stash_.c:stash.h stat_.c:stat.h statrep_.c:statrep.h style_.c:style.h sync_.c:sync.h tag_.c:tag.h tar_.c:tar.h terminal_.c:terminal.h th_main_.c:th_main.h timeline_.c:timeline.h tkt_.c:tkt.h tktsetup_.c:tktsetup.h undo_.c:undo.h unicode_.c:unicode.h unversioned_.c:unversioned.h update_.c:update.h url_.c:url.h user_.c:user.h utf8_.c:utf8.h util_.c:util.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h winfile_.c:winfile.h winhttp_.c:winhttp.h xfer_.c:xfer.h xfersetup_.c:xfersetup.h zip_.c:zip.h $(SRCDIR_extsrc)\pikchr.c:pikchr.h $(SRCDIR_extsrc)\sqlite3.h $(SRCDIR)\th.h VERSION.h $(SRCDIR_extsrc)\cson_amalgamation.h |
| 1013 | @copy /Y nul: headers |
| 1014 |
+3
-1
| --- win/Makefile.msc | ||
| +++ win/Makefile.msc | ||
| @@ -490,11 +490,12 @@ | ||
| 490 | 490 | "$(OX)\wikiformat_.c" \ |
| 491 | 491 | "$(OX)\winfile_.c" \ |
| 492 | 492 | "$(OX)\winhttp_.c" \ |
| 493 | 493 | "$(OX)\xfer_.c" \ |
| 494 | 494 | "$(OX)\xfersetup_.c" \ |
| 495 | - "$(OX)\zip_.c" | |
| 495 | + "$(OX)\zip_.c" \ | |
| 496 | + "$(SRCDIR_extsrc)\pikchr.c" | |
| 496 | 497 | |
| 497 | 498 | EXTRA_FILES = "$(SRCDIR)\..\skins\ardoise\css.txt" \ |
| 498 | 499 | "$(SRCDIR)\..\skins\ardoise\details.txt" \ |
| 499 | 500 | "$(SRCDIR)\..\skins\ardoise\footer.txt" \ |
| 500 | 501 | "$(SRCDIR)\..\skins\ardoise\header.txt" \ |
| @@ -2234,10 +2235,11 @@ | ||
| 2234 | 2235 | "$(OX)\winfile_.c":"$(OX)\winfile.h" \ |
| 2235 | 2236 | "$(OX)\winhttp_.c":"$(OX)\winhttp.h" \ |
| 2236 | 2237 | "$(OX)\xfer_.c":"$(OX)\xfer.h" \ |
| 2237 | 2238 | "$(OX)\xfersetup_.c":"$(OX)\xfersetup.h" \ |
| 2238 | 2239 | "$(OX)\zip_.c":"$(OX)\zip.h" \ |
| 2240 | + "$(SRCDIR_extsrc)\pikchr.c":"$(OX)\pikchr.h" \ | |
| 2239 | 2241 | "$(SRCDIR_extsrc)\sqlite3.h" \ |
| 2240 | 2242 | "$(SRCDIR)\th.h" \ |
| 2241 | 2243 | "$(OX)\VERSION.h" \ |
| 2242 | 2244 | "$(SRCDIR_extsrc)\cson_amalgamation.h" |
| 2243 | 2245 | @copy /Y nul: $@ |
| 2244 | 2246 |
| --- win/Makefile.msc | |
| +++ win/Makefile.msc | |
| @@ -490,11 +490,12 @@ | |
| 490 | "$(OX)\wikiformat_.c" \ |
| 491 | "$(OX)\winfile_.c" \ |
| 492 | "$(OX)\winhttp_.c" \ |
| 493 | "$(OX)\xfer_.c" \ |
| 494 | "$(OX)\xfersetup_.c" \ |
| 495 | "$(OX)\zip_.c" |
| 496 | |
| 497 | EXTRA_FILES = "$(SRCDIR)\..\skins\ardoise\css.txt" \ |
| 498 | "$(SRCDIR)\..\skins\ardoise\details.txt" \ |
| 499 | "$(SRCDIR)\..\skins\ardoise\footer.txt" \ |
| 500 | "$(SRCDIR)\..\skins\ardoise\header.txt" \ |
| @@ -2234,10 +2235,11 @@ | |
| 2234 | "$(OX)\winfile_.c":"$(OX)\winfile.h" \ |
| 2235 | "$(OX)\winhttp_.c":"$(OX)\winhttp.h" \ |
| 2236 | "$(OX)\xfer_.c":"$(OX)\xfer.h" \ |
| 2237 | "$(OX)\xfersetup_.c":"$(OX)\xfersetup.h" \ |
| 2238 | "$(OX)\zip_.c":"$(OX)\zip.h" \ |
| 2239 | "$(SRCDIR_extsrc)\sqlite3.h" \ |
| 2240 | "$(SRCDIR)\th.h" \ |
| 2241 | "$(OX)\VERSION.h" \ |
| 2242 | "$(SRCDIR_extsrc)\cson_amalgamation.h" |
| 2243 | @copy /Y nul: $@ |
| 2244 |
| --- win/Makefile.msc | |
| +++ win/Makefile.msc | |
| @@ -490,11 +490,12 @@ | |
| 490 | "$(OX)\wikiformat_.c" \ |
| 491 | "$(OX)\winfile_.c" \ |
| 492 | "$(OX)\winhttp_.c" \ |
| 493 | "$(OX)\xfer_.c" \ |
| 494 | "$(OX)\xfersetup_.c" \ |
| 495 | "$(OX)\zip_.c" \ |
| 496 | "$(SRCDIR_extsrc)\pikchr.c" |
| 497 | |
| 498 | EXTRA_FILES = "$(SRCDIR)\..\skins\ardoise\css.txt" \ |
| 499 | "$(SRCDIR)\..\skins\ardoise\details.txt" \ |
| 500 | "$(SRCDIR)\..\skins\ardoise\footer.txt" \ |
| 501 | "$(SRCDIR)\..\skins\ardoise\header.txt" \ |
| @@ -2234,10 +2235,11 @@ | |
| 2235 | "$(OX)\winfile_.c":"$(OX)\winfile.h" \ |
| 2236 | "$(OX)\winhttp_.c":"$(OX)\winhttp.h" \ |
| 2237 | "$(OX)\xfer_.c":"$(OX)\xfer.h" \ |
| 2238 | "$(OX)\xfersetup_.c":"$(OX)\xfersetup.h" \ |
| 2239 | "$(OX)\zip_.c":"$(OX)\zip.h" \ |
| 2240 | "$(SRCDIR_extsrc)\pikchr.c":"$(OX)\pikchr.h" \ |
| 2241 | "$(SRCDIR_extsrc)\sqlite3.h" \ |
| 2242 | "$(SRCDIR)\th.h" \ |
| 2243 | "$(OX)\VERSION.h" \ |
| 2244 | "$(SRCDIR_extsrc)\cson_amalgamation.h" |
| 2245 | @copy /Y nul: $@ |
| 2246 |
+3
-1
| --- win/Makefile.msc | ||
| +++ win/Makefile.msc | ||
| @@ -490,11 +490,12 @@ | ||
| 490 | 490 | "$(OX)\wikiformat_.c" \ |
| 491 | 491 | "$(OX)\winfile_.c" \ |
| 492 | 492 | "$(OX)\winhttp_.c" \ |
| 493 | 493 | "$(OX)\xfer_.c" \ |
| 494 | 494 | "$(OX)\xfersetup_.c" \ |
| 495 | - "$(OX)\zip_.c" | |
| 495 | + "$(OX)\zip_.c" \ | |
| 496 | + "$(SRCDIR_extsrc)\pikchr.c" | |
| 496 | 497 | |
| 497 | 498 | EXTRA_FILES = "$(SRCDIR)\..\skins\ardoise\css.txt" \ |
| 498 | 499 | "$(SRCDIR)\..\skins\ardoise\details.txt" \ |
| 499 | 500 | "$(SRCDIR)\..\skins\ardoise\footer.txt" \ |
| 500 | 501 | "$(SRCDIR)\..\skins\ardoise\header.txt" \ |
| @@ -2234,10 +2235,11 @@ | ||
| 2234 | 2235 | "$(OX)\winfile_.c":"$(OX)\winfile.h" \ |
| 2235 | 2236 | "$(OX)\winhttp_.c":"$(OX)\winhttp.h" \ |
| 2236 | 2237 | "$(OX)\xfer_.c":"$(OX)\xfer.h" \ |
| 2237 | 2238 | "$(OX)\xfersetup_.c":"$(OX)\xfersetup.h" \ |
| 2238 | 2239 | "$(OX)\zip_.c":"$(OX)\zip.h" \ |
| 2240 | + "$(SRCDIR_extsrc)\pikchr.c":"$(OX)\pikchr.h" \ | |
| 2239 | 2241 | "$(SRCDIR_extsrc)\sqlite3.h" \ |
| 2240 | 2242 | "$(SRCDIR)\th.h" \ |
| 2241 | 2243 | "$(OX)\VERSION.h" \ |
| 2242 | 2244 | "$(SRCDIR_extsrc)\cson_amalgamation.h" |
| 2243 | 2245 | @copy /Y nul: $@ |
| 2244 | 2246 |
| --- win/Makefile.msc | |
| +++ win/Makefile.msc | |
| @@ -490,11 +490,12 @@ | |
| 490 | "$(OX)\wikiformat_.c" \ |
| 491 | "$(OX)\winfile_.c" \ |
| 492 | "$(OX)\winhttp_.c" \ |
| 493 | "$(OX)\xfer_.c" \ |
| 494 | "$(OX)\xfersetup_.c" \ |
| 495 | "$(OX)\zip_.c" |
| 496 | |
| 497 | EXTRA_FILES = "$(SRCDIR)\..\skins\ardoise\css.txt" \ |
| 498 | "$(SRCDIR)\..\skins\ardoise\details.txt" \ |
| 499 | "$(SRCDIR)\..\skins\ardoise\footer.txt" \ |
| 500 | "$(SRCDIR)\..\skins\ardoise\header.txt" \ |
| @@ -2234,10 +2235,11 @@ | |
| 2234 | "$(OX)\winfile_.c":"$(OX)\winfile.h" \ |
| 2235 | "$(OX)\winhttp_.c":"$(OX)\winhttp.h" \ |
| 2236 | "$(OX)\xfer_.c":"$(OX)\xfer.h" \ |
| 2237 | "$(OX)\xfersetup_.c":"$(OX)\xfersetup.h" \ |
| 2238 | "$(OX)\zip_.c":"$(OX)\zip.h" \ |
| 2239 | "$(SRCDIR_extsrc)\sqlite3.h" \ |
| 2240 | "$(SRCDIR)\th.h" \ |
| 2241 | "$(OX)\VERSION.h" \ |
| 2242 | "$(SRCDIR_extsrc)\cson_amalgamation.h" |
| 2243 | @copy /Y nul: $@ |
| 2244 |
| --- win/Makefile.msc | |
| +++ win/Makefile.msc | |
| @@ -490,11 +490,12 @@ | |
| 490 | "$(OX)\wikiformat_.c" \ |
| 491 | "$(OX)\winfile_.c" \ |
| 492 | "$(OX)\winhttp_.c" \ |
| 493 | "$(OX)\xfer_.c" \ |
| 494 | "$(OX)\xfersetup_.c" \ |
| 495 | "$(OX)\zip_.c" \ |
| 496 | "$(SRCDIR_extsrc)\pikchr.c" |
| 497 | |
| 498 | EXTRA_FILES = "$(SRCDIR)\..\skins\ardoise\css.txt" \ |
| 499 | "$(SRCDIR)\..\skins\ardoise\details.txt" \ |
| 500 | "$(SRCDIR)\..\skins\ardoise\footer.txt" \ |
| 501 | "$(SRCDIR)\..\skins\ardoise\header.txt" \ |
| @@ -2234,10 +2235,11 @@ | |
| 2235 | "$(OX)\winfile_.c":"$(OX)\winfile.h" \ |
| 2236 | "$(OX)\winhttp_.c":"$(OX)\winhttp.h" \ |
| 2237 | "$(OX)\xfer_.c":"$(OX)\xfer.h" \ |
| 2238 | "$(OX)\xfersetup_.c":"$(OX)\xfersetup.h" \ |
| 2239 | "$(OX)\zip_.c":"$(OX)\zip.h" \ |
| 2240 | "$(SRCDIR_extsrc)\pikchr.c":"$(OX)\pikchr.h" \ |
| 2241 | "$(SRCDIR_extsrc)\sqlite3.h" \ |
| 2242 | "$(SRCDIR)\th.h" \ |
| 2243 | "$(OX)\VERSION.h" \ |
| 2244 | "$(SRCDIR_extsrc)\cson_amalgamation.h" |
| 2245 | @copy /Y nul: $@ |
| 2246 |