From: Wieland Pusch (wp@cs.tu-berlin.de)
Date: 02/12/93


From: wp@cs.tu-berlin.de (Wieland Pusch)
Subject: Re: new cpp
Date: 12 Feb 1993 10:56:35 GMT


Someone proposed here to change '#define XCOMM #' to '#define XCOMM \#'
which works fine for this line, but might be wrong somewhere else, like:

#define RootPath /interviews
#define ConfPath RootPath/config
CONFPATH= ConfPath

which should make
CONFPATH= /interviews/config

and not
CONFPATH= /interviews /config
                     ^----- not funny

I made /lib/cpp-imake a script:
#!/bin/sh
exec /usr/.../v2.3.3/.../cpp -traditional $*

and set $IMAKECPP to /etc/cpp-imake, which seems to work fine, without
changing any conf-files.
By doing that I compiled InterViews3.1b just with minor changes.

   Wieland