From 417f688def9a91df1371bfd7d053bc508dff26bb Mon Sep 17 00:00:00 2001 From: Eric Allman Date: Thu, 15 Jun 1995 21:05:18 -0800 Subject: [PATCH] default to using NEWDB -- included by Apple with 3.1 SCCS-vsn: usr.sbin/sendmail/src/Makefiles/Makefile.AUX 8.9 --- usr/src/usr.sbin/sendmail/src/Makefiles/Makefile.AUX | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/usr/src/usr.sbin/sendmail/src/Makefiles/Makefile.AUX b/usr/src/usr.sbin/sendmail/src/Makefiles/Makefile.AUX index 1d0045e2f2..f820ccf2c9 100644 --- a/usr/src/usr.sbin/sendmail/src/Makefiles/Makefile.AUX +++ b/usr/src/usr.sbin/sendmail/src/Makefiles/Makefile.AUX @@ -5,7 +5,9 @@ # old make program (I recommend that you get and port the new make if you # are going to be doing any signficant work on sendmail). # -# @(#)Makefile.AUX 8.8 (Berkeley) %G% +# @(#)Makefile.AUX 8.9 (Berkeley) %G% +# +# Tested on A/UX 3.1. # # use O=-O (usual) or O=-g (debugging) @@ -17,8 +19,8 @@ O= -O # -DNIS -- include NIS support # The really old (V7) DBM library is no longer supported. # See READ_ME for a description of how these flags interact. -# -DBMDEF= -DNDBM +# If you are running A/UX prior to 3.1, delete -DNEWDB +DBMDEF= -DNDBM -DNEWDB # environment definitions (e.g., -D_AIX3) ENVDEF= -D_POSIX_SOURCE @@ -35,7 +37,8 @@ LDOPTS= LIBDIRS= # libraries required on your system -LIBS= -ldbm -lposix -lmalloc +# If you are running A/UX prior to 3.1, delete -ldb +LIBS= -ldbm -ldb -lposix -lmalloc # location of sendmail binary (usually /usr/sbin or /usr/lib) BINDIR= ${DESTDIR}/usr/lib -- 2.20.1