dtmail: Make it build. There is more work to be done here.

Specifically, we should be able to have libDtMail subdir build all of
it's objects directly w/o intervening Makefile.am's and archive .a
libs.
This commit is contained in:
Jon Trulson
2019-10-29 18:30:19 -06:00
parent d183ade8b3
commit 77dfe92b3c
11 changed files with 16 additions and 17 deletions

View File

@@ -3,14 +3,10 @@ MAINTAINERCLEANFILES = Makefile.in
noinst_LIBRARIES = libCommon.a
libCommon_a_CXXFLAGS = -I../../include -I../../include/utils -I$(srcdir)/lib \
$(TIRPCINC) -DDL_NOT_DYNAMIC
$(TIRPCINC) -DDL_NOT_DYNAMIC -DUSE_SOCKSTREAM
if SOLARIS
libCommon_a_CXXFLAGS += -DMMAP_NORESERVE -DSPRO_V2
# FIXME - i386 is NOT big endian...
#if I386
#libCommon_a_CXXFLAGS += -DBIG_ENDIAN
#endif
endif
libCommon_a_SOURCES = APOPServer.C \
@@ -35,7 +31,7 @@ libCommon_a_SOURCES = APOPServer.C \
IO.C \
LanguagePortability.C \
ObjectKey.C \
NotDynamic.C
NotDynamic.C \
POP2Server.C \
POP3Server.C \
Process.C \

View File

@@ -69,7 +69,7 @@
//-------------------------------------
#include <locale.h>
#include <time.h>
#include <DtHelp/LocaleXlate.h>
#include <Dt/LocaleXlate.h>
#include <errno.h>
#include <stdlib.h>
#include <limits.h>