# Edit this file to reflect information specific to your installation.
# See  SiteConfig -file for things like directories, NNTP servers, ...

# ZCONFIG is the pathname of the configuration file specifying all the other
# host-dependent information needed by ZMailer programs.  This file is
# created from the Config file in the distribution (the file you are reading
# right now), and contains variable assignments in an sh-compatible format.
ZCONFIG=	/etc/zmailer.conf

# HOSTENV selects one of the files in the hostenv directory, perhaps one
# you have just created, that describes the system you are trying to compile
# this software on.  The contents of that file will be processed to produce
# include/libsupport.h and some sed commands in Config.sed to munge makefiles
# appropriately.  Valid values for HOSTENV is any unqualified filename in
# the hostenv directory (SunOS4.0, BSD4.3, IRIX3.3, Ultrix3.1, SystemVr3.2,...).
HOSTENV=	SunOS5.3

# DEFS is where you put global preprocessor definitions that aren't handled
# by the HOSTENV based configuration procedure.  Hopefully this will be empty,
# but some sample uses are:
#
#	-Du_int=uint -Du_char=unchar -Du_long=ulong
#
# for a system that doesn't define u_int u_char u_long etc in <sys/types.h>,
# or	-DMAXPATHLEN=1024	for a system that doesn't define this in
# <sys/param.h>.
# Define here  -DUSE_ALLOCA, and "-DALLOC_H=<alloc.h>", if they are available
# on some compilers (GCC for example) on the platform, but not on all, and
# thus nonexistent on  hostenv/ -file.  Remember to add possibly needed
# libraries for including the actual alloca() routine -- "-lPW" on some SVR3s
# into appropriate library lists..
DEFS=	-DSTDC_HEADERS -DHAVE_STRING_H -DHAVE_ALLOCA_H #-DXMEM -DMALLOC_TRACE

# MAILBOXDEFS has defines related to 'mailbox' and 'lock':
# -DBIFF         - tell biff about mail
# -DRBIFF        - tell remote comsats about mail
# -DRBIFF_ALWAYS - tell even if user has no  "~/.rbiff" file
# -DUSE_NFSMBOX  - do remote locking of mail spool files mounted via NFS
#	see  support/{nfslock,rlockd} for more about this
MAILBOXDEFS=	-DBIFF -DRBIFF -DRBIFF_ALWAYS # -DUSE_NFSMBOX

# SHELL is usually /bin/sh, but some systems may require a different
# pathname to get a working shell.  On Ultrix or other systems with a very
# old default shell, this may have to be set to /bin/sh5 or similar.
SHELL=		/bin/sh

# INSTALL is the program to do system installation.  UCB-install behaviour
# is expected..
INSTALL=	/usr/ucb/install

# SENDMAILLIB  is the location where the (classically) /usr/lib/sendmail
# is located at.  On some newer machines it is to be placed on different
# places, like  /usr/sbin/sendmail, or (why on earth!) /usr/bin/sendmail ??
SENDMAILLIB=	/usr/lib

# CC gives the command (and associated arguments) used to invoke the C
# compiler on your system.  Usually this would be the standard C compiler,
# so you won't need to define this -- leave it commented out.  However,
# a sample use is:
CC=		gcc #-traditional


# COPTS are the pervasive options to be given with all C compilations.
# The -g option is advised unless you have supreme confidence in your compiler.
COPTS=		-g -O

# CPPDEP is a command used by "mkdep" and "mklibdep" for finding out
# the includes -- gcc -MM yields only the NON-SYSTEM includes
CPPDEP= gcc -MM

# RANLIB is included to cater to machines that don't need it at all, because
# their ar(1) program has been smitten by featuritis.  Usually ranlib or true.
RANLIB=		ranlib # : ar does the work of ranlib under System V
