diff options
author | Gregory Neil Shapiro <gshapiro@FreeBSD.org> | 2000-09-17 00:41:33 +0000 |
---|---|---|
committer | Gregory Neil Shapiro <gshapiro@FreeBSD.org> | 2000-09-17 00:41:33 +0000 |
commit | cf1fec423af7716ba778ed1ca9f94211cccec534 (patch) | |
tree | 337d84bdd38fc7d00825f7aa98d34e3061b2137a /libexec | |
parent | 18a73213ecd2aaaabdb5f64bba424575ffdfcfb3 (diff) | |
download | src-test2-cf1fec423af7716ba778ed1ca9f94211cccec534.tar.gz src-test2-cf1fec423af7716ba778ed1ca9f94211cccec534.zip |
Notes
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/mail.local/Makefile | 6 | ||||
-rw-r--r-- | libexec/smrsh/Makefile | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/libexec/mail.local/Makefile b/libexec/mail.local/Makefile index 1a61dd8810da..62047c602699 100644 --- a/libexec/mail.local/Makefile +++ b/libexec/mail.local/Makefile @@ -21,4 +21,10 @@ LIBSMUTIL:= ${LIBSMUTILDIR}/libsmutil.a DPADD+= ${LIBSMUTIL} LDADD+= ${LIBSMUTIL} +# User customizations to the sendmail build environment +CFLAGS+=${SENDMAIL_CFLAGS} +LDFLAGS+=${SENDMAIL_LDFLAGS} +LDADD+=${SENDMAIL_LDADD} +DPADD+=${SENDMAIL_DPADD} + .include <bsd.prog.mk> diff --git a/libexec/smrsh/Makefile b/libexec/smrsh/Makefile index 086368f483f7..37c2e4da3b7f 100644 --- a/libexec/smrsh/Makefile +++ b/libexec/smrsh/Makefile @@ -19,4 +19,10 @@ LIBSMUTIL:= ${LIBSMUTILDIR}/libsmutil.a DPADD+= ${LIBSMUTIL} LDADD+= ${LIBSMUTIL} +# User customizations to the sendmail build environment +CFLAGS+=${SENDMAIL_CFLAGS} +LDFLAGS+=${SENDMAIL_LDFLAGS} +LDADD+=${SENDMAIL_LDADD} +DPADD+=${SENDMAIL_DPADD} + .include <bsd.prog.mk> |