Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / src / OS / unsupported / Makefile-Unixware7
1 # Exim: OS-specific make file for Unixware7
2 # Based on information from James FitzGibbon <james@ehlo.com>
3 # SPDX-License-Identifier: GPL-2.0-or-later
4
5 # If you want to use libbind, you need to
6 #     add -I/usr/local/bind/include to CFLAGS
7 #     add -L/usr/local/bind/lib to LFLAGS
8 #     remove -lresolv from LIBS
9 #     add LOOKUP_LIBS=-lbind
10 # The new settings should go in your Local/Makefile rather than here; then
11 # they will be usable for subsequent Exim releases.
12
13 CC=/usr/bin/cc
14 CFLAGS=-O -I/usr/local/include
15 LFLAGS=-L/usr/local/lib
16
17 HAVE_ICONV=yes
18
19 LIBS=-lsocket -lnsl -lelf -lgen -lresolv -lm
20
21 # Removed on the advice of Larry Rosenman
22 # EXTRALIBS=-lwrap
23
24 EXTRALIBS_EXIMON=-lICE -lSM
25
26 RANLIB=@true
27 ERRNO_QUOTA=0
28
29 X11=/usr/lib/X11
30 XINCLUDE=-I/usr/include/X11
31 XLFLAGS=-L/usr/lib -L$(X11)/lib
32
33 # End