Fix too-often retry bug after 4xx with more hosts than hosts_max_retry.
[exim.git] / src / OS / Makefile-UNIX_SV
1 # $Cambridge: exim/src/OS/Makefile-UNIX_SV,v 1.2 2005/05/23 16:58:55 fanf2 Exp $
2
3 # Exim: OS-specific make file for SCO SVR4.2MP (and maybe Unixware)
4 #
5 # *** Note that for SCO 5 the configuration file is called SCO_SV,
6 # *** and that Unixware7 has its own configuration. This is an old
7 # *** file that is retained for compatibility.
8 #
9 # Note that SCO does not include dbm/ndbm with their standard compiler
10 # (it is available with /usr/ucb/cc, but that has bugs of its own). You
11 # should install gcc and gdbm, then execute 'make install-compat' in the
12 # gdbm source directory.
13
14 CC=gcc -I/usr/local/include
15 CFLAGS=-O
16
17 RANLIB=@true
18 DBMLIB=-lgdbm -L/usr/local/lib
19 ERRNO_QUOTA=0
20 LIBS=-lsocket -lelf -lgen -lnsl -lresolv -lm
21
22 X11=/usr/lib/X11
23 XINCLUDE=-I/usr/include/X11
24 XLFLAGS=-L/usr/lib -L$(X11)/lib
25
26 # End