diff options
author | gshapiro <gshapiro@FreeBSD.org> | 2000-08-12 22:39:25 +0000 |
---|---|---|
committer | gshapiro <gshapiro@FreeBSD.org> | 2000-08-12 22:39:25 +0000 |
commit | 002ef51d6eb85e40acd7d5111adaccddc33e3880 (patch) | |
tree | 372ed1ec3b3cdaae188c1397c5724ee2a49a924c /libexec | |
parent | b107abc272e6f4eb2fa7e8fd4e2008fb91cd2914 (diff) | |
download | FreeBSD-src-002ef51d6eb85e40acd7d5111adaccddc33e3880.zip FreeBSD-src-002ef51d6eb85e40acd7d5111adaccddc33e3880.tar.gz |
The rest of the changes needed to support the new version of sendmail (8.11.0).
Beyond changes to the build system, this includes fixing up the sample
freebsd.mc configuration for changes in defaults and syntax, removing
outdated documentation, and updating the release notes.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/mail.local/Makefile | 17 | ||||
-rw-r--r-- | libexec/smrsh/Makefile | 17 |
2 files changed, 29 insertions, 5 deletions
diff --git a/libexec/mail.local/Makefile b/libexec/mail.local/Makefile index 1e90280..1a61dd8 100644 --- a/libexec/mail.local/Makefile +++ b/libexec/mail.local/Makefile @@ -1,13 +1,24 @@ # @(#)Makefile 8.1 (Berkeley) 7/19/93 # $FreeBSD$ -.PATH: ${.CURDIR}/../../contrib/sendmail/mail.local \ - ${.CURDIR}/../../contrib/sendmail/src +SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail +.PATH: ${SENDMAIL_DIR}/mail.local PROG= mail.local -SRCS= mail.local.c snprintf.c +SRCS= mail.local.c MAN8= mail.local.8 BINMODE=4555 INSTALLFLAGS=-fschg +CFLAGS+=-I${SENDMAIL_DIR}/include + +.if exists(${.OBJDIR}/../../lib/libsmutil) +LIBSMUTILDIR:= ${.OBJDIR}/../../lib/libsmutil +.else +LIBSMUTILDIR!= cd ${.CURDIR}/../../lib/libsmutil; make -V .OBJDIR +.endif +LIBSMUTIL:= ${LIBSMUTILDIR}/libsmutil.a + +DPADD+= ${LIBSMUTIL} +LDADD+= ${LIBSMUTIL} .include <bsd.prog.mk> diff --git a/libexec/smrsh/Makefile b/libexec/smrsh/Makefile index c428f28..086368f 100644 --- a/libexec/smrsh/Makefile +++ b/libexec/smrsh/Makefile @@ -1,9 +1,22 @@ # @(#)Makefile 8.1 (Berkeley) 7/2/95 +# $FreeBSD$ -.PATH: ${.CURDIR}/../../contrib/sendmail/smrsh +SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail +.PATH: ${SENDMAIL_DIR}/smrsh PROG= smrsh +SRCS= smrsh.c MAN8= smrsh.8 -CFLAGS+=-I${.CURDIR}/../../contrib/sendmail/src -DNEWDB +CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include + +.if exists(${.OBJDIR}/../../lib/libsmutil) +LIBSMUTILDIR:= ${.OBJDIR}/../../lib/libsmutil +.else +LIBSMUTILDIR!= cd ${.CURDIR}/../../lib/libsmutil; make -V .OBJDIR +.endif +LIBSMUTIL:= ${LIBSMUTILDIR}/libsmutil.a + +DPADD+= ${LIBSMUTIL} +LDADD+= ${LIBSMUTIL} .include <bsd.prog.mk> |