Davide Libenzi wrote:
>The Makefile.osx is missing.
>
>
>
Here you go.
Once you have integrated, please tell me and I will do a new build and
make sure everything works.
Thanks
Christian
-- Attached file included as plaintext by Ecartis --
-- File: Makefile.osx
#
# XMail by Davide Libenzi ( Intranet and Internet mail server )
# Copyright (C) 1999,..,2003 Davide Libenzi
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Davide Libenzi <[EMAIL PROTECTED]>
#
O = o
A = a
CPP = cpp
CC = g++
LD = g++
SYSTYPE = darwin
CFLAGS = -O2 -I. -D__UNIX__ -D__BSD__ -D__DARWIN__ -DXMAIL_PPC -D_REENTRANT=1
-D_THREAD_SAFE=1
LDFLAGS = -lkvm -lpthread
#-lc_r
MAILSVR = XMail
CRTLCLNT = CtrlClnt
XMCRYPT = XMCrypt
MKUSERS = MkUsers
SENDMAIL = sendmail
SVRSRCS = BuffSock.${CPP} CTRLSvr.${CPP} DynDNS.${CPP} DNS.${CPP} DNSCache.${CPP}
Errors.${CPP} ExtAliases.${CPP} FINGSvr.${CPP} \
MailConfig.${CPP} MailSvr.${CPP} Maildir.${CPP} MailDomains.${CPP} MD5.${CPP}
MiscUtils.${CPP} LMAILSvr.${CPP} \
AliasDomain.${CPP} POP3GwLink.${CPP} POP3Svr.${CPP} POP3Utils.${CPP}
PSYNCSvr.${CPP} ResLocks.${CPP} SList.${CPP} SMAILSvr.${CPP} \
TabIndex.${CPP} SMAILUtils.${CPP} SMTPSvr.${CPP} SMTPUtils.${CPP}
ShBlocks.${CPP} StrUtils.${CPP} MessQueue.${CPP} \
QueueUtils.${CPP} SvrUtils.${CPP} SysDep.${CPP} UsrMailList.${CPP}
UsrAuth.${CPP} UsrUtils.${CPP} Main.${CPP} Base64Enc.${CPP} \
Filter.${CPP}
SVROBJS = BuffSock.${O} CTRLSvr.${O} DynDNS.${O} DNS.${O} DNSCache.${O} Errors.${O}
ExtAliases.${O} FINGSvr.${O} \
MailConfig.${O} MailSvr.${O} Maildir.${O} MailDomains.${O} MD5.${O}
MiscUtils.${O} LMAILSvr.${O} \
AliasDomain.${O} POP3GwLink.${O} POP3Svr.${O} POP3Utils.${O} PSYNCSvr.${O}
ResLocks.${O} SList.${O} SMAILSvr.${O} \
TabIndex.${O} SMAILUtils.${O} SMTPSvr.${O} SMTPUtils.${O} ShBlocks.${O}
StrUtils.${O} MessQueue.${O} \
QueueUtils.${O} SvrUtils.${O} SysDep.${O} UsrMailList.${O} UsrAuth.${O}
UsrUtils.${O} Main.${O} Base64Enc.${O} \
Filter.${O}
CCLNSRCS = Base64Enc.${CPP} BuffSock.${CPP} SysDep.${CPP} StrUtils.${CPP} MD5.${CPP}
MiscUtils.${CPP} CTRLClient.${CPP} Errors.${CPP}
CCLNOBJS = Base64Enc.${O} BuffSock.${O} SysDep.${O} StrUtils.${O} MD5.${O}
MiscUtils.${O} CTRLClient.${O} Errors.${O}
XMCSRCS = XMCrypt.${CPP}
XMCOBJS = XMCrypt.${O}
MKUSRCS = MkUsers.${CPP}
MKUOBJS = MkUsers.${O}
SENDMAILSRC = SendMail.${CPP}
SENDMAILOBJS = SendMail.${O}
%.${O} : %.${CPP}
${CC} ${CPPFLAGS} ${CFLAGS} -c $*.${CPP}
all: ${MAILSVR} ${CRTLCLNT} ${XMCRYPT} ${MKUSERS} ${SENDMAIL}
${MAILSVR}: ${SVROBJS}
${LD} -o ${MAILSVR} ${SVROBJS} ${LDFLAGS}
strip ${MAILSVR}
${CRTLCLNT}: ${CCLNOBJS}
${LD} -o ${CRTLCLNT} ${CCLNOBJS} ${LDFLAGS}
strip ${CRTLCLNT}
${XMCRYPT}: ${XMCOBJS}
${LD} -o ${XMCRYPT} ${XMCOBJS} ${LDFLAGS}
strip ${XMCRYPT}
${MKUSERS}: ${MKUOBJS}
${LD} -o ${MKUSERS} ${MKUOBJS} ${LDFLAGS}
strip ${MKUSERS}
${SENDMAIL}: ${SENDMAILOBJS}
${LD} -o ${SENDMAIL} ${SENDMAILOBJS} ${LDFLAGS}
strip ${SENDMAIL}
distclean: clean
clean:
rm -f .depend a.out core ${MAILSVR} ${CRTLCLNT} ${XMCRYPT} ${MKUSERS}
${SENDMAIL}
rm -f *.${O} *~
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]