From 6c33fe612137b315457cb24f63b37054b58359ca Mon Sep 17 00:00:00 2001 From: wlemb Date: Tue, 30 Dec 2003 06:31:35 +0000 Subject: More fixes for MSVC compiler. * doc/Makefile.sub, contrib/mom/Makefile.sub (GROFF_BIN_PATH): Use $(SEP). * src/include/nonposix.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO) [_MSC_VER]: Define conditionally. (getpid) [_MSC_VER]: Remove. Include direct.h and process.h conditionally. * src/roff/troff/node.cpp (suppress_node::tprint): Don't use parentheses for a_delete. * src/utils/lookbib/lookbib.cpp: Include nonposix.h. * test-groff: Replaced with... * test-groff.in: This new template to handle path separator properly. * configure.ac: Check for direct.h and process.h. Generate test-groff script. * configure, src/include/config.hin: Regenerated. --- test-groff.in | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 test-groff.in (limited to 'test-groff.in') diff --git a/test-groff.in b/test-groff.in new file mode 100644 index 00000000..9840cd5e --- /dev/null +++ b/test-groff.in @@ -0,0 +1,44 @@ +#! /bin/sh +# This script runs groff without requiring that it be installed. +# The current directory must be the top build directory. + +SEP=@PATH_SEPARATOR@ +EXEEXT=@EXEEXT@ +builddir=./src +srcdir=`echo $0 | sed -e 's;/[^/]*$;;'` + +if test ! -d $builddir/roff/groff || \ + test ! -r $builddir/roff/groff/groff$EXEEXT; then + echo $0 must be run with the top build directory as the current directory 2>&1 + exit 1 +fi + +GROFF_BIN_PATH=\ +$builddir/roff/groff$SEP\ +$builddir/roff/troff$SEP\ +$builddir/preproc/pic$SEP\ +$builddir/preproc/eqn$SEP\ +$builddir/preproc/tbl$SEP\ +$builddir/preproc/grn$SEP\ +$builddir/preproc/refer$SEP\ +$builddir/preproc/soelim$SEP\ +$builddir/preproc/html$SEP\ +$builddir/devices/grops$SEP\ +$builddir/devices/grodvi$SEP\ +$builddir/devices/grotty$SEP\ +$builddir/devices/grolj4$SEP\ +$builddir/devices/grolbp$SEP\ +$builddir/devices/grohtml$SEP\ +$srcdir/$builddir/xditview + +test -n "$srcdir" || srcdir=. + +XENVIRONMENT=`cd $srcdir; pwd`/src/xditview/GXditview.ad +export XENVIRONMENT + +GROFF_COMMAND_PREFIX= +GROFF_FONT_PATH=$builddir/../font$SEP$srcdir/font +GROFF_TMAC_PATH=$srcdir/tmac +export GROFF_BIN_PATH GROFF_COMMAND_PREFIX GROFF_FONT_PATH GROFF_TMAC_PATH + +exec $builddir/roff/groff/groff ${1+"$@"} -- cgit v1.2.1