Renamed SOCKLEN_T as EXIM_SOCKLEN_T to avoid a problem in AIX.
[exim.git] / src / OS / Makefile-Unixware7
CommitLineData
61ec970d
PH
1# $Cambridge: exim/src/OS/Makefile-Unixware7,v 1.1 2004/10/06 15:07:39 ph10 Exp $
2
3# Exim: OS-specific make file for Unixware7
4# Based on information from James FitzGibbon <james@ehlo.com>
5
6# If you want to use libbind, you need to
7# add -I/usr/local/bind/include to CFLAGS
8# add -L/usr/local/bind/lib to LFLAGS
9# remove -lresolv from LIBS
10# add LOOKUP_LIBS=-lbind
11# The new settings should go in your Local/Makefile rather than here; then
12# they will be usable for subsequent Exim releases.
13
14CC=/usr/bin/cc
15CFLAGS=-O -I/usr/local/include
16LFLAGS=-L/usr/local/lib
17
18HAVE_ICONV=yes
19
20LIBS=-lsocket -lnsl -lelf -lgen -lresolv
21
22# Removed on the advice of Larry Rosenman
23# EXTRALIBS=-lwrap
24
25EXTRALIBS_EXIMON=-lICE -lSM
26
27RANLIB=@true
28ERRNO_QUOTA=0
29
30X11=/usr/lib/X11
31XINCLUDE=-I/usr/include/X11
32XLFLAGS=-L/usr/lib -L$(X11)/lib
33
34# End