Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / src / OS / unsupported / Makefile-USG
1 # Exim: OS-specific make file for Unixware 2.x
2 # SPDX-License-Identifier: GPL-2.0-or-later
3 #
4 # Note that Unixware does not include db/dbm/ndbm with their standard compiler
5 # (it is available with /usr/ucb/cc, but that has bugs of its own). You
6 # should install gcc and Berkeley DB (or another dbm library if you really
7 # insist). If you use a different dbm library you will need to override
8 # DBMLIB below.
9 #
10 # DB 1.85 and 2.x can be found at http://www.sleepycat.com/.
11 # They have different characteristics. See the discussion of dbm libraries
12 # in doc/dbm.discuss.txt in the Exim distribution.
13 #
14 # DB needs to be compiled with gcc and you need a 'cc' in your path
15 # before the Unixware CC to compile it.
16 #
17 # Don't bother even starting to install exim on Unixware unless
18 # you have installed gcc and use it for everything.
19
20 CC=gcc -I/usr/local/include
21 CFLAGS=-O
22
23 RANLIB=@true
24 DBMLIB=-ldb -L/usr/local/lib
25 USE_DB=YES
26 ERRNO_QUOTA=0
27 LIBS=-lsocket -lelf -lgen -lnsl -lresolv -lm
28
29 X11=/usr/lib/X11
30 XINCLUDE=-I/usr/include/X11
31 XLFLAGS=-L/usr/lib -L$(X11)/lib
32 X11_LD_LIB=$(X11)/lib
33
34 # End