diff -Nbaur sendmail-8.12.9/mconnect.orig/Build sendmail-8.12.9/mconnect/Build --- sendmail-8.12.9/mconnect.orig/Build Thu Jan 1 01:00:00 1970 +++ sendmail-8.12.9/mconnect/Build Thu May 8 03:29:08 2003 @@ -0,0 +1,12 @@ +#!/bin/sh + +# Copyright (c) 1999 Sendmail, Inc. and its suppliers. +# All rights reserved. +# +# By using this file, you agree to the terms and conditions set +# forth in the LICENSE file which can be found at the top level of +# the sendmail distribution. +# +# + +exec ../devtools/bin/Build $* diff -Nbaur sendmail-8.12.9/mconnect.orig/Makefile sendmail-8.12.9/mconnect/Makefile --- sendmail-8.12.9/mconnect.orig/Makefile Thu Jan 1 01:00:00 1970 +++ sendmail-8.12.9/mconnect/Makefile Thu May 8 03:34:00 2003 @@ -0,0 +1,16 @@ + +SHELL= /bin/sh +BUILD= ./Build +OPTIONS= $(CONFIG) $(FLAGS) + +all: FRC + $(SHELL) $(BUILD) $(OPTIONS) $@ +clean: FRC + $(SHELL) $(BUILD) $(OPTIONS) $@ +install: FRC + $(SHELL) $(BUILD) $(OPTIONS) $@ + +fresh: FRC + $(SHELL) $(BUILD) $(OPTIONS) -c + +FRC: diff -Nbaur sendmail-8.12.9/mconnect.orig/Makefile.m4 sendmail-8.12.9/mconnect/Makefile.m4 --- sendmail-8.12.9/mconnect.orig/Makefile.m4 Thu Jan 1 01:00:00 1970 +++ sendmail-8.12.9/mconnect/Makefile.m4 Thu May 8 03:45:21 2003 @@ -0,0 +1,21 @@ +include(confBUILDTOOLSDIR`/M4/switch.m4') + +PREPENDDEF(`confENVDEF', `confMAPDEF') + +bldPRODUCT_START(`executable', `mconnect') +define(`bldSOURCES', `mconnect.c ') +APPENDDEF(`confENVDEF', `-DNOT_SENDMAIL') +bldPRODUCT_END + +bldPRODUCT_START(`manpage', `mconnect') +define(`bldSOURCES', `mconnect.1') +bldPRODUCT_END + +divert(bldTARGETS_SECTION) +install: ${MCONNECT} + +install-mconnect: mconnect + ${INSTALL} -c -o ${UBINOWN} -g ${UBINGRP} -m ${UBINMODE} mconnect ${DESTDIR}${UBINDIR} +divert + +bldFINISH