summaryrefslogtreecommitdiff
path: root/win32-diffs
diff options
context:
space:
mode:
authorwlemb <wlemb>2001-04-20 13:34:56 +0000
committerwlemb <wlemb>2001-04-20 13:34:56 +0000
commitf874b9a4016a8ce490ecccfee92e4edeaf316a7d (patch)
tree069036aa4da850be22b7171f03d5966dd7070d1c /win32-diffs
parent92c8fbd691fccf1796420251c5b2978bcd748393 (diff)
downloadgroff-f874b9a4016a8ce490ecccfee92e4edeaf316a7d.tar.gz
`Version_string' as C++ object was not visible to linker from C
object files. Add `const' to `Version_string'. * src/utils/pfbtops/pfbtops.c (main), src/roff/groff/groff.cc (main), src/roff/troff/input.cc (main), src/preproc/tbl/main.cc (main), src/preproc/pic/main.cc (main), src/preproc/eqn/main.cc (main), src/preproc/grn/main.cc (main), src/preproc/html/pre-html.cc (scanArguments), src/preproc/refer/refer.cc (main), src/preproc/soelim/soelim.cc (main), src/devices/grotty/tty.cc (main), src/devices/grodvi/dvi.cc (main), src/devices/grolj4/lj4.cc (main), src/devices/grohtml/post-html.cc (main), src/devices/grolbp/lbp.cc (main), src/utils/tfmtodit/tfmtodit.cc (main), src/utils/hpftodit/hpftodit.cc (main), src/utils/lookbib/lookbib.cc (main), src/utils/indxbib/indxbib.cc (main), src/utils/lkbib/lkbib.cc (main), src/utils/addftinfo/addftinfo.cc (main): Implement it. * src/roff/groff/pipeline.c: Add _UWIN. * src/include/nonposix.h: Ditto. * src/include/lib.h: Use HAVE_STRERROR. * src/roff/groff/pipeline.c: Ditto. * src/preproc/html/pre-html.cc: Remove declaration of `strerror'. * src/libs/libgroff/Makefile.sub (version.cc): Add `extern "C"'. * src/utils/pfbtops/pfbtops.c: Add copyright notice. * win32-diffs: Updated. * src/utils/hpftodit/hpftodit.cc (read_map): Fix compiler warning.
Diffstat (limited to 'win32-diffs')
-rw-r--r--win32-diffs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32-diffs b/win32-diffs
index f00f1b9e..8dd1dc5b 100644
--- a/win32-diffs
+++ b/win32-diffs
@@ -2782,7 +2782,7 @@ diff -aruN groff/src/include/defs.h groff.win32/src/include/defs.h
+
+#define FONTPATH "c:/groff/font"
+
-+#define MACROPATH "c:/groff/tmac;c:/groff/mm"
++#define MACROPATH "c:/groff/tmac;c:/groff/mm"
+
+#define DEVICE "ps"
+
@@ -2892,7 +2892,7 @@ diff -aruN groff/src/libs/libgroff/version.cc groff.win32/src/libs/libgroff/vers
@@ -0,0 +1,3 @@
+const char *version_string = "1.17";
+const char *revision_string = "0";
-+const char *Version_string = "1.17";
++extern "C" const char *Version_string = "1.17";
diff -aruN groff/src/preproc/eqn/Makefile.msc groff.win32/src/preproc/eqn/Makefile.msc
--- groff/src/preproc/eqn/Makefile.msc Thu Jan 1 00:00:00 1970
+++ groff.win32/src/preproc/eqn/Makefile.msc Wed May 17 08:57:48 2000