Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/KRISTAPS]: src/external/bsd/mdocml/dist Changes in version 1.14.5, relea...



details:   https://anonhg.NetBSD.org/src/rev/f696f05e7ac2
branches:  KRISTAPS
changeset: 449565:f696f05e7ac2
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Mar 10 22:28:56 2019 +0000

description:
Changes in version 1.14.5, released on March 10, 2019

    --- MAJOR NEW FEATURES ---
 * apropos(1): improve POSIX compliance by accepting case-insensitive
   extended regular expressions by default
 * new -O tag[=term] output option (open a page at the definition of a term)
 * tbl(7) -T html: spanning and horizontal and vertical alignment of cells
 * tbl(7) -T html: draw lines on the edges of table cells
 * tbl(7) -T utf8: render lines with the Unicode box drawing characters
 * mandoc is now able to handle the manual pages of the groff package.
    --- MINOR NEW FEATURES ---
 * -T html: new option -O toc (table of contents)
 * -T html: second argument to -O man to support local and remote links
 * mdoc(7) .Bd -centered now fills the text contained in it
 * man-ext .SY and .YS macros (synopsis block)
 * man-ext .TQ macro (tagged paragraph without vertical space before it)
 * tbl(7) \& explicit alignment indicator
 * roff(7) .shift, .while, and .return requests
 * roff(7) .char request (output glyph definition)
 * roff(7) .nop request (no operation)
 * roff(7) .ft request: handle the CB, CI, and CR fonts
 * roff(7) .if c conditional (character available)
 * roff(7) \\$@ escape sequence (insert all macro arguments, quoted)
 * roff(7) \*(.T predefined string (interpolate output device name)
 * roff(7) \[charNNN] escape sequence (for printable ASCII characters)
 * roff(7) \# escape sequence (line continuation with comment)
    --- HTML OUTPUT SYNTAX CORRECTIONS ---
 * Render .br and \p as <br/>, not as an empty <div>.
 * Render .Pp and .PP as <p> and automatically close it when needed.
 * Stop writing empty list elements for non-compact .Bl -tag lists.
 * Do not put <p> inside <a> if .UR or .MT contain .PP.
 * Implement tooltips purely in CSS rather than abusing title= attributes.
    --- MINOR FUNCTIONAL IMPROVEMENTS ---
 * many improvements to the handling of fill and no-fill mode
 * tbl(7): better column widths in the presence of horizontal spans
 * several minor improvements to escape sequence handling
 * several minor improvements to manual font handling
 * portability: autodetect need for _GNU_SOURCE or _OPENBSD_SOURCE
 * portability: autodetect whether less(1) supports the -T option
 * large numbers of bugfixes of diverse kinds
    --- STRUCTURAL IMPROVEMENTS ---
 * Disentangle eqn(7) and tbl(7) from other parser header files,
   and clean up some parser data structures.
 * Substantially simplify error and warning message infrastructure.
    --- THANKS TO ---
 * John Gardner for crucial help implementing tooltips in CSS.
 * Alexander Bluhm, Raphael Graf, Ted Unangst (OpenBSD)
   and Daniel Sabogal (Alpine Linux) for patches.
 * Anthony Bentley and Jason McIntyre (OpenBSD) for documentation patches,
   suggesting new features, bug reports, and useful discussions.
 * Kyle Evans and Baptiste Daroussin (FreeBSD) for minor patches.
 * Pali Rohar for suggesting multiple new features and for reporting
   several bugs and missing features.
 * Klemens Nanni (OpenBSD) for suggesting multiple new features.
 * Kristaps Dzonsons (bsd.lv), Marc Espie (OpenBSD), Adam Kalisz,
   and Laura Morales for suggesting new features.
 * Wolfram Schneider and Yuri Pankov (FreeBSD) for reporting missing features.
 * Edward Tomasz Napierala (FreeBSD) for suggesting a feature improvement.
 * Thomas Klausner (NetBSD) and Sevan Janiyan (SmartOS)
   for bug reports and release testing.
 * Bryan Steele, Janne Johansson, Kurt Mosiejczuk, Mike Belopuhov, Theo
   Buehler, Todd Miller (OpenBSD), Andreas Gustafsson, Christos Zoulas,
   Robert Elz (NetBSD), Kurt Jaeger (FreeBSD), Fabio Scotoni, Kelvin
   Sherlock, Mark Harris, Orestis Ioannou, Raf Czlonka, and Sean Farrell
   for bug reports.
 * Ulrich Spoerlein (FreeBSD), Leah Neukirchen (Void Linux),
   Matej Cepl (openSUSE), and Jan Stary (MacOS X) for release testing.
 * Brian Callahan and Stuart Henderson (OpenBSD) for help
   with the OpenBSD groff port.
 * Bertrand Garrigues, Branden Robinson, Ralph Corderoy, and Werner
   Lemberg (GNU troff) for checking groff patches.
 * Scott Cheloha, Theo de Raadt (OpenBSD)
   and Natanael Copa (Alpine Linux) for useful discussions.

diffstat:

 external/bsd/mdocml/dist/INSTALL                 |     7 +-
 external/bsd/mdocml/dist/LICENSE                 |    11 +-
 external/bsd/mdocml/dist/Makefile                |    60 +-
 external/bsd/mdocml/dist/Makefile.depend         |    56 +-
 external/bsd/mdocml/dist/NEWS                    |    76 +-
 external/bsd/mdocml/dist/TODO                    |   124 +-
 external/bsd/mdocml/dist/apropos.1               |    61 +-
 external/bsd/mdocml/dist/arch.c                  |    49 +-
 external/bsd/mdocml/dist/att.c                   |     4 +-
 external/bsd/mdocml/dist/cgi.c                   |   156 +-
 external/bsd/mdocml/dist/chars.c                 |    37 +-
 external/bsd/mdocml/dist/configure               |   142 +-
 external/bsd/mdocml/dist/configure.local.example |    18 +-
 external/bsd/mdocml/dist/dbm.c                   |     8 +-
 external/bsd/mdocml/dist/demandoc.c              |    24 +-
 external/bsd/mdocml/dist/eqn.c                   |    93 +-
 external/bsd/mdocml/dist/eqn.h                   |    72 +
 external/bsd/mdocml/dist/eqn_html.c              |     3 +-
 external/bsd/mdocml/dist/eqn_parse.h             |    48 +
 external/bsd/mdocml/dist/eqn_term.c              |     6 +-
 external/bsd/mdocml/dist/gmdiff                  |     4 +-
 external/bsd/mdocml/dist/html.c                  |   275 ++-
 external/bsd/mdocml/dist/html.h                  |    19 +-
 external/bsd/mdocml/dist/lib.c                   |     5 +-
 external/bsd/mdocml/dist/lib.in                  |     3 +-
 external/bsd/mdocml/dist/libman.h                |    22 +-
 external/bsd/mdocml/dist/libmandoc.h             |    54 +-
 external/bsd/mdocml/dist/libmdoc.h               |    16 +-
 external/bsd/mdocml/dist/main.c                  |   223 +-
 external/bsd/mdocml/dist/main.h                  |    24 +-
 external/bsd/mdocml/dist/man.1                   |    25 +-
 external/bsd/mdocml/dist/man.7                   |   782 +++-------
 external/bsd/mdocml/dist/man.c                   |   170 +-
 external/bsd/mdocml/dist/man.conf.5              |     7 +-
 external/bsd/mdocml/dist/man.h                   |     3 +-
 external/bsd/mdocml/dist/man_html.c              |   469 +++---
 external/bsd/mdocml/dist/man_macro.c             |   214 +-
 external/bsd/mdocml/dist/man_term.c              |   325 ++--
 external/bsd/mdocml/dist/man_validate.c          |   211 +-
 external/bsd/mdocml/dist/manconf.h               |     8 +-
 external/bsd/mdocml/dist/mandoc.1                |   138 +-
 external/bsd/mdocml/dist/mandoc.3                |   187 +--
 external/bsd/mdocml/dist/mandoc.c                |   316 ++--
 external/bsd/mdocml/dist/mandoc.css              |   114 +-
 external/bsd/mdocml/dist/mandoc.h                |   241 +---
 external/bsd/mdocml/dist/mandoc_char.7           |    24 +-
 external/bsd/mdocml/dist/mandoc_headers.3        |   406 +++--
 external/bsd/mdocml/dist/mandoc_html.3           |    17 +-
 external/bsd/mdocml/dist/mandoc_msg.c            |   329 ++++
 external/bsd/mdocml/dist/mandoc_parse.h          |    43 +
 external/bsd/mdocml/dist/mandocd.c               |    33 +-
 external/bsd/mdocml/dist/mandocdb.c              |    72 +-
 external/bsd/mdocml/dist/manpath.c               |    24 +-
 external/bsd/mdocml/dist/mansearch.c             |    18 +-
 external/bsd/mdocml/dist/mansearch.h             |     3 +-
 external/bsd/mdocml/dist/mdoc.7                  |  1523 ++++++++++-----------
 external/bsd/mdocml/dist/mdoc.c                  |    59 +-
 external/bsd/mdocml/dist/mdoc.h                  |     5 +-
 external/bsd/mdocml/dist/mdoc_argv.c             |    53 +-
 external/bsd/mdocml/dist/mdoc_html.c             |   443 +++--
 external/bsd/mdocml/dist/mdoc_macro.c            |   272 ++-
 external/bsd/mdocml/dist/mdoc_man.c              |   111 +-
 external/bsd/mdocml/dist/mdoc_markdown.c         |    64 +-
 external/bsd/mdocml/dist/mdoc_state.c            |    60 +-
 external/bsd/mdocml/dist/mdoc_term.c             |   149 +-
 external/bsd/mdocml/dist/mdoc_validate.c         |   559 +++----
 external/bsd/mdocml/dist/msec.c                  |     3 +-
 external/bsd/mdocml/dist/out.c                   |   340 +++-
 external/bsd/mdocml/dist/out.h                   |     5 +-
 external/bsd/mdocml/dist/preconv.c               |     5 +-
 external/bsd/mdocml/dist/read.c                  |   736 +++------
 external/bsd/mdocml/dist/roff.7                  |   607 +++++---
 external/bsd/mdocml/dist/roff.c                  |  1321 ++++++++++++------
 external/bsd/mdocml/dist/roff.h                  |    86 +-
 external/bsd/mdocml/dist/roff_html.c             |    51 +-
 external/bsd/mdocml/dist/roff_int.h              |    58 +-
 external/bsd/mdocml/dist/roff_term.c             |    48 +-
 external/bsd/mdocml/dist/roff_validate.c         |   106 +-
 external/bsd/mdocml/dist/st.c                    |    54 +-
 external/bsd/mdocml/dist/tag.c                   |    45 +-
 external/bsd/mdocml/dist/tag.h                   |     3 +-
 external/bsd/mdocml/dist/tbl.3                   |    33 +-
 external/bsd/mdocml/dist/tbl.7                   |    44 +-
 external/bsd/mdocml/dist/tbl.c                   |    78 +-
 external/bsd/mdocml/dist/tbl.h                   |   122 +
 external/bsd/mdocml/dist/tbl_data.c              |   113 +-
 external/bsd/mdocml/dist/tbl_html.c              |   156 +-
 external/bsd/mdocml/dist/tbl_int.h               |    47 +
 external/bsd/mdocml/dist/tbl_layout.c            |    34 +-
 external/bsd/mdocml/dist/tbl_opts.c              |    22 +-
 external/bsd/mdocml/dist/tbl_parse.h             |    30 +
 external/bsd/mdocml/dist/tbl_term.c              |   665 ++++++--
 external/bsd/mdocml/dist/term.c                  |   511 ++++--
 external/bsd/mdocml/dist/term.h                  |     6 +-
 external/bsd/mdocml/dist/term_ascii.c            |    13 +-
 external/bsd/mdocml/dist/term_tab.c              |     2 +-
 external/bsd/mdocml/dist/test-getsubopt.c        |    13 +-
 external/bsd/mdocml/dist/test-strcasestr.c       |     4 -
 external/bsd/mdocml/dist/test-stringlist.c       |     3 +-
 external/bsd/mdocml/dist/test-strptime.c         |     4 -
 external/bsd/mdocml/dist/test-vasprintf.c        |     6 +-
 external/bsd/mdocml/dist/test-wchar.c            |     6 +-
 external/bsd/mdocml/dist/tree.c                  |    96 +-
 103 files changed, 8279 insertions(+), 6374 deletions(-)

diffs (truncated from 26552 to 300 lines):

diff -r a51648d9b08a -r f696f05e7ac2 external/bsd/mdocml/dist/INSTALL
--- a/external/bsd/mdocml/dist/INSTALL  Tue Aug 14 08:41:01 2018 +0000
+++ b/external/bsd/mdocml/dist/INSTALL  Sun Mar 10 22:28:56 2019 +0000
@@ -1,4 +1,4 @@
-Id: INSTALL,v 1.22 2018/07/31 15:34:00 schwarze Exp 
+Id: INSTALL,v 1.23 2019/03/06 15:58:10 schwarze Exp 
 
 About the portable mandoc distribution
 --------------------------------------
@@ -18,7 +18,7 @@
 
 Enjoy using the mandoc toolset!
 
-Ingo Schwarze, Karlsruhe, August 2018
+Ingo Schwarze, Karlsruhe, March 2019
 
 
 Installation
@@ -67,7 +67,8 @@
 7. Optionally run the regression suite.
 Basically, that amounts to "cd regress && ./regress.pl".
 But you should probably look at "./mandoc -l regress/regress.pl.1"
-first.
+first.  In particular, regarding Solaris systems, look at the BUGS
+section of that manual page.
 
 8. Run "sudo make install".  If you intend to build a binary
 package using some kind of fake root mechanism, you may need a
diff -r a51648d9b08a -r f696f05e7ac2 external/bsd/mdocml/dist/LICENSE
--- a/external/bsd/mdocml/dist/LICENSE  Tue Aug 14 08:41:01 2018 +0000
+++ b/external/bsd/mdocml/dist/LICENSE  Sun Mar 10 22:28:56 2019 +0000
@@ -1,8 +1,8 @@
-Id: LICENSE,v 1.19 2018/07/31 10:18:15 schwarze Exp 
+Id: LICENSE,v 1.21 2018/11/26 17:11:11 schwarze Exp 
 
-With the exceptions noted below, all code and documentation
-contained in the mandoc toolkit is protected by the Copyright
-of the following developers:
+With the exceptions noted below, all non-trivial files contained
+in the mandoc toolkit are protected by the Copyright of the following
+developers:
 
 Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
 Copyright (c) 2010-2018 Ingo Schwarze <schwarze%openbsd.org@localhost>
@@ -12,13 +12,14 @@
 Copyright (c) 2014 Baptiste Daroussin <bapt%freebsd.org@localhost>
 Copyright (c) 2016 Ed Maste <emaste%freebsd.org@localhost>
 Copyright (c) 2017 Michael Stapelberg <stapelberg%debian.org@localhost>
+Copyright (c) 2017 Anthony Bentley <bentley%openbsd.org@localhost>
 Copyright (c) 1998, 2004, 2010 Todd C. Miller <Todd.Miller%courtesan.com@localhost>
 Copyright (c) 2008, 2017 Otto Moerbeek <otto%drijf.net@localhost>
 Copyright (c) 2004 Ted Unangst <tedu%openbsd.org@localhost>
 Copyright (c) 1994 Christos Zoulas <christos%netbsd.org@localhost>
 Copyright (c) 2003, 2007, 2008, 2014 Jason McIntyre <jmc%openbsd.org@localhost>
 
-See the individual source files for information about who contributed
+See the individual files for information about who contributed
 to which file during which years.
 
 
diff -r a51648d9b08a -r f696f05e7ac2 external/bsd/mdocml/dist/Makefile
--- a/external/bsd/mdocml/dist/Makefile Tue Aug 14 08:41:01 2018 +0000
+++ b/external/bsd/mdocml/dist/Makefile Sun Mar 10 22:28:56 2019 +0000
@@ -1,7 +1,7 @@
-# Id: Makefile,v 1.519 2018/07/31 15:34:00 schwarze Exp 
+# Id: Makefile,v 1.530 2019/03/06 16:08:41 schwarze Exp 
 #
 # Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
-# Copyright (c) 2011, 2013-2018 Ingo Schwarze <schwarze%openbsd.org@localhost>
+# Copyright (c) 2011, 2013-2019 Ingo Schwarze <schwarze%openbsd.org@localhost>
 #
 # Permission to use, copy, modify, and distribute this software for any
 # purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
-VERSION = 1.14.4
+VERSION = 1.14.5
 
 # === LIST OF FILES ====================================================
 
@@ -37,9 +37,9 @@
                   test-PATH_MAX.c \
                   test-pledge.c \
                   test-progname.c \
-                  test-recvmsg.c \
                   test-reallocarray.c \
                   test-recallocarray.c \
+                  test-recvmsg.c \
                   test-rewb-bsd.c \
                   test-rewb-sysv.c \
                   test-sandbox_init.c \
@@ -54,7 +54,8 @@
                   test-vasprintf.c \
                   test-wchar.c
 
-SRCS            = att.c \
+SRCS            = arch.c \
+                  att.c \
                   catman.c \
                   cgi.c \
                   chars.c \
@@ -96,6 +97,7 @@
                   man_validate.c \
                   mandoc.c \
                   mandoc_aux.c \
+                  mandoc_msg.c \
                   mandoc_ohash.c \
                   mandoc_xr.c \
                   mandocd.c \
@@ -155,13 +157,14 @@
                   dbm_map.h \
                   demandoc.1 \
                   eqn.7 \
+                  eqn.h \
+                  eqn_parse.h \
                   gmdiff \
                   html.h \
                   lib.in \
                   libman.h \
                   libmandoc.h \
                   libmdoc.h \
-                  libroff.h \
                   main.h \
                   makewhatis.8 \
                   man.1 \
@@ -184,6 +187,7 @@
                   mandoc_html.3 \
                   mandoc_malloc.3 \
                   mandoc_ohash.h \
+                  mandoc_parse.h \
                   mandoc_xr.h \
                   mandocd.8 \
                   mansearch.3 \
@@ -198,10 +202,12 @@
                   roff.h \
                   roff_int.h \
                   soelim.1 \
-                  st.in \
                   tag.h \
                   tbl.3 \
                   tbl.7 \
+                  tbl.h \
+                  tbl_int.h \
+                  tbl_parse.h \
                   term.h \
                   $(SRCS) \
                   $(TESTSRCS)
@@ -230,9 +236,11 @@
 LIBMANDOC_OBJS  = $(LIBMAN_OBJS) \
                   $(LIBMDOC_OBJS) \
                   $(LIBROFF_OBJS) \
+                  arch.o \
                   chars.o \
                   mandoc.o \
                   mandoc_aux.o \
+                  mandoc_msg.o \
                   mandoc_ohash.o \
                   mandoc_xr.o \
                   msec.o \
@@ -320,6 +328,7 @@
 WWW_MANS        = apropos.1.html \
                   demandoc.1.html \
                   man.1.html \
+                  man.options.1.html \
                   mandoc.1.html \
                   soelim.1.html \
                   man.cgi.3.html \
@@ -336,20 +345,27 @@
                   eqn.7.html \
                   man.7.html \
                   mandoc_char.7.html \
-                  mandocd.8.html \
                   mdoc.7.html \
                   roff.7.html \
                   tbl.7.html \
                   catman.8.html \
                   makewhatis.8.html \
                   man.cgi.8.html \
+                  mandocd.8.html
+
+WWW_INCS        = eqn.h.html \
+                  html.h.html \
                   man.h.html \
                   manconf.h.html \
                   mandoc.h.html \
                   mandoc_aux.h.html \
+                  mandoc_parse.h.html \
                   mansearch.h.html \
                   mdoc.h.html \
-                  roff.h.html
+                  roff.h.html \
+                  tbl.h.html \
+                  tbl_int.h.html \
+                  tbl_parse.h.html
 
 # === USER CONFIGURATION ===============================================
 
@@ -361,9 +377,9 @@
 
 install: base-install $(INSTALL_TARGETS)
 
-www: $(WWW_MANS)
+www: $(WWW_MANS) $(WWW_INCS)
 
-$(WWW_MANS): mandoc
+$(WWW_MANS) $(WWW_INCS): mandoc
 
 .PHONY: base-install cgi-install install www-install
 .PHONY: clean distclean depend
@@ -382,7 +398,7 @@
        rm -f mandocd catman catman.o $(MANDOCD_OBJS)
        rm -f demandoc $(DEMANDOC_OBJS)
        rm -f soelim $(SOELIM_OBJS)
-       rm -f $(WWW_MANS) mandoc.tar.gz mandoc.sha256
+       rm -f $(WWW_MANS) $(WWW_INCS) mandoc*.tar.gz mandoc*.sha256
        rm -rf *.dSYM
 
 base-install: mandoc demandoc soelim
@@ -420,8 +436,8 @@
        mkdir -p $(DESTDIR)$(INCLUDEDIR)
        mkdir -p $(DESTDIR)$(MANDIR)/man3
        $(INSTALL_LIB) libmandoc.a $(DESTDIR)$(LIBDIR)
-       $(INSTALL_LIB) man.h mandoc.h mandoc_aux.h mdoc.h roff.h \
-               $(DESTDIR)$(INCLUDEDIR)
+       $(INSTALL_LIB) eqn.h man.h mandoc.h mandoc_aux.h mandoc_parse.h \
+               mdoc.h roff.h tbl.h $(DESTDIR)$(INCLUDEDIR)
        $(INSTALL_MAN) mandoc.3 mandoc_escape.3 mandoc_malloc.3 \
                mansearch.3 mchars_alloc.3 tbl.3 $(DESTDIR)$(MANDIR)/man3
 
@@ -475,11 +491,14 @@
        rm -f $(DESTDIR)$(MANDIR)/man3/mansearch.3
        rm -f $(DESTDIR)$(MANDIR)/man3/mchars_alloc.3
        rm -f $(DESTDIR)$(MANDIR)/man3/tbl.3
+       rm -f $(DESTDIR)$(INCLUDEDIR)/eqn.h
        rm -f $(DESTDIR)$(INCLUDEDIR)/man.h
        rm -f $(DESTDIR)$(INCLUDEDIR)/mandoc.h
        rm -f $(DESTDIR)$(INCLUDEDIR)/mandoc_aux.h
+       rm -f $(DESTDIR)$(INCLUDEDIR)/mandoc_parse.h
        rm -f $(DESTDIR)$(INCLUDEDIR)/mdoc.h
        rm -f $(DESTDIR)$(INCLUDEDIR)/roff.h
+       rm -f $(DESTDIR)$(INCLUDEDIR)/tbl.h
        [ ! -e $(DESTDIR)$(INCLUDEDIR) ] || rmdir $(DESTDIR)$(INCLUDEDIR)
 
 regress: all
@@ -516,7 +535,9 @@
 # --- maintainer targets ---
 
 www-install: www
-       $(INSTALL_DATA) $(WWW_MANS) mandoc.css $(HTDOCDIR)
+       $(INSTALL_DATA) mandoc.css $(HTDOCDIR)
+       $(INSTALL_DATA) $(WWW_MANS) $(HTDOCDIR)/man
+       $(INSTALL_DATA) $(WWW_INCS) $(HTDOCDIR)/includes
 
 depend: config.h
        mkdep -f Makefile.depend $(CFLAGS) $(SRCS)
@@ -564,6 +585,10 @@
        ( cd .dist/ && tar zcf ../$@ mandoc-$(VERSION) )
        rm -rf .dist/
 
+dist-install: dist
+       $(INSTALL_DATA) mandoc-$(VERSION).tar.gz mandoc-$(VERSION).sha256 \
+           $(HTDOCDIR)/snapshots
+
 # === SUFFIX RULES =====================================================
 
 .SUFFIXES:      .1       .3       .5       .7       .8       .h
@@ -573,5 +598,6 @@
        highlight -I $< > $@
 
 .1.1.html .3.3.html .5.5.html .7.7.html .8.8.html: mandoc
-       ./mandoc -Thtml -Wall,stop \
-               -Ostyle=mandoc.css,man=%N.%S.html,includes=%I.html $< > $@
+       mandoc -Thtml -Wwarning,stop \
+               -O 'style=/mandoc.css,man=/man/%N.%S.html;https://man.openbsd.org/%N.%S,includes=/includes/%I.html' \
+               $< > $@
diff -r a51648d9b08a -r f696f05e7ac2 external/bsd/mdocml/dist/Makefile.depend
--- a/external/bsd/mdocml/dist/Makefile.depend  Tue Aug 14 08:41:01 2018 +0000
+++ b/external/bsd/mdocml/dist/Makefile.depend  Sun Mar 10 22:28:56 2019 +0000
@@ -1,6 +1,7 @@
-att.o: att.c config.h mandoc.h roff.h mdoc.h libmdoc.h
+arch.o: arch.c config.h roff.h
+att.o: att.c config.h roff.h libmdoc.h
 catman.o: catman.c config.h compat_fts.h
-cgi.o: cgi.c config.h mandoc_aux.h mandoc.h roff.h mdoc.h man.h main.h manconf.h mansearch.h cgi.h
+cgi.o: cgi.c config.h mandoc_aux.h mandoc.h roff.h mdoc.h man.h mandoc_parse.h main.h manconf.h mansearch.h cgi.h
 chars.o: chars.c config.h mandoc.h mandoc_aux.h mandoc_ohash.h compat_ohash.h libmandoc.h
 compat_err.o: compat_err.c config.h
 compat_fts.o: compat_fts.c config.h compat_fts.h
@@ -26,54 +27,55 @@
 dba_write.o: dba_write.c config.h dba_write.h
 dbm.o: dbm.c config.h mansearch.h dbm_map.h dbm.h
 dbm_map.o: dbm_map.c config.h mansearch.h dbm_map.h dbm.h
-demandoc.o: demandoc.c config.h mandoc.h roff.h man.h mdoc.h
-eqn.o: eqn.c config.h mandoc_aux.h mandoc.h roff.h libmandoc.h libroff.h
-eqn_html.o: eqn_html.c config.h mandoc.h out.h html.h
-eqn_term.o: eqn_term.c config.h mandoc.h out.h term.h
+demandoc.o: demandoc.c config.h mandoc.h roff.h man.h mdoc.h mandoc_parse.h
+eqn.o: eqn.c config.h mandoc_aux.h mandoc.h roff.h eqn.h libmandoc.h eqn_parse.h



Home | Main Index | Thread Index | Old Index