aboutsummaryrefslogtreecommitdiff
path: root/lib/libsmutil
diff options
context:
space:
mode:
authorGregory Neil Shapiro <gshapiro@FreeBSD.org>2000-08-12 22:39:25 +0000
committerGregory Neil Shapiro <gshapiro@FreeBSD.org>2000-08-12 22:39:25 +0000
commit88c75941e63c3cf4adc2948d1db54b4afd030f1b (patch)
treedfda633f687732f5ca9a80a596bb9c817c8bea30 /lib/libsmutil
parentcd904b75f96a3c329e595e33fa1f1330308391af (diff)
downloadsrc-88c75941e63c3cf4adc2948d1db54b4afd030f1b.tar.gz
src-88c75941e63c3cf4adc2948d1db54b4afd030f1b.zip
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.
Notes
Notes: svn path=/head/; revision=64567
Diffstat (limited to 'lib/libsmutil')
-rw-r--r--lib/libsmutil/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/libsmutil/Makefile b/lib/libsmutil/Makefile
new file mode 100644
index 000000000000..237159c03be2
--- /dev/null
+++ b/lib/libsmutil/Makefile
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
+.PATH: ${SENDMAIL_DIR}/libsmutil
+
+CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include
+CFLAGS+=-DNEWDB -DNIS -DMAP_REGEX -DNOT_SENDMAIL
+
+LIB= smutil
+
+SRCS+= debug.c errstring.c lockfile.c safefile.c snprintf.c strl.c
+
+INTERNALLIB= true
+NOPIC= true
+INTERNALSTATICLIB= true
+
+.include <bsd.lib.mk>