Some things to make sure before compiling exim under QNX.
=========================================================

*** requirements
    You need to have "bash"  installes under /usr/local/bin/bash and "gdbm"
    also needs to be present.


1. *** This change has already been made to this source archive *** 
   Exim make some assumptions about the shell in the makefiles. The
   "normal" QNX shell (ksh) will not work.
   You need to install "bash" which can be obtained from the QNX freeware
   on QUICS. Install  it to /usr/local/bin/bash
   The you need to change the SHELL definitions in the main makefile and in
   /OS/Makefile-Base to SHELL=/usr/local/bin/bash
   
2. *** This change has already been made to this source archive ***
   The watcom ar has a slightly different syntax. You need to change the
   calls to ar in the Makefile under src/[directors, lookups, routers, 
   libident, prce, transports] to "ar -rc" (currently is "ar cq").

3. *** This change has already been made to this source archive ***
   Ranlib is not needed under QNX. Please erase all lines concering ranlib
   from the Makefiles under src/[directors, lookups, routers, libident, 
   prce, transports].

4. QNX does not have "sys/resource.h", but this also not needed. Just to a
   simple "touch /usr/include/sys/resource.h"

5. For some strange reason make will fail at building "exim_dbmbuild" when
   called the first time. However simply calling make a second time will solve 
   the probelm.
   
   Alternatively do: "make makefile"
                     "make"
                    