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