Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / src / OS / unsupported / Makefile-SunOS5-hal
1 # Exim: OS-specific make file for SunOS5 on a HAL
2 # SPDX-License-Identifier: GPL-2.0-or-later
3
4 # Note: The HAL runs a standard SunOS5 except that it has a 64 bit C
5 # compiler called hcc.  To make things work pass the -KV7 flag to force
6 # 32bit compilation - this is necessary to interwork with some libraries.
7
8 CC=hcc
9 CFLAGS=-O -KV7
10 LIBIDENTCFLAGS="-KV7 -O -DHAVE_ANSIHEADERS"
11 LIBIDENTNAME=sunos5
12 RANLIB=@true
13 LIBS=-lsocket -lnsl -lkstat -lm
14 LIBRESOLV=-lresolv
15 X11=/usr/X11R6
16 XINCLUDE=-I$(X11)/include
17 XLFLAGS=-L$(X11)/lib -R$(X11)/lib
18
19 # End