Merge branch 'master' into dtdocbook
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
SUBDIRS = backdrops icons dsdm dtmail dtpad dtfile dtwm dtlogin \
|
||||
dtsession dthello dtstyle dtexec dtdbcache dticon dtterm dtcalc \
|
||||
dtaction dtspcd dtscreen dtksh dtcm dtsearchpath dtappbuilder palettes \
|
||||
dtappintegrate dtprintegrate dtconfig dtcreate dtprintinfo fontaliases \
|
||||
dtdspmsg ttsnoop dtimsstart dtpdm dtsr dtpdmd dtinfo types \
|
||||
tttypes util dtopen localized dthelp nsgmls dtdocbook
|
||||
SUBDIRS = backdrops icons dsdm dtmail dtpad dtfile dtwm dtlogin \
|
||||
dtsession dthello dtstyle dtexec dtdbcache dticon dtterm \
|
||||
dtcalc dtaction dtspcd dtscreen dtksh dtcm dtsearchpath \
|
||||
dtappbuilder palettes dtappintegrate dtprintegrate dtconfig \
|
||||
dtcreate dtprintinfo fontaliases dtdspmsg ttsnoop dtimsstart \
|
||||
dtpdm dtsr dtpdmd dtinfo types tttypes util dtopen localized \
|
||||
dthelp nsgmls dtdocbook dtinfo
|
||||
|
||||
@@ -3670,7 +3670,7 @@ attch_ed_verify_props(void)
|
||||
* Get parent of current object
|
||||
*/
|
||||
parent = obj_get_parent(ats->cur_object);
|
||||
if (parent);
|
||||
if (parent)
|
||||
parent = obj_get_root(parent);
|
||||
|
||||
/*
|
||||
|
||||
@@ -2634,11 +2634,11 @@ propP_popup_message(
|
||||
/*
|
||||
* Free help data strings
|
||||
*/
|
||||
if (help_data.help_text);
|
||||
if (help_data.help_text)
|
||||
XtFree(help_data.help_text);
|
||||
if (help_data.help_volume);
|
||||
if (help_data.help_volume)
|
||||
XtFree(help_data.help_volume);
|
||||
if (help_data.help_locationID);
|
||||
if (help_data.help_locationID)
|
||||
XtFree(help_data.help_locationID);
|
||||
}
|
||||
else
|
||||
|
||||
@@ -539,8 +539,9 @@ do_calc(void) /* Perform arithmetic calculation and display result. */
|
||||
mpcdm(&dres, v->MPresult) ;
|
||||
}
|
||||
|
||||
else if (IS_KEY(v->cur_op, KEY_EQ)) /* do nothing. */ ; /* Equals */
|
||||
|
||||
else if (IS_KEY(v->cur_op, KEY_EQ)) /* Equals */
|
||||
; /* do nothing. */
|
||||
|
||||
show_display(v->MPresult) ;
|
||||
|
||||
if (!(IS_KEY(v->current, KEY_EQ) && IS_KEY(v->old_cal_value, KEY_EQ)))
|
||||
|
||||
@@ -220,7 +220,7 @@ void getAF_Icons(FiletypeData *pFiletypedata)
|
||||
/***************************************************************/
|
||||
pIconData = GetIconDataFromWid(AF_MED_IconGadget);
|
||||
if ( (pIconData->pmDirtyBit) &&
|
||||
(pIconData->pmFileName) &&
|
||||
(pIconData->pmFileName[0]) &&
|
||||
(strlen(pIconData->pmFileName)) ) {
|
||||
pFiletypedata->pszMedPmIcon = XtMalloc(strlen(pIconData->pmFileName) + 1);
|
||||
if (pFiletypedata->pszMedPmIcon) {
|
||||
@@ -234,7 +234,7 @@ void getAF_Icons(FiletypeData *pFiletypedata)
|
||||
/* Medium Bitmap */
|
||||
/***************************************************************/
|
||||
if ( (pIconData->bmDirtyBit) &&
|
||||
(pIconData->bmFileName) &&
|
||||
(pIconData->bmFileName[0]) &&
|
||||
(strlen(pIconData->bmFileName)) ) {
|
||||
pFiletypedata->pszMedBmIcon = XtMalloc(strlen(pIconData->bmFileName) + 1);
|
||||
if (pFiletypedata->pszMedBmIcon) {
|
||||
@@ -249,7 +249,7 @@ void getAF_Icons(FiletypeData *pFiletypedata)
|
||||
/***************************************************************/
|
||||
pIconData = GetIconDataFromWid(AF_TINY_IconGadget);
|
||||
if ( (pIconData->pmDirtyBit) &&
|
||||
(pIconData->pmFileName) &&
|
||||
(pIconData->pmFileName[0]) &&
|
||||
(strlen(pIconData->pmFileName)) ) {
|
||||
pFiletypedata->pszTinyPmIcon = XtMalloc(strlen(pIconData->pmFileName) + 1);
|
||||
if (pFiletypedata->pszTinyPmIcon) {
|
||||
|
||||
@@ -700,7 +700,7 @@ void SetIconData(Widget wid, char *pszIconFile, enum icon_size_range enumIconSiz
|
||||
pIconData = GetIconDataFromWid(wid);
|
||||
if (pIconData) {
|
||||
if ( (pIconData->pmDirtyBit) &&
|
||||
(pIconData->pmFileName) &&
|
||||
(pIconData->pmFileName[0]) &&
|
||||
(strlen(pIconData->pmFileName)) ) {
|
||||
#ifdef DEBUG
|
||||
printf("SetIconData: unlink '%s'\n", pIconData->pmFileName); /* debug */
|
||||
|
||||
@@ -634,7 +634,7 @@ void RemoveTmpIconFiles( void )
|
||||
|
||||
for (i=0; i < ICON_NUMBER; i++) {
|
||||
if ( (IconDataList[i]->pmDirtyBit) &&
|
||||
(IconDataList[i]->pmFileName) &&
|
||||
(IconDataList[i]->pmFileName[0]) &&
|
||||
(strlen(IconDataList[i]->pmFileName)) ) {
|
||||
#ifdef DEBUG
|
||||
printf("RemoveTmpIconFiles: unlink '%s'\n", IconDataList[i]->pmFileName); /* debug */
|
||||
|
||||
@@ -768,7 +768,8 @@ TblTableRowEnd(
|
||||
if ((at = FindAttValByName(e, "ROWSEP"))) {
|
||||
if (at[0] == '1') fprintf(fp, "_\n");
|
||||
}
|
||||
else if (rowsep) /* fprintf(fp, "_\n") */ ;
|
||||
else if (rowsep) /* fprintf(fp, "_\n") */
|
||||
;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@@ -221,10 +221,13 @@ Boolean
|
||||
Read_File(
|
||||
char *fnameIn )
|
||||
{
|
||||
char *base_name, *suffix, fname[MAXPATHLEN+1], *tmp, *tmp2;
|
||||
unsigned int mask_width_ret, mask_height_ret;
|
||||
int mask_x_hot, mask_y_hot, first;
|
||||
struct stat statBuf;
|
||||
char *base_name = NULL, *suffix = NULL,
|
||||
fname[MAXPATHLEN], *tmp = NULL, *tmp2 = NULL;
|
||||
unsigned int mask_width_ret = 0, mask_height_ret = 0;
|
||||
int mask_x_hot = 0, mask_y_hot = 0, first = 0;
|
||||
struct stat statBuf = {};
|
||||
|
||||
fname[0] = 0;
|
||||
|
||||
#ifdef DEBUG
|
||||
if (debug)
|
||||
@@ -241,7 +244,7 @@ Read_File(
|
||||
if (tmp && tmp2 && (tmp2 == tmp+1))
|
||||
{
|
||||
char *netfile, *localfile;
|
||||
|
||||
|
||||
tmp[0] = '\0';
|
||||
netfile = tt_host_file_netfile(fnameIn, tmp+1);
|
||||
localfile = tt_netfile_file(netfile);
|
||||
@@ -259,7 +262,7 @@ Read_File(
|
||||
|
||||
/*** - if we got a NULL base_name, return FALSE ***/
|
||||
base_name = strrchr(fname, '/');
|
||||
if (fname)
|
||||
if (fname[0])
|
||||
base_name = (base_name ? base_name + 1 : fname);
|
||||
if (!base_name)
|
||||
return (False);
|
||||
@@ -491,7 +494,7 @@ Write_File(
|
||||
|
||||
|
||||
base_name = strrchr(fname, '/');
|
||||
if (fname) {
|
||||
if (fname[0]) {
|
||||
base_name = (base_name ? base_name + 1 : fname);
|
||||
}
|
||||
|
||||
@@ -735,7 +738,7 @@ Display_XPMFile(
|
||||
reset_debug = True;
|
||||
}
|
||||
#endif
|
||||
PixelTableClear; /* force new pixel table now */
|
||||
PixelTableClear(); /* force new pixel table now */
|
||||
for (i=0; i<width; i++)
|
||||
for (j=0; j<height; j++) {
|
||||
converted = False;
|
||||
|
||||
@@ -2505,7 +2505,7 @@ ChangeTitle(void)
|
||||
sprintf(dialogTitle, "%s - ", name);
|
||||
}
|
||||
|
||||
if (last_fname && *last_fname)
|
||||
if (*last_fname)
|
||||
{
|
||||
if (name = strrchr(last_fname, '/'))
|
||||
name++;
|
||||
|
||||
@@ -2,8 +2,6 @@ infolibdir = ${prefix}/infolib
|
||||
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
infolib_DATA = mmdb.infolib.spec
|
||||
|
||||
noinst_LTLIBRARIES = liboliasdb.la
|
||||
|
||||
liboliasdb_la_CXXFLAGS = -DNO_DB_LOCK -I..
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
SUBDIRS = tools DtMmdb mmdb clients
|
||||
|
||||
#NOTYET dtinfo dtinfogen
|
||||
SUBDIRS = tools DtMmdb mmdb clients dtinfo dtinfogen
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_PROGRAMS = dtinfo_start
|
||||
startinstdir = $(CDE_INSTALLATION_TOP)/infolib/etc
|
||||
startinst_PROGRAMS = dtinfo_start
|
||||
|
||||
BUILT_SOURCES = dtinfo_start.opnums
|
||||
|
||||
dtinfo_start_LDADD = $(DTCLIENTLIBS) $(XTOOLLIB) -lXm
|
||||
dtinfo_start_LDADD = $(DTCLIENTLIBS) $(XTOOLLIB)
|
||||
|
||||
dtinfo_start.opnums: $(top_builddir)/programs/tttypes/dtinfo_start.opnums
|
||||
$(RM) dtinfo_start.opnums
|
||||
|
||||
@@ -2,6 +2,7 @@ MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
etcdir = $(CDE_CONFIGURATION_TOP)
|
||||
|
||||
SUBDIRS = fonts
|
||||
SUBDIRS = bitmaps fonts
|
||||
|
||||
etc_PROGRAMS = mmdb.mark.spec
|
||||
infolibdir = $(CDE_INSTALLATION_TOP)/infolib/etc
|
||||
dist_infolib_DATA = mmdb.mark.spec
|
||||
|
||||
17
cde/programs/dtinfo/dtinfo/install/lib/bitmaps/Makefile.am
Normal file
17
cde/programs/dtinfo/dtinfo/install/lib/bitmaps/Makefile.am
Normal file
@@ -0,0 +1,17 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
FILES= bomb bomb16 bomb16m bomb32 bomb32m bombm browse.xbm \
|
||||
browse_ins.xbm web_browse.xbm web_browse_ins.xbm default.xpm \
|
||||
deiconify.xbm detached.xpm help.xbm help_ins.xbm history.xbm \
|
||||
history_ins.xbm iconify.xbm locked.xbm logo.xpm.ps marks.xbm \
|
||||
marks_ins.xbm pinin.xbm pinmid.xbm pinout.xbm quit.xbm \
|
||||
search.xbm search_ins.xbm semilocked.xbm unlocked.xbm
|
||||
|
||||
# The last dir level for install is for language, default C
|
||||
|
||||
cdir = $(CDE_INSTALLATION_TOP)/appconfig/icons/C
|
||||
c_DATA = $(FILES)
|
||||
|
||||
|
||||
jadir = $(CDE_INSTALLATION_TOP)/appconfig/icons/ja
|
||||
ja_DATA = $(FILES)
|
||||
3
cde/programs/dtinfo/dtinfo/src/.gitignore
vendored
Normal file
3
cde/programs/dtinfo/dtinfo/src/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
OnlineRender/OnlineRender.d
|
||||
OnlineRender/OnlineRender.h
|
||||
cgm/testcgm
|
||||
@@ -1,6 +1,6 @@
|
||||
/* $XConsortium: Classlist.mk /main/8 1996/10/30 14:39:26 drk $ */
|
||||
# $XConsortium: Classlist.mk /main/8 1996/10/30 14:39:26 drk $
|
||||
|
||||
CLASSES= \
|
||||
Agents_CLASSES= \
|
||||
Agent \
|
||||
Dialog \
|
||||
ListView \
|
||||
@@ -33,7 +33,7 @@ UrlAgent \
|
||||
AddLibraryAgent
|
||||
|
||||
|
||||
SRCS=AgentMotif.C \
|
||||
Agents_SRCS=AgentMotif.C \
|
||||
MessageAgentMotif.C \
|
||||
IcccmAgent.C \
|
||||
AnchorCanvas.C \
|
||||
@@ -63,7 +63,7 @@ ScopeMenu.C \
|
||||
UrlAgentMotif.C \
|
||||
AddLibraryAgentMotif.C
|
||||
|
||||
MSGS= \
|
||||
Agents_MSGS= \
|
||||
Agent.msg \
|
||||
AddLibraryAgent.msg \
|
||||
BookmarkEdit.msg \
|
||||
|
||||
21
cde/programs/dtinfo/dtinfo/src/Agents/Makefile.am
Normal file
21
cde/programs/dtinfo/dtinfo/src/Agents/Makefile.am
Normal file
@@ -0,0 +1,21 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libAgents.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libAgents_a_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
libAgents_a_SOURCES = ../Prelude.h $(Agents_SRCS)
|
||||
|
||||
RANLIB = echo
|
||||
libAgents_a_AR = $(LD) -r -o
|
||||
|
||||
BUILT_SOURCES = Agents.msg
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
Agents.msg:
|
||||
cat $(Agents_MSGS) > $@
|
||||
@@ -1,5 +1,5 @@
|
||||
/* $XConsortium: Classlist.mk /main/3 1996/10/30 14:40:00 drk $ */
|
||||
CLASSES=\
|
||||
# $XConsortium: Classlist.mk /main/3 1996/10/30 14:40:00 drk $
|
||||
Basic_CLASSES=\
|
||||
Error \
|
||||
FolioObject \
|
||||
BitField \
|
||||
@@ -26,7 +26,7 @@ ClientEventHandler \
|
||||
NodeDisplayData \
|
||||
NodeViewInfo
|
||||
|
||||
SRCS= \
|
||||
Basic_SRCS= \
|
||||
FolioObject.C \
|
||||
BitField.C \
|
||||
OString.C \
|
||||
|
||||
16
cde/programs/dtinfo/dtinfo/src/Basic/Makefile.am
Normal file
16
cde/programs/dtinfo/dtinfo/src/Basic/Makefile.am
Normal file
@@ -0,0 +1,16 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libBasic.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libBasic_a_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
|
||||
libBasic_a_SOURCES = ../Prelude.h $(Basic_SRCS)
|
||||
|
||||
RANLIB = echo
|
||||
libBasic_a_AR = $(LD) -r -o
|
||||
@@ -1,4 +1,4 @@
|
||||
/* $XConsortium: Classlist.mk /main/4 1996/10/30 14:40:34 drk $ */
|
||||
# $XConsortium: Classlist.mk /main/4 1996/10/30 14:40:34 drk $
|
||||
CLASSLIBS= \
|
||||
Support \
|
||||
UAS \
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* $XConsortium: Classlist.mk /main/4 1996/10/30 14:41:07 drk $ */
|
||||
CLASSES= \
|
||||
# $XConsortium: Classlist.mk /main/4 1996/10/30 14:41:07 drk $
|
||||
Graphics_CLASSES= \
|
||||
PixmapGraphic
|
||||
|
||||
SRCS= \
|
||||
Graphics_SRCS= \
|
||||
PixmapGraphic.C
|
||||
|
||||
16
cde/programs/dtinfo/dtinfo/src/Graphics/Makefile.am
Normal file
16
cde/programs/dtinfo/dtinfo/src/Graphics/Makefile.am
Normal file
@@ -0,0 +1,16 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libGraphics.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libGraphics_a_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
|
||||
libGraphics_a_SOURCES = ../Prelude.h $(Graphics_SRCS)
|
||||
|
||||
RANLIB = echo
|
||||
libGraphics_a_AR = $(LD) -r -o
|
||||
@@ -1,11 +1,72 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
SUBDIRS = Agents Basic
|
||||
# get our env variables
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# get the toplevel Classlist
|
||||
include Classlist.mk
|
||||
|
||||
# CLASSLIST is defined in the top (dtinfo) level Classlist.mk file
|
||||
SUBDIRS = Widgets $(CLASSLIBS) Messages cgm
|
||||
|
||||
RESFILES = Macros.res Strings.res Messages.res Query/QueryEditor.res \
|
||||
Agents/BookmarkEdit.res Agents/MapAgent.res \
|
||||
Agents/MarkList.res Agents/PrintPanelAgent.res \
|
||||
Agents/Preferences.res Agents/SearchResultsAgent.res \
|
||||
Agents/NodeHistoryAgent.res Agents/NodeWindowAgent.res \
|
||||
Agents/GraphicAgent.res Query/QueryTermView.res
|
||||
|
||||
|
||||
BUILT_SOURCES = Prelude.h Support/Support.d Support/Support.h \
|
||||
UAS/UAS.d UAS/UAS.h Basic/Basic.d Basic/Basic.h \
|
||||
OliasSearch/OliasSearch.d OliasSearch/OliasSearch.h \
|
||||
Marks/Marks.d Marks/Marks.h Graphics/Graphics.d \
|
||||
Graphics/Graphics.h Preferences/Preferences.d \
|
||||
Preferences/Preferences.h Managers/Managers.d \
|
||||
Managers/Managers.h Other/Other.d Other/Other.h Query/Query.d \
|
||||
Query/Query.h Agents/Agents.d Agents/Agents.h \
|
||||
OnlineRender/OnlineRender.d OnlineRender/OnlineRender.h \
|
||||
\
|
||||
Dtinfo
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
Prelude.h:
|
||||
$(top_builddir)/programs/dtinfo/tools/misc/pmaker $(CLASSLIBS)
|
||||
|
||||
Dtinfo: Dtinfo.res $(RESFILES)
|
||||
$(CPP_PROGRAM) -traditional -nostdinc -C Dtinfo.res | $(TREERES) > $@
|
||||
|
||||
# dtinfo class dfile and hfile building for the modules
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo/src/dtinfo_dfiles_hfiles.mk
|
||||
|
||||
# gather up the messages and generate the file. MSGS comes from the
|
||||
# dtinfo/src/Classlist.mk file.
|
||||
|
||||
noinst_DATA = dtinfo.msg.updated
|
||||
|
||||
dtinfo.msg.updated:
|
||||
(msgs=; for i in $(MSGS) ; do msgs="$$msgs $$i/$$i.msg"; done; \
|
||||
cat $$msgs >dtinfo.cpp && \
|
||||
$(CPP_PROGRAM) -traditional -nostdinc -P -C dtinfo_msg.tmpl | $(MSGSETS) > dtinfo.msg.updated; \
|
||||
$(RM) dtinfo.cpp )
|
||||
|
||||
CLEANFILES += dtinfo.msg.updated dtinfo.cpp
|
||||
|
||||
## dtinfo proper
|
||||
OLIASNORMALLIBS= Agents/libAgents.a Other/libOther.a \
|
||||
Basic/libBasic.a Preferences/libPreferences.a \
|
||||
UAS/libUAS.a Query/libQuery.a Graphics/libGraphics.a \
|
||||
Managers/libManagers.a Support/libSupport.a \
|
||||
Marks/libMarks.a OnlineRender/libOnlineRender.a \
|
||||
OliasSearch/libOliasSearch.a Widgets/libWidgets.a \
|
||||
cgm/libcgm.a
|
||||
|
||||
bin_PROGRAMS = dtinfo
|
||||
|
||||
dtinfo_CPPFLAGS = -DEXPAND_TEMPLATES -I..
|
||||
dtinfo_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
|
||||
dtinfo_LDADD = lib
|
||||
dtinfo_LDADD = $(OLIASNORMALLIBS) $(LIBSEARCH) $(MMDB_LIBS) $(WWL_LIBS) \
|
||||
$(DTCLIENTLIBS) -lXmu $(XTOOLLIB)
|
||||
|
||||
dtinfo_SOURCES = main.C main_c_api.c
|
||||
dtinfo_SOURCES = main.C Support/InputNotifier.C
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/* $XConsortium: Classlist.mk /main/11 1996/10/30 14:41:40 drk $ */
|
||||
CLASSES= \
|
||||
# $XConsortium: Classlist.mk /main/11 1996/10/30 14:41:40 drk $
|
||||
Managers_CLASSES= \
|
||||
ErrorMgr \
|
||||
MessageMgr \
|
||||
StyleSheetMgr \
|
||||
@@ -26,7 +26,7 @@ InputMgrX \
|
||||
UrlMgr \
|
||||
EnvMgr
|
||||
|
||||
SRCS=MessageMgr.C \
|
||||
Managers_SRCS=MessageMgr.C \
|
||||
StyleSheetMgr.C \
|
||||
SearchMgr.C \
|
||||
NodeMgr.C \
|
||||
@@ -53,7 +53,7 @@ CatMgr.C \
|
||||
WString.C \
|
||||
EnvMgr.C
|
||||
|
||||
MSGS= \
|
||||
Managers_MSGS= \
|
||||
CatMgr.msg \
|
||||
EnvMgr.msg \
|
||||
TtIpcMgr.msg
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
using namespace std;
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include <lib/DtSvc/DtUtil2/LocaleXlate.h>
|
||||
#include <Dt/LocaleXlate.h>
|
||||
|
||||
// xList, NodeViewInfo, NodeWindowAgent & NodeMgr used only for
|
||||
// getting sections from NodeMgr
|
||||
|
||||
21
cde/programs/dtinfo/dtinfo/src/Managers/Makefile.am
Normal file
21
cde/programs/dtinfo/dtinfo/src/Managers/Makefile.am
Normal file
@@ -0,0 +1,21 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libManagers.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libManagers_a_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
libManagers_a_SOURCES = ../Prelude.h $(Managers_SRCS)
|
||||
|
||||
RANLIB = echo
|
||||
libManagers_a_AR = $(LD) -r -o
|
||||
|
||||
BUILT_SOURCES = Managers.msg
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
Managers.msg:
|
||||
cat $(Managers_MSGS) > $@
|
||||
@@ -1,10 +1,10 @@
|
||||
/* $XConsortium: Classlist.mk /main/4 1996/10/30 14:42:20 drk $ */
|
||||
CLASSES=\
|
||||
# $XConsortium: Classlist.mk /main/4 1996/10/30 14:42:20 drk $
|
||||
Marks_CLASSES=\
|
||||
Mark \
|
||||
Anchor \
|
||||
MarkBase
|
||||
|
||||
SRCS= \
|
||||
Marks_SRCS= \
|
||||
Mark.C \
|
||||
Anchor.C \
|
||||
Mark_mmdb.C \
|
||||
|
||||
17
cde/programs/dtinfo/dtinfo/src/Marks/Makefile.am
Normal file
17
cde/programs/dtinfo/dtinfo/src/Marks/Makefile.am
Normal file
@@ -0,0 +1,17 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libMarks.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libMarks_a_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
|
||||
libMarks_a_SOURCES = ../Prelude.h $(Marks_SRCS)
|
||||
|
||||
RANLIB = echo
|
||||
libMarks_a_AR = $(LD) -r -o
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* $XConsortium: Classlist.mk /main/2 1996/10/30 14:42:56 drk $ */
|
||||
# $XConsortium: Classlist.mk /main/2 1996/10/30 14:42:56 drk $
|
||||
|
||||
MSGS= \
|
||||
Messages_MSGS= \
|
||||
Message.msg \
|
||||
Version.msg
|
||||
|
||||
|
||||
15
cde/programs/dtinfo/dtinfo/src/Messages/Makefile.am
Normal file
15
cde/programs/dtinfo/dtinfo/src/Messages/Makefile.am
Normal file
@@ -0,0 +1,15 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_DATA = Messages.msg
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
BUILT_SOURCES = Messages.msg
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
Messages.msg:
|
||||
cat $(Messages_MSGS) > $@
|
||||
@@ -1,6 +1,6 @@
|
||||
/* $XConsortium: Classlist.mk /main/3 1996/10/30 14:43:34 drk $ */
|
||||
CLASSES=\
|
||||
# $XConsortium: Classlist.mk /main/3 1996/10/30 14:43:34 drk $
|
||||
OliasSearch_CLASSES=\
|
||||
ResultID
|
||||
|
||||
SRCS=\
|
||||
OliasSearch_SRCS=\
|
||||
ResultID.C
|
||||
|
||||
16
cde/programs/dtinfo/dtinfo/src/OliasSearch/Makefile.am
Normal file
16
cde/programs/dtinfo/dtinfo/src/OliasSearch/Makefile.am
Normal file
@@ -0,0 +1,16 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libOliasSearch.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libOliasSearch_a_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
|
||||
libOliasSearch_a_SOURCES = ../Prelude.h $(OliasSearch_SRCS)
|
||||
|
||||
RANLIB = echo
|
||||
libOliasSearch_a_AR = $(LD) -r -o
|
||||
@@ -1,5 +1,5 @@
|
||||
/* $XConsortium: Classlist.mk /main/2 1996/10/30 14:44:11 drk $ */
|
||||
# $XConsortium: Classlist.mk /main/2 1996/10/30 14:44:11 drk $
|
||||
|
||||
MSGS=\
|
||||
OnlineRender_MSGS=\
|
||||
CanvasRenderer.msg
|
||||
|
||||
|
||||
22
cde/programs/dtinfo/dtinfo/src/OnlineRender/Makefile.am
Normal file
22
cde/programs/dtinfo/dtinfo/src/OnlineRender/Makefile.am
Normal file
@@ -0,0 +1,22 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libOnlineRender.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libOnlineRender_a_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
libOnlineRender_a_SOURCES = ../Prelude.h CanvasRenderer.C \
|
||||
FeatureSupport.C FontCache.C SegClientData.C
|
||||
|
||||
RANLIB = echo
|
||||
libOnlineRender_a_AR = $(LD) -r -o
|
||||
|
||||
BUILT_SOURCES = OnlineRender.msg
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
OnlineRender.msg:
|
||||
cat $(OnlineRender_MSGS) > $@
|
||||
@@ -1,13 +1,13 @@
|
||||
/* $XConsortium: Classlist.mk /main/5 1996/10/30 14:44:59 drk $ */
|
||||
# $XConsortium: Classlist.mk /main/5 1996/10/30 14:44:59 drk $
|
||||
|
||||
CLASSES= \
|
||||
Other_CLASSES= \
|
||||
AppPrintData \
|
||||
WindowSystem
|
||||
|
||||
SRCS= \
|
||||
Other_SRCS= \
|
||||
AppPrintData.C \
|
||||
WindowSystemMotif.C
|
||||
|
||||
MSGS=\
|
||||
Other_MSGS=\
|
||||
WindowSystem.msg
|
||||
|
||||
|
||||
21
cde/programs/dtinfo/dtinfo/src/Other/Makefile.am
Normal file
21
cde/programs/dtinfo/dtinfo/src/Other/Makefile.am
Normal file
@@ -0,0 +1,21 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libOther.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libOther_a_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
libOther_a_SOURCES = ../Prelude.h $(Other_SRCS)
|
||||
|
||||
RANLIB = echo
|
||||
libOther_a_AR = $(LD) -r -o
|
||||
|
||||
BUILT_SOURCES = Other.msg
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
Other.msg:
|
||||
cat $(Other_MSGS) > $@
|
||||
@@ -1,13 +1,13 @@
|
||||
/* $XConsortium: Classlist.mk /main/3 1996/08/21 15:43:21 drk $ */
|
||||
# $XConsortium: Classlist.mk /main/3 1996/08/21 15:43:21 drk $
|
||||
|
||||
CLASSES= \
|
||||
Preferences_CLASSES= \
|
||||
UserPreference \
|
||||
IntegerPref \
|
||||
BooleanPref \
|
||||
StringPref \
|
||||
WindowGeometryPref
|
||||
|
||||
SRCS=\
|
||||
Preferences_SRCS=\
|
||||
UserPreference.C \
|
||||
IntegerPref.C \
|
||||
BooleanPref.C \
|
||||
|
||||
16
cde/programs/dtinfo/dtinfo/src/Preferences/Makefile.am
Normal file
16
cde/programs/dtinfo/dtinfo/src/Preferences/Makefile.am
Normal file
@@ -0,0 +1,16 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libPreferences.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libPreferences_a_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
|
||||
libPreferences_a_SOURCES = ../Prelude.h $(Preferences_SRCS)
|
||||
|
||||
RANLIB = echo
|
||||
libPreferences_a_AR = $(LD) -r -o
|
||||
@@ -1,18 +1,18 @@
|
||||
/* $XConsortium: Classlist.mk /main/4 1996/08/21 15:43:28 drk $ */
|
||||
# $XConsortium: Classlist.mk /main/4 1996/08/21 15:43:28 drk $
|
||||
|
||||
CLASSES= \
|
||||
Query_CLASSES= \
|
||||
QueryTerm \
|
||||
QueryTermView \
|
||||
QueryGroupView \
|
||||
QueryGroup \
|
||||
QueryEditor
|
||||
|
||||
SRCS= \
|
||||
Query_SRCS= \
|
||||
QueryEditor.C \
|
||||
QueryTermView.C \
|
||||
QueryGroupView.C \
|
||||
QueryTerm.C \
|
||||
QueryGroup.C
|
||||
|
||||
MSGS= \
|
||||
Query_MSGS= \
|
||||
QueryEditor.msg
|
||||
|
||||
21
cde/programs/dtinfo/dtinfo/src/Query/Makefile.am
Normal file
21
cde/programs/dtinfo/dtinfo/src/Query/Makefile.am
Normal file
@@ -0,0 +1,21 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libQuery.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libQuery_a_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
libQuery_a_SOURCES = ../Prelude.h $(Query_SRCS)
|
||||
|
||||
RANLIB = echo
|
||||
libQuery_a_AR = $(LD) -r -o
|
||||
|
||||
BUILT_SOURCES = Query.msg
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
Query.msg:
|
||||
cat $(Query_MSGS) > $@
|
||||
@@ -1,8 +1,8 @@
|
||||
/* $XConsortium: Classlist.mk /main/4 1996/10/30 14:45:39 drk $ */
|
||||
CLASSES=\
|
||||
# $XConsortium: Classlist.mk /main/4 1996/10/30 14:45:39 drk $
|
||||
Support_CLASSES=\
|
||||
xList \
|
||||
InputNotifier
|
||||
|
||||
SRCS= \
|
||||
Support_SRCS= \
|
||||
List_base.C \
|
||||
UtilityFunctions.C
|
||||
|
||||
16
cde/programs/dtinfo/dtinfo/src/Support/Makefile.am
Normal file
16
cde/programs/dtinfo/dtinfo/src/Support/Makefile.am
Normal file
@@ -0,0 +1,16 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libSupport.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libSupport_a_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
|
||||
libSupport_a_SOURCES = ../Prelude.h $(Support_SRCS)
|
||||
|
||||
RANLIB = echo
|
||||
libSupport_a_AR = $(LD) -r -o
|
||||
@@ -1,7 +1,7 @@
|
||||
/* $XConsortium: Classlist.mk /main/5 1996/10/30 14:46:19 drk $ */
|
||||
CLASSES=
|
||||
# $XConsortium: Classlist.mk /main/5 1996/10/30 14:46:19 drk $
|
||||
Base_CLASSES=
|
||||
|
||||
SRCS= \
|
||||
Base_SRCS= \
|
||||
UAS_Base.C \
|
||||
UAS_Buffer.C \
|
||||
UAS_Collection.C \
|
||||
@@ -20,6 +20,6 @@ UAS_TextRun.C \
|
||||
UAS_String.C \
|
||||
UAS_StyleSheet.C
|
||||
|
||||
MSGS=\
|
||||
Base_MSGS=\
|
||||
UAS_Base.msg
|
||||
|
||||
|
||||
22
cde/programs/dtinfo/dtinfo/src/UAS/Base/Makefile.am
Normal file
22
cde/programs/dtinfo/dtinfo/src/UAS/Base/Makefile.am
Normal file
@@ -0,0 +1,22 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libBase.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libBase_a_CXXFLAGS = -I.. -I ../.. -I../Support $(DTINFO_DEFINES) \
|
||||
$(DTINFO_INCLUDES)
|
||||
libBase_a_SOURCES = $(Base_SRCS)
|
||||
|
||||
RANLIB = echo
|
||||
libBase_a_AR = $(LD) -r -o
|
||||
|
||||
BUILT_SOURCES = Base.msg
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
Base.msg:
|
||||
cat $(Base_MSGS) > $@
|
||||
@@ -1,7 +1,7 @@
|
||||
/* $XConsortium: Classlist.mk /main/4 1996/10/30 14:46:56 drk $ */
|
||||
# $XConsortium: Classlist.mk /main/4 1996/10/30 14:46:56 drk $
|
||||
|
||||
MSGS = \
|
||||
Base \
|
||||
DtSR \
|
||||
MMDB
|
||||
UAS_MSGS = \
|
||||
Base/Base.msg \
|
||||
DtSR/DtSR.msg \
|
||||
MMDB/MMDB.msg
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* $XConsortium: Classlist.mk /main/5 1996/10/30 14:47:36 drk $ */
|
||||
CLASSES=
|
||||
# $XConsortium: Classlist.mk /main/5 1996/10/30 14:47:36 drk $
|
||||
DtSR_CLASSES=
|
||||
|
||||
SRCS= \
|
||||
DtSR_SRCS= \
|
||||
DtSR_BookcaseEntry.C \
|
||||
DtSR_Parser.C \
|
||||
DtSR_SearchEngine.C \
|
||||
@@ -12,6 +12,6 @@ DtSR_SearchZones.C \
|
||||
Tml_TextRenderer.C \
|
||||
TextParser.C
|
||||
|
||||
MSGS= \
|
||||
DtSR_MSGS= \
|
||||
DtSR_Parser.msg \
|
||||
DtSR_SearchEngine.msg
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
#include "DtSR_Stems.hh"
|
||||
|
||||
extern "C" {
|
||||
#include "Search.h"
|
||||
#include "Dt/Search.h"
|
||||
}
|
||||
|
||||
class DtSR_BookcaseEntry : public UAS_BookcaseEntry
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
#include "UAS_SearchEngine.hh"
|
||||
|
||||
extern "C" {
|
||||
#include "Search.h"
|
||||
#include "Dt/Search.h"
|
||||
}
|
||||
|
||||
#include "DtSR_Parser.hh"
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
#define _DTSR_STEMS_HH_
|
||||
|
||||
extern "C" {
|
||||
#include "Search.h"
|
||||
#include "Dt/Search.h"
|
||||
}
|
||||
|
||||
#include "UAS_Base.hh"
|
||||
|
||||
22
cde/programs/dtinfo/dtinfo/src/UAS/DtSR/Makefile.am
Normal file
22
cde/programs/dtinfo/dtinfo/src/UAS/DtSR/Makefile.am
Normal file
@@ -0,0 +1,22 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libDtSR.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libDtSR_a_CXXFLAGS = -I../Base -I./Util_Classes -I../.. \
|
||||
$(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
libDtSR_a_SOURCES = $(DtSR_SRCS)
|
||||
|
||||
RANLIB = echo
|
||||
libDtSR_a_AR = $(LD) -r -o
|
||||
|
||||
BUILT_SOURCES = DtSR.msg
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
DtSR.msg:
|
||||
cat $(DtSR_MSGS) > $@
|
||||
@@ -1,7 +1,7 @@
|
||||
/* $XConsortium: Classlist.mk /main/4 1996/10/30 14:48:10 drk $ */
|
||||
CLASSES=
|
||||
# $XConsortium: Classlist.mk /main/4 1996/10/30 14:48:10 drk $
|
||||
MMDB_CLASSES=
|
||||
|
||||
SRCS= \
|
||||
MMDB_SRCS= \
|
||||
MMDB.C \
|
||||
MMDB_Common.C \
|
||||
MMDB_Factory.C \
|
||||
@@ -11,5 +11,5 @@ MMDB_BookCase.C \
|
||||
MMDB_EmbeddedObject.C \
|
||||
MMDB_StyleSheet.C
|
||||
|
||||
MSGS=\
|
||||
MMDB_MSGS=\
|
||||
UAS_MMDB.msg
|
||||
|
||||
23
cde/programs/dtinfo/dtinfo/src/UAS/MMDB/Makefile.am
Normal file
23
cde/programs/dtinfo/dtinfo/src/UAS/MMDB/Makefile.am
Normal file
@@ -0,0 +1,23 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libMMDB.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libMMDB_a_CXXFLAGS = -I../Base -I../.. $(DTINFO_DEFINES) \
|
||||
$(DTINFO_INCLUDES)
|
||||
libMMDB_a_SOURCES = $(MMDB_SRCS)
|
||||
|
||||
RANLIB = echo
|
||||
libMMDB_a_AR = $(LD) -r -o
|
||||
|
||||
|
||||
BUILT_SOURCES = MMDB.msg
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
MMDB.msg:
|
||||
cat $(MMDB_MSGS) > $@
|
||||
26
cde/programs/dtinfo/dtinfo/src/UAS/Makefile.am
Normal file
26
cde/programs/dtinfo/dtinfo/src/UAS/Makefile.am
Normal file
@@ -0,0 +1,26 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
SUBDIRS = Base MMDB DtSR
|
||||
|
||||
noinst_LIBRARIES = libUAS.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
include Classlist.mk
|
||||
|
||||
libUAS_a_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
libUAS_a_SOURCES =
|
||||
|
||||
libUAS_a_LIBADD = Base/libBase.a MMDB/libMMDB.a DtSR/libDtSR.a
|
||||
|
||||
RANLIB = echo
|
||||
libUAS_a_AR = $(LD) -r -o
|
||||
|
||||
noinst_DATA = UAS.msg
|
||||
|
||||
UAS.msg: $(UAS_MSGS)
|
||||
cat $(UAS_MSGS) > $@
|
||||
|
||||
CLEANFILES = UAS.msg
|
||||
15
cde/programs/dtinfo/dtinfo/src/Widgets/Makefile.am
Normal file
15
cde/programs/dtinfo/dtinfo/src/Widgets/Makefile.am
Normal file
@@ -0,0 +1,15 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libWidgets.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
libWidgets_a_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
|
||||
libWidgets_a_SOURCES = Pixmap.c Tree.c Panner.c Simple.c Porthole.c \
|
||||
XawInitFake.c TabButton.c Restraint.c WXmOpButton.C
|
||||
|
||||
RANLIB = echo
|
||||
libWidgets_a_AR = $(LD) -r -o
|
||||
|
||||
22
cde/programs/dtinfo/dtinfo/src/cgm/Makefile.am
Normal file
22
cde/programs/dtinfo/dtinfo/src/cgm/Makefile.am
Normal file
@@ -0,0 +1,22 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libcgm.a
|
||||
|
||||
# get our env
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
# class info
|
||||
libcgm_a_CFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES) \
|
||||
-I$(top_srcdir)/include/DtI
|
||||
|
||||
libcgm_a_SOURCES = cgmcmds.c cgmcommon.c cgmio.c cgmtext.c getcgm.c
|
||||
RANLIB = echo
|
||||
libcgm_a_AR = $(LD) -r -o
|
||||
|
||||
noinst_PROGRAMS = testcgm
|
||||
testcgm_CPPFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES) \
|
||||
-I$(top_srcdir)/include/DtI
|
||||
testcgm_SOURCES = testcgm.c
|
||||
testcgm_LDADD = libcgm.a $(DTCLIENTLIBS) $(XTOOLLIB)
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
#include "spec.h"
|
||||
#include "GraphicsP.h"
|
||||
|
||||
main(int argc, char **argv)
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
XGCValues myStruct;
|
||||
unsigned long mask;
|
||||
@@ -42,7 +42,7 @@ main(int argc, char **argv)
|
||||
Pixel *ret_colors;
|
||||
int ret_number, pageNo;
|
||||
GC myGC;
|
||||
Pixmap myPixmap = NULL;
|
||||
Pixmap myPixmap = 0;
|
||||
char *fileName;
|
||||
int i;
|
||||
_DtGrStream stream ;
|
||||
@@ -58,7 +58,7 @@ main(int argc, char **argv)
|
||||
512, 512, 2,
|
||||
BlackPixel(display, scr_num),
|
||||
WhitePixel(display, scr_num));
|
||||
XSetStandardProperties(display, win, "VCGM", "VCGM", NULL, NULL, 0,
|
||||
XSetStandardProperties(display, win, "VCGM", "VCGM", 0, NULL, 0,
|
||||
NULL);
|
||||
XMapWindow(display, win);
|
||||
/* find out what we actually got */
|
||||
|
||||
110
cde/programs/dtinfo/dtinfo/src/dtinfo_dfiles_hfiles.mk
Normal file
110
cde/programs/dtinfo/dtinfo/src/dtinfo_dfiles_hfiles.mk
Normal file
@@ -0,0 +1,110 @@
|
||||
## Build the dfiles and hfiles components for each of the class
|
||||
## modules. Moved into this file to keep Makefile.am in dtinfo/src
|
||||
## somewhat morereadable
|
||||
|
||||
# Support
|
||||
include Support/Classlist.mk
|
||||
Support/Support.d: Support/Classlist.mk
|
||||
cd Support && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles d Support $(Support_CLASSES)
|
||||
|
||||
Support/Support.h: Support/Classlist.mk
|
||||
cd Support && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles h Support $(Support_CLASSES)
|
||||
|
||||
|
||||
# UAS
|
||||
include UAS/Classlist.mk
|
||||
UAS/UAS.d: UAS/Classlist.mk
|
||||
cd UAS && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles d UAS $(UAS_CLASSES)
|
||||
|
||||
UAS/UAS.h: UAS/Classlist.mk
|
||||
cd UAS && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles h UAS $(UAS_CLASSES)
|
||||
|
||||
|
||||
# Basic
|
||||
include Basic/Classlist.mk
|
||||
Basic/Basic.d: Basic/Classlist.mk
|
||||
cd Basic && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles d Basic $(Basic_CLASSES)
|
||||
|
||||
Basic/Basic.h: Basic/Classlist.mk
|
||||
cd Basic && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles h Basic $(Basic_CLASSES)
|
||||
|
||||
|
||||
# OliasSearch
|
||||
include OliasSearch/Classlist.mk
|
||||
OliasSearch/OliasSearch.d: OliasSearch/Classlist.mk
|
||||
cd OliasSearch && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles d OliasSearch $(OliasSearch_CLASSES)
|
||||
|
||||
OliasSearch/OliasSearch.h: OliasSearch/Classlist.mk
|
||||
cd OliasSearch && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles h OliasSearch $(OliasSearch_CLASSES)
|
||||
|
||||
|
||||
# Marks
|
||||
include Marks/Classlist.mk
|
||||
Marks/Marks.d: Marks/Classlist.mk
|
||||
cd Marks && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles d Marks $(Marks_CLASSES)
|
||||
|
||||
Marks/Marks.h: Marks/Classlist.mk
|
||||
cd Marks && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles h Marks $(Marks_CLASSES)
|
||||
|
||||
|
||||
# Graphics
|
||||
include Graphics/Classlist.mk
|
||||
Graphics/Graphics.d: Graphics/Classlist.mk
|
||||
cd Graphics && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles d Graphics $(Graphics_CLASSES)
|
||||
|
||||
Graphics/Graphics.h: Graphics/Classlist.mk
|
||||
cd Graphics && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles h Graphics $(Graphics_CLASSES)
|
||||
|
||||
|
||||
# Preferences
|
||||
include Preferences/Classlist.mk
|
||||
Preferences/Preferences.d: Preferences/Classlist.mk
|
||||
cd Preferences && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles d Preferences $(Preferences_CLASSES)
|
||||
|
||||
Preferences/Preferences.h: Preferences/Classlist.mk
|
||||
cd Preferences && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles h Preferences $(Preferences_CLASSES)
|
||||
|
||||
|
||||
# Managers
|
||||
include Managers/Classlist.mk
|
||||
Managers/Managers.d: Managers/Classlist.mk
|
||||
cd Managers && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles d Managers $(Managers_CLASSES)
|
||||
|
||||
Managers/Managers.h: Managers/Classlist.mk
|
||||
cd Managers && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles h Managers $(Managers_CLASSES)
|
||||
|
||||
|
||||
# Other
|
||||
include Other/Classlist.mk
|
||||
Other/Other.d: Other/Classlist.mk
|
||||
cd Other && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles d Other $(Other_CLASSES)
|
||||
|
||||
Other/Other.h: Other/Classlist.mk
|
||||
cd Other && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles h Other $(Other_CLASSES)
|
||||
|
||||
|
||||
# Query
|
||||
include Query/Classlist.mk
|
||||
Query/Query.d: Query/Classlist.mk
|
||||
cd Query && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles d Query $(Query_CLASSES)
|
||||
|
||||
Query/Query.h: Query/Classlist.mk
|
||||
cd Query && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles h Query $(Query_CLASSES)
|
||||
|
||||
|
||||
# Agents
|
||||
include Agents/Classlist.mk
|
||||
Agents/Agents.d: Agents/Classlist.mk
|
||||
cd Agents && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles d Agents $(Agents_CLASSES)
|
||||
|
||||
Agents/Agents.h: Agents/Classlist.mk
|
||||
cd Agents && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles h Agents $(Agents_CLASSES)
|
||||
|
||||
|
||||
# OnlineRender
|
||||
include OnlineRender/Classlist.mk
|
||||
OnlineRender/OnlineRender.d: OnlineRender/Classlist.mk
|
||||
cd OnlineRender && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles d OnlineRender $(OnlineRender_CLASSES)
|
||||
|
||||
OnlineRender/OnlineRender.h: OnlineRender/Classlist.mk
|
||||
cd OnlineRender && $(top_builddir)/../programs/dtinfo/tools/misc/dfiles h OnlineRender $(OnlineRender_CLASSES)
|
||||
@@ -5,7 +5,7 @@ noinst_LIBRARIES = libWWL.a
|
||||
libWWL_a_CXXFLAGS = -I../include
|
||||
|
||||
if SOLARIS
|
||||
lbWWL_a_CXXFLAGS += -DSYSV -DSVR4
|
||||
libWWL_a_CXXFLAGS += -DSYSV -DSVR4
|
||||
endif
|
||||
|
||||
libWWL_a_SOURCES = WArgList.C WCallback.C WComposite.C \
|
||||
|
||||
49
cde/programs/dtinfo/dtinfo_env.mk
Normal file
49
cde/programs/dtinfo/dtinfo_env.mk
Normal file
@@ -0,0 +1,49 @@
|
||||
# Some common env variables needed by the various modules. This file
|
||||
# is included by various Makefile.am files in the dtinfo hierarchy.
|
||||
|
||||
# common defines
|
||||
DTINFO_DEFINES = -DDtinfoClient -DUseWideChars -DInternationalize \
|
||||
-DUseMotifXpm -DUseTooltalk -DUseSessionMgmt -DDTSEARCH -DCDE_NEXT \
|
||||
-DEXPAND_TEMPLATES
|
||||
|
||||
if LINUX
|
||||
DTINFO_DEFINES += -DNATIVE_EXCEPTIONS
|
||||
endif
|
||||
|
||||
if BSD
|
||||
DTINFO_DEFINES += -DNATIVE_EXCEPTIONS
|
||||
endif
|
||||
|
||||
if SOLARIS
|
||||
DTINFO_DEFINES += -DHAS_TERMINATE -DNATIVE_EXCEPTIONS
|
||||
endif
|
||||
|
||||
# where stuff is... This may need to be fixed further if we want to be
|
||||
# able to support shadow builds someday
|
||||
OLIAS = $(top_builddir)/programs/dtinfo
|
||||
OLIASSRC = $(top_srcdir)/programs/dtinfo
|
||||
WWL = $(OLIAS)/dtinfo/wwl
|
||||
WWLSRC = $(OLIASSRC)/dtinfo/wwl
|
||||
MMDB = $(OLIAS)/DtMmdb
|
||||
MMDBSRC = $(OLIASSRC)/DtMmdb
|
||||
EXCEPTIONS = $(MMDB)/dti_excs
|
||||
EXCEPTIONSSRC = $(MMDBSRC)/dti_excs
|
||||
TOOLS = $(OLIAS)/tools
|
||||
UAS = $(OLIAS)/dtinfo/src/UAS
|
||||
UASSRC = $(OLIASSRC)/dtinfo/src/UAS
|
||||
|
||||
WWL_INCLUDES = -I$(WWLSRC)/include
|
||||
WWL_LIBS=$(STATIC) -L$(WWL)/src -lWWL
|
||||
EXCEPTIONS_INCLUDES = -I$(EXCEPTIONSSRC)
|
||||
MMDB_INCLUDES = -I$(MMDBSRC)
|
||||
MMDB_LIBS=$(OLIAS)/mmdb/libMMDB.la
|
||||
MMDB_LIBS_C_API = -L$(MMDB) -lDtMmdb
|
||||
UAS_INCLUDES = -I$(UASSRC)/Base
|
||||
COMMON_CLASS_INCLUDES = -I$(MMDBSRC)/dti_cc -I$(MMDBSRC)
|
||||
STYLE_SHEET_INCLUDES = -I$(MMDBSRC)/StyleSheet
|
||||
TREERES = $(TOOLS)/misc/treeres
|
||||
MSGSETS = $(TOOLS)/misc/msgsets
|
||||
|
||||
DTINFO_INCLUDES = -I.. $(UAS_INCLUDES) $(EXCEPTIONS_INCLUDES) \
|
||||
$(WWL_INCLUDES) $(STYLE_SHEET_INCLUDES) \
|
||||
$(COMMON_CLASS_INCLUDES)
|
||||
@@ -1,5 +1,3 @@
|
||||
sgmldir = ${prefix}/infolib/C/SGML
|
||||
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
DECL_FILES= \
|
||||
@@ -44,4 +42,5 @@ MISC_FILES= \
|
||||
|
||||
ALL_FILES = $(DECL_FILES) $(DTD_FILES) $(ENTITY_FILES) $(MISC_FILES)
|
||||
|
||||
sgmldir = $(CDE_INSTALLATION_TOP)/infolib/C/SGML
|
||||
sgml_DATA = $(ALL_FILES)
|
||||
|
||||
@@ -1,10 +1,13 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
SUBDIRS = etc C.ISO-8859-1 ja_JP.EUC-JP
|
||||
SUBDIRS = etc C.ISO-8859-1
|
||||
|
||||
C:: C.ISO-8859-1
|
||||
$(RM) $@
|
||||
$(LN) $? $@
|
||||
# Not supported, but we'll keep it here in case someday...
|
||||
# SUBDIRS += ja_JP.EUC-JP
|
||||
|
||||
BUILT_SOURCES = C
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
C:
|
||||
$(LN_S) C.ISO-8859-1 $@
|
||||
|
||||
clean::
|
||||
$(RM) C
|
||||
|
||||
14
cde/programs/dtinfo/dtinfogen/install/Makefile.am
Normal file
14
cde/programs/dtinfo/dtinfogen/install/Makefile.am
Normal file
@@ -0,0 +1,14 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
# get our env variables
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
infolibdir = $(CDE_INSTALLATION_TOP)/infolib/etc
|
||||
infolib_PROGRAMS = valBase
|
||||
|
||||
valBase_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
valBase_LDADD = $(MMDB_LIBS) $(DTCLIENTLIBS) $(XTOOLLIB)
|
||||
valBase_SOURCES = valBase.C
|
||||
|
||||
infolib_SCRIPTS = DeInstallBase ChangeCaseTitle Librarian
|
||||
|
||||
@@ -57,8 +57,9 @@ using namespace std;
|
||||
#include "oliasdb/mmdb.h"
|
||||
#include "oliasdb/asciiIn_filters.h"
|
||||
|
||||
// JET - don't need this - it (exit()) is defined in stdlib.h
|
||||
// DDK header file
|
||||
#include "olGlobal.h"
|
||||
// #include "olGlobal.h"
|
||||
|
||||
// Debuggging macro
|
||||
int dbgLevel;
|
||||
|
||||
12
cde/programs/dtinfo/dtinfogen/mmdb/StyleSheet/Makefile.am
Normal file
12
cde/programs/dtinfo/dtinfogen/mmdb/StyleSheet/Makefile.am
Normal file
@@ -0,0 +1,12 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
# get our env variables
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
infolibdir = $(CDE_INSTALLATION_TOP)/infolib/etc
|
||||
infolib_PROGRAMS = validator
|
||||
|
||||
validator_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
validator_LDADD = $(MMDB_LIBS) $(DTCLIENTLIBS) $(XTOOLLIB)
|
||||
validator_SOURCES = validator.C
|
||||
|
||||
25
cde/programs/dtinfo/dtinfogen/mmdb/src/Makefile.am
Normal file
25
cde/programs/dtinfo/dtinfogen/mmdb/src/Makefile.am
Normal file
@@ -0,0 +1,25 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
# get our env variables
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
infolibdir = $(CDE_INSTALLATION_TOP)/infolib/etc
|
||||
infolib_PROGRAMS = dbdrv
|
||||
|
||||
dbdrv_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
dbdrv_LDADD = $(MMDB_LIBS) $(DTCLIENTLIBS) $(XTOOLLIB)
|
||||
dbdrv_SOURCES = main.C
|
||||
|
||||
noinst_PROGRAMS = restore dbdrv_c_api
|
||||
|
||||
restore_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
restore_LDADD = $(MMDB_LIBS) $(DTCLIENTLIBS) $(XTOOLLIB)
|
||||
restore_SOURCES = restore.C
|
||||
|
||||
dbdrv_c_api_CXXFLAGS = $(DTINFO_DEFINES) $(DTINFO_INCLUDES)
|
||||
dbdrv_c_api_LDADD = $(MMDB_LIBS_C_API) $(WWL_LIBS) \
|
||||
$(DTCLIENTLIBS) $(XTOOLLIB)
|
||||
dbdrv_c_api_SOURCES = main_c_api.c
|
||||
|
||||
|
||||
|
||||
@@ -1,21 +1,27 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libHardCopy.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
|
||||
libHardCopy_a_CXXFLAGS = -DCDE_NEXT -DEXPAND_TEMPLATES -I../../DtMmdb \
|
||||
-I../../DtMmdb/HardCopy -I../../DtMmdb/dti_excs
|
||||
|
||||
libHardCopy_a_SOURCES = ../../DtMmdb/HardCopy/FPset.C \
|
||||
../../DtMmdb/HardCopy/HardCopyFP.C \
|
||||
../../DtMmdb/HardCopy/autoNumber.C \
|
||||
../../DtMmdb/HardCopy/autoNumberFP.C
|
||||
BASE = ../../DtMmdb/HardCopy
|
||||
BUILT_SOURCES = FPset.C HardCopyFP.C autoNumber.C autoNumberFP.C
|
||||
|
||||
if LINUX
|
||||
libHardCopy_a_SOURCES += ../../DtMmdb/HardCopy/TemplatesAutoNumber.C
|
||||
BUILT_SOURCES += TemplatesAutoNumber.C
|
||||
endif
|
||||
|
||||
if BSD
|
||||
libHardCopy_a_SOURCES += ../../DtMmdb/HardCopy/TemplatesAutoNumber.C
|
||||
BUILT_SOURCES += TemplatesAutoNumber.C
|
||||
endif
|
||||
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libHardCopy.la
|
||||
|
||||
libHardCopy_la_CXXFLAGS = $(DTINFO_DEFINES) \
|
||||
-I../../DtMmdb -I../../DtMmdb/HardCopy -I../../DtMmdb/dti_excs \
|
||||
-I$(BASE)
|
||||
|
||||
libHardCopy_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -12,15 +12,21 @@ SUBDIRS = \
|
||||
utility HardCopy \
|
||||
dti_cc StyleSheet
|
||||
|
||||
noinst_LIBRARIES = libmmdb.a
|
||||
noinst_LTLIBRARIES = libMMDB.la
|
||||
|
||||
libmmdb_a_SOURCES =
|
||||
libMMDB_la_SOURCES =
|
||||
# fake things so libtool creates this as a C++ library
|
||||
nodist_EXTRA_libMMDB_la_SOURCES = dummy.cxx
|
||||
|
||||
libmmdb_a_LIBADD = api/libapi.a btree/libbtree.a \
|
||||
btree_berkeley/libbtree_berkeley.a \
|
||||
compression/libcompression.a \
|
||||
diskhash/libdiskhash.a dstr/libdstr.a \
|
||||
dti_excs/libdti_excs.a dynhash/libdynhash.a \
|
||||
hmphf/libhmphf.a index/libindex.a mgrs/libmgrs.a \
|
||||
misc/libmisc.a object/libobject.a oliasdb/liboliasdb.a \
|
||||
schema/libschema.a storage/libstorage.a utility/libutility.a
|
||||
libMMDB_la_LIBADD = api/libapi.la btree_berkeley/libbtree_berkeley.la \
|
||||
btree/libbtree.la \
|
||||
compression/libcompression.la \
|
||||
diskhash/libdiskhash.la dstr/libdstr.la \
|
||||
dti_cc/libdti_cc.la dti_excs/libdti_excs.la \
|
||||
dynhash/libdynhash.la HardCopy/libHardCopy.la \
|
||||
hmphf/libhmphf.la index/libindex.la \
|
||||
mgrs/libmgrs.la misc/libmisc.la \
|
||||
object/libobject.la oliasdb/liboliasdb.la \
|
||||
schema/libschema.la storage/libstorage.la \
|
||||
StyleSheet/libStyleSheet.la \
|
||||
utility/libutility.la
|
||||
|
||||
@@ -1,42 +1,36 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libStyleSheet.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/StyleSheet
|
||||
BUILT_SOURCES = Attribute.C AttributeList.C BitVector.C DocParser.C \
|
||||
Element.C Expression.C Feature.C FeatureDefDictionary.C \
|
||||
FeatureSet.C FeatureValue.C PathQualifier.C PathTable.C \
|
||||
Resolver.C ResolverStack.C SSPath.C StyleSheet.C \
|
||||
StyleSheetExceptions.C SymTab.C VariableTable.C defParser.C \
|
||||
defToken.C style.C tokenStyle.C RendererHCV.C
|
||||
|
||||
libStyleSheet_a_CXXFLAGS = -DEXPAND_TEMPLATES -DCDE_NEXT -I../../DtMmdb \
|
||||
-I../../DtMmdb/StyleSheet -I../../DtMmdb/dti_excs \
|
||||
-I../../DtMmdb/dti_cc
|
||||
SPECFILES = hardcopy.feature.spec online.feature.spec
|
||||
|
||||
libStyleSheet_a_SOURCES = ../../DtMmdb/StyleSheet/Attribute.C \
|
||||
../../DtMmdb/StyleSheet/AttributeList.C \
|
||||
../../DtMmdb/StyleSheet/BitVector.C \
|
||||
../../DtMmdb/StyleSheet/DocParser.C \
|
||||
../../DtMmdb/StyleSheet/Element.C \
|
||||
../../DtMmdb/StyleSheet/Expression.C \
|
||||
../../DtMmdb/StyleSheet/Feature.C \
|
||||
../../DtMmdb/StyleSheet/FeatureDefDictionary.C \
|
||||
../../DtMmdb/StyleSheet/FeatureSet.C \
|
||||
../../DtMmdb/StyleSheet/FeatureValue.C \
|
||||
../../DtMmdb/StyleSheet/PathQualifier.C \
|
||||
../../DtMmdb/StyleSheet/PathTable.C \
|
||||
../../DtMmdb/StyleSheet/Resolver.C \
|
||||
../../DtMmdb/StyleSheet/ResolverStack.C \
|
||||
../../DtMmdb/StyleSheet/SSPath.C \
|
||||
../../DtMmdb/StyleSheet/StyleSheet.C \
|
||||
../../DtMmdb/StyleSheet/StyleSheetExceptions.C \
|
||||
../../DtMmdb/StyleSheet/SymTab.C \
|
||||
../../DtMmdb/StyleSheet/VariableTable.C \
|
||||
../../DtMmdb/StyleSheet/defParser.C \
|
||||
../../DtMmdb/StyleSheet/defToken.C \
|
||||
../../DtMmdb/StyleSheet/style.C \
|
||||
../../DtMmdb/StyleSheet/tokenStyle.C \
|
||||
../../DtMmdb/StyleSheet/RendererHCV.C
|
||||
BUILT_SOURCES += $(SPECFILES)
|
||||
|
||||
if LINUX
|
||||
libStyleSheet_a_SOURCES += ../../DtMmdb/StyleSheet/SSTemplates.C
|
||||
BUILT_SOURCES += SSTemplates.C
|
||||
endif
|
||||
|
||||
if BSD
|
||||
libStyleSheet_a_SOURCES += ../../DtMmdb/StyleSheet/SSTemplates.C
|
||||
BUILT_SOURCES += SSTemplates.C
|
||||
endif
|
||||
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libStyleSheet.la
|
||||
|
||||
libStyleSheet_la_CXXFLAGS = $(DTINFO_DEFINES) -I../../DtMmdb \
|
||||
-I../../DtMmdb/StyleSheet -I../../DtMmdb/dti_excs \
|
||||
-I../../DtMmdb/dti_cc -I$(BASE)
|
||||
|
||||
libStyleSheet_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,14 +1,22 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libapi.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
BASE = ../../DtMmdb/api
|
||||
BUILT_SOURCES = base.C info_base.C info_lib.C smart_ptr.C \
|
||||
transaction.C utility.C
|
||||
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libapi.la
|
||||
|
||||
libapi_la_CXXFLAGS = $(DTINFO_DEFINES) -I../../DtMmdb -I../../DtMmdb/misc \
|
||||
-I../../DtMmdb/dti_excs -I$(BASE) $(DTINFO_DEFINES)
|
||||
|
||||
libapi_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
|
||||
libapi_a_CXXFLAGS = -I../../DtMmdb -I../../DtMmdb/misc -I../../DtMmdb/dti_excs
|
||||
|
||||
libapi_a_SOURCES = ../../DtMmdb/api/base.C \
|
||||
../../DtMmdb/api/info_base.C \
|
||||
../../DtMmdb/api/info_lib.C \
|
||||
../../DtMmdb/api/smart_ptr.C \
|
||||
../../DtMmdb/api/transaction.C \
|
||||
../../DtMmdb/api/utility.C
|
||||
|
||||
@@ -1,9 +1,17 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libbtree.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/btree
|
||||
BUILT_SOURCES = mmdb_btree.C
|
||||
|
||||
libbtree_a_CXXFLAGS = -I../../DtMmdb -I../../DtMmdb/dti_excs
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
libbtree_a_SOURCES = ../../DtMmdb/btree/mmdb_btree.C
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libbtree.la
|
||||
|
||||
libbtree_la_CXXFLAGS = $(DTINFO_DEFINES) -I../../DtMmdb -I../../DtMmdb/dti_excs -I$(BASE)
|
||||
|
||||
libbtree_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,34 +1,35 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libbtree_berkeley.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/btree_berkeley
|
||||
BUILT_SOURCES = bt_close.c bt_conv.c bt_debug.c bt_delete.c bt_get.c \
|
||||
bt_open.c bt_overflow.c bt_page.c \
|
||||
bt_put.c bt_search.c bt_seq.c \
|
||||
bt_split.c bt_stack.c bt_utils.c \
|
||||
\
|
||||
mktemp.c realloc.c snprintf.c \
|
||||
\
|
||||
mpool.c \
|
||||
\
|
||||
db.c
|
||||
|
||||
libbtree_berkeley_a_CFLAGS = -DMEMMOVE -I../../DtMmdb \
|
||||
-I../../DtMmdb/btree_berkeley
|
||||
|
||||
libbtree_berkeley_a_SOURCES = ../../DtMmdb/btree_berkeley/bt_close.c \
|
||||
../../DtMmdb/btree_berkeley/bt_conv.c \
|
||||
../../DtMmdb/btree_berkeley/bt_debug.c \
|
||||
../../DtMmdb/btree_berkeley/bt_delete.c \
|
||||
../../DtMmdb/btree_berkeley/bt_get.c \
|
||||
../../DtMmdb/btree_berkeley/bt_open.c \
|
||||
../../DtMmdb/btree_berkeley/bt_overflow.c \
|
||||
../../DtMmdb/btree_berkeley/bt_page.c \
|
||||
../../DtMmdb/btree_berkeley/bt_put.c \
|
||||
../../DtMmdb/btree_berkeley/bt_search.c \
|
||||
../../DtMmdb/btree_berkeley/bt_seq.c \
|
||||
../../DtMmdb/btree_berkeley/bt_split.c \
|
||||
../../DtMmdb/btree_berkeley/bt_stack.c \
|
||||
../../DtMmdb/btree_berkeley/bt_utils.c \
|
||||
../../DtMmdb/btree_berkeley/mktemp.c \
|
||||
../../DtMmdb/btree_berkeley/realloc.c \
|
||||
../../DtMmdb/btree_berkeley/snprintf.c \
|
||||
../../DtMmdb/btree_berkeley/mpool.c \
|
||||
../../DtMmdb/btree_berkeley/db.c
|
||||
|
||||
if AIX
|
||||
else
|
||||
libbtree_berkeley_a_SOURCES += ../../DtMmdb/btree_berkeley/memmove.c
|
||||
if LINUX
|
||||
BUILT_SOURCES += memmove.c
|
||||
endif
|
||||
|
||||
if BSD
|
||||
BUILT_SOURCES += memmove.c
|
||||
endif
|
||||
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libbtree_berkeley.la
|
||||
|
||||
libbtree_berkeley_la_CFLAGS = $(DTINFO_DEFINES) -DMEMMOVE -I../../DtMmdb \
|
||||
-I../../DtMmdb/btree_berkeley -I$(BASE)
|
||||
|
||||
libbtree_berkeley_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,16 +1,20 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libcompression.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/compression
|
||||
BUILT_SOURCES = abs_agent.C zip.C huffman.C trie.C code.C lzss.C
|
||||
|
||||
libcompression_a_CXXFLAGS = -I../../DtMmdb -I../../DtMmdb/dti_excs
|
||||
PARSER_FILES = sgml.C ps.C
|
||||
BUILT_SOURCES += $(PARSER_FILES)
|
||||
|
||||
libcompression_a_SOURCES = ../../DtMmdb/compression/abs_agent.C \
|
||||
../../DtMmdb/compression/zip.C \
|
||||
../../DtMmdb/compression/huffman.C \
|
||||
../../DtMmdb/compression/trie.C \
|
||||
../../DtMmdb/compression/code.C \
|
||||
../../DtMmdb/compression/lzss.C \
|
||||
../../DtMmdb/compression/sgml.C \
|
||||
../../DtMmdb/compression/ps.C
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libcompression.la
|
||||
|
||||
libcompression_la_CXXFLAGS = $(DTINFO_DEFINES) -I../../DtMmdb -I../../DtMmdb/dti_excs -I$(BASE)
|
||||
|
||||
libcompression_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,11 +1,17 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libdiskhash.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/diskhash
|
||||
BUILT_SOURCES = disk_bucket.C bucket_array.C disk_hash.C
|
||||
|
||||
libdiskhash_a_CXXFLAGS = -I../../DtMmdb -I../../DtMmdb/dti_excs
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
libdiskhash_a_SOURCES = ../../DtMmdb/diskhash/disk_bucket.C \
|
||||
../../DtMmdb/diskhash/bucket_array.C \
|
||||
../../DtMmdb/diskhash/disk_hash.C
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libdiskhash.la
|
||||
|
||||
libdiskhash_la_CXXFLAGS = $(DTINFO_DEFINES) -I../../DtMmdb -I../../DtMmdb/dti_excs -I$(BASE)
|
||||
|
||||
libdiskhash_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,21 +1,19 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libdstr.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/dstr
|
||||
BUILT_SOURCES = set.C bset.C slist.C dlist_cell.C dlist.C heap.C \
|
||||
void_ptr_array.C void_ptr_stack.C memory_pool.C dstr_test.C \
|
||||
index_agent.C token_stack.C slist_char_ptr_cell.C
|
||||
|
||||
libdstr_a_CXXFLAGS = -I../../DtMmdb -I../../DtMmdb/dti_excs
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
libdstr_a_SOURCES = ../../DtMmdb/dstr/set.C \
|
||||
../../DtMmdb/dstr/bset.C \
|
||||
../../DtMmdb/dstr/slist.C \
|
||||
../../DtMmdb/dstr/dlist_cell.C \
|
||||
../../DtMmdb/dstr/dlist.C \
|
||||
../../DtMmdb/dstr/heap.C \
|
||||
../../DtMmdb/dstr/void_ptr_array.C \
|
||||
../../DtMmdb/dstr/void_ptr_stack.C \
|
||||
../../DtMmdb/dstr/memory_pool.C \
|
||||
../../DtMmdb/dstr/dstr_test.C \
|
||||
../../DtMmdb/dstr/index_agent.C \
|
||||
../../DtMmdb/dstr/token_stack.C \
|
||||
../../DtMmdb/dstr/slist_char_ptr_cell.C
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libdstr.la
|
||||
|
||||
libdstr_la_CXXFLAGS = $(DTINFO_DEFINES) -I../../DtMmdb -I../../DtMmdb/dti_excs -I$(BASE)
|
||||
|
||||
libdstr_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,15 +1,20 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libdti_cc.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/dti_cc
|
||||
BUILT_SOURCES = CC_Listbase.C cc_exceptions.C CC_String.C \
|
||||
CC_Tokenizer.C CC_Stack.C CC_Slist.C
|
||||
|
||||
libdti_cc_a_CXXFLAGS = -DEXPAND_TEMPLATES -I../../DtMmdb -I../../DtMmdb/dti_cc \
|
||||
-I../../DtMmdb/dti_excs
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
libdti_cc_a_SOURCES = ../../DtMmdb/dti_cc/CC_Listbase.C \
|
||||
../../DtMmdb/dti_cc/cc_exceptions.C \
|
||||
../../DtMmdb/dti_cc/CC_String.C \
|
||||
../../DtMmdb/dti_cc/CC_Tokenizer.C \
|
||||
../../DtMmdb/dti_cc/CC_Stack.C \
|
||||
../../DtMmdb/dti_cc/CC_Slist.C
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libdti_cc.la
|
||||
|
||||
libdti_cc_la_CXXFLAGS = $(DTINFO_DEFINES) -I../../DtMmdb \
|
||||
-I../../DtMmdb/dti_cc -I../../DtMmdb/dti_excs -I$(BASE)
|
||||
|
||||
libdti_cc_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,26 +1,19 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libdti_excs.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/dti_excs
|
||||
BUILT_SOURCES = Jump_Environment.C Exceptions.C Exception.C \
|
||||
Destructable.C terminate.C
|
||||
|
||||
libdti_excs_a_CXXFLAGS = -DCC_VERSION=30 -DCHECK_INITIALIZED \
|
||||
-I../../DtMmdb/dti_excs
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
if SOLARIS
|
||||
libdti_excs_a_CXXFLAGS += -DHAS_TERMINATE
|
||||
endif
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
if LINUX
|
||||
libdti_excs_a_CXXFLAGS += -DNATIVE_EXCEPTIONS
|
||||
endif
|
||||
noinst_LTLIBRARIES = libdti_excs.la
|
||||
|
||||
if BSD
|
||||
libdti_excs_a_CXXFLAGS += -DNATIVE_EXCEPTIONS
|
||||
endif
|
||||
libdti_excs_la_CXXFLAGS = $(DTINFO_DEFINES) -DCC_VERSION=30 -DCHECK_INITIALIZED \
|
||||
-I../../DtMmdb/dti_excs -I$(BASE)
|
||||
|
||||
libdti_excs_a_SOURCES = ../../DtMmdb/dti_excs/Jump_Environment.C \
|
||||
../../DtMmdb/dti_excs/Exceptions.C \
|
||||
../../DtMmdb/dti_excs/Exception.C \
|
||||
../../DtMmdb/dti_excs/Destructable.C \
|
||||
../../DtMmdb/dti_excs/terminate.C
|
||||
libdti_excs_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,11 +1,17 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libdynhash.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/dynhash
|
||||
BUILT_SOURCES = data_t.C imp_bucket.C imp_die.C
|
||||
|
||||
libdynhash_a_CXXFLAGS = -I../../DtMmdb -I../../DtMmdb/dti_excs
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
libdynhash_a_SOURCES = ../../DtMmdb/dynhash/data_t.C \
|
||||
../../DtMmdb/dynhash/imp_bucket.C \
|
||||
../../DtMmdb/dynhash/imp_die.C
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libdynhash.la
|
||||
|
||||
libdynhash_la_CXXFLAGS = $(DTINFO_DEFINES) -I../../DtMmdb -I../../DtMmdb/dti_excs -I$(BASE)
|
||||
|
||||
libdynhash_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,14 +1,20 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libhmphf.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/hmphf
|
||||
BUILT_SOURCES = buckets.C mphf_funcs.C mphf_hash_table.C params.C \
|
||||
pattern.C sorter.C
|
||||
|
||||
libhmphf_a_CXXFLAGS = -DPORTABLE_DB -I../../DtMmdb -I../../DtMmdb/dti_excs
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libhmphf.la
|
||||
|
||||
libhmphf_la_CXXFLAGS = $(DTINFO_DEFINES) -DPORTABLE_DB -I../../DtMmdb \
|
||||
-I../../DtMmdb/dti_excs -I$(BASE)
|
||||
|
||||
libhmphf_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
libhmphf_a_SOURCES = ../../DtMmdb/hmphf/buckets.C \
|
||||
../../DtMmdb/hmphf/mphf_funcs.C \
|
||||
../../DtMmdb/hmphf/mphf_hash_table.C \
|
||||
../../DtMmdb/hmphf/params.C \
|
||||
../../DtMmdb/hmphf/pattern.C \
|
||||
../../DtMmdb/hmphf/sorter.C
|
||||
|
||||
@@ -1,17 +1,20 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libindex.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/index
|
||||
BUILT_SOURCES = btree_index.C dyn_disk_index.C dyn_index.C \
|
||||
dyn_memory_index.C fast_mphf.C hash.C index.C \
|
||||
inv_lists.C mphf_index.C
|
||||
|
||||
libindex_a_CXXFLAGS = -DPORTABLE_DB -I../../DtMmdb -I../../DtMmdb/dti_excs
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
libindex_a_SOURCES = ../../DtMmdb/index/btree_index.C \
|
||||
../../DtMmdb/index/dyn_disk_index.C \
|
||||
../../DtMmdb/index/dyn_index.C \
|
||||
../../DtMmdb/index/dyn_memory_index.C \
|
||||
../../DtMmdb/index/fast_mphf.C \
|
||||
../../DtMmdb/index/hash.C \
|
||||
../../DtMmdb/index/index.C \
|
||||
../../DtMmdb/index/inv_lists.C \
|
||||
../../DtMmdb/index/mphf_index.C
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libindex.la
|
||||
|
||||
libindex_la_CXXFLAGS = $(DTINFO_DEFINES) -DPORTABLE_DB -I../../DtMmdb -I../../DtMmdb/dti_excs \
|
||||
-I$(BASE)
|
||||
|
||||
libindex_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,13 +1,18 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libmgrs.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/mgrs
|
||||
BUILT_SOURCES = managers.C misc.C query_mgr.C template_mgr.C
|
||||
|
||||
libmgrs_a_CXXFLAGS = -DCOMPACTED_DISK_REP -DPORTABLE_DB -I../../DtMmdb \
|
||||
-I../../DtMmdb/dti_excs
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
libmgrs_a_SOURCES = ../../DtMmdb/mgrs/managers.C \
|
||||
../../DtMmdb/mgrs/misc.C \
|
||||
../../DtMmdb/mgrs/query_mgr.C \
|
||||
../../DtMmdb/mgrs/template_mgr.C
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libmgrs.la
|
||||
|
||||
libmgrs_la_CXXFLAGS = $(DTINFO_DEFINES) -DCOMPACTED_DISK_REP -DPORTABLE_DB -I../../DtMmdb \
|
||||
-I../../DtMmdb/dti_excs -I$(BASE)
|
||||
|
||||
libmgrs_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,9 +1,17 @@
|
||||
MAINTAINERCLEANFILES= Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libmisc.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/misc
|
||||
BUILT_SOURCES = unique_id.c
|
||||
|
||||
libmisc_a_CFLAGS = -DPORTABLE_DB
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
libmisc_a_SOURCES = ../../DtMmdb/misc/unique_id.c
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libmisc.la
|
||||
|
||||
libmisc_la_CFLAGS = $(DTINFO_DEFINES) -DPORTABLE_DB -I$(BASE)
|
||||
|
||||
libmisc_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,25 +1,22 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libobject.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/object
|
||||
BUILT_SOURCES = composite.C compressed_pstring.C cset.C dl_list.C \
|
||||
dl_list_cell.C handler.C integer.C \
|
||||
long_pstring.C oid.C oid_list.C oid_t.C \
|
||||
primitive.C pstring.C random_gen.C root.C \
|
||||
short_list.C tuple.C
|
||||
|
||||
libobject_a_CXXFLAGS = -DPORTABLE_DB -I../../DtMmdb -I../../DtMmdb/dti_excs
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
libobject_a_SOURCES = ../../DtMmdb/object/composite.C \
|
||||
../../DtMmdb/object/compressed_pstring.C \
|
||||
../../DtMmdb/object/cset.C \
|
||||
../../DtMmdb/object/dl_list.C \
|
||||
../../DtMmdb/object/dl_list_cell.C \
|
||||
../../DtMmdb/object/handler.C \
|
||||
../../DtMmdb/object/integer.C \
|
||||
../../DtMmdb/object/long_pstring.C \
|
||||
../../DtMmdb/object/oid.C \
|
||||
../../DtMmdb/object/oid_list.C \
|
||||
../../DtMmdb/object/oid_t.C \
|
||||
../../DtMmdb/object/primitive.C \
|
||||
../../DtMmdb/object/pstring.C \
|
||||
../../DtMmdb/object/random_gen.C \
|
||||
../../DtMmdb/object/root.C \
|
||||
../../DtMmdb/object/short_list.C \
|
||||
../../DtMmdb/object/tuple.C
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libobject.la
|
||||
|
||||
libobject_la_CXXFLAGS = $(DTINFO_DEFINES) -DPORTABLE_DB -I../../DtMmdb -I../../DtMmdb/dti_excs \
|
||||
-I$(BASE)
|
||||
|
||||
libobject_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,33 +1,26 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = liboliasdb.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/oliasdb
|
||||
BUILT_SOURCES = asciiIn_filters.C collectionIterator.C dlp_hd.C \
|
||||
dlp_test.C doc_hd.C doc_test.C graphic_hd.C \
|
||||
graphic_test.C loc_test.C locator_hd.C mark.C \
|
||||
mark_base.C mark_test.C mmdb.C node_hd.C \
|
||||
node_test.C olias_funcs.C olias_test.C \
|
||||
stylesheet_hd.C stylesheet_test.C toc_hd.C \
|
||||
toc_test.C user_base.C
|
||||
|
||||
liboliasdb_a_CXXFLAGS = -DNO_DB_LOCK -DCDE_NEXT -I../../DtMmdb \
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = liboliasdb.la
|
||||
|
||||
liboliasdb_la_CXXFLAGS = $(DTINFO_DEFINES) -DNO_DB_LOCK -DCDE_NEXT -I../../DtMmdb \
|
||||
-I../../DtMmdb/misc -I../../DtMmdb/dti_excs \
|
||||
-I../../DtMmdb/dti_cc -I../.. -I../../DtMmdb/oliasdb
|
||||
-I../../DtMmdb/dti_cc -I../.. -I../../DtMmdb/oliasdb \
|
||||
-I$(BASE)
|
||||
|
||||
liboliasdb_a_SOURCES = ../../DtMmdb/oliasdb/asciiIn_filters.C \
|
||||
../../DtMmdb/oliasdb/collectionIterator.C \
|
||||
../../DtMmdb/oliasdb/dlp_hd.C \
|
||||
../../DtMmdb/oliasdb/dlp_test.C \
|
||||
../../DtMmdb/oliasdb/doc_hd.C \
|
||||
../../DtMmdb/oliasdb/doc_test.C \
|
||||
../../DtMmdb/oliasdb/graphic_hd.C \
|
||||
../../DtMmdb/oliasdb/graphic_test.C \
|
||||
../../DtMmdb/oliasdb/loc_test.C \
|
||||
../../DtMmdb/oliasdb/locator_hd.C \
|
||||
../../DtMmdb/oliasdb/mark.C \
|
||||
../../DtMmdb/oliasdb/mark_base.C \
|
||||
../../DtMmdb/oliasdb/mark_test.C \
|
||||
../../DtMmdb/oliasdb/mmdb.C \
|
||||
../../DtMmdb/oliasdb/node_hd.C \
|
||||
../../DtMmdb/oliasdb/node_test.C \
|
||||
../../DtMmdb/oliasdb/olias_funcs.C \
|
||||
../../DtMmdb/oliasdb/olias_test.C \
|
||||
../../DtMmdb/oliasdb/stylesheet_hd.C \
|
||||
../../DtMmdb/oliasdb/stylesheet_test.C \
|
||||
../../DtMmdb/oliasdb/toc_hd.C \
|
||||
../../DtMmdb/oliasdb/toc_test.C \
|
||||
../../DtMmdb/oliasdb/user_base.C
|
||||
liboliasdb_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,19 +1,20 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libschema.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/schema
|
||||
BUILT_SOURCES = desc.C store_desc.C object_dict.C \
|
||||
stored_object_desc.C index_desc.C inv_desc.C \
|
||||
agent_desc.C container_desc.C sheet.C token.C
|
||||
|
||||
libschema_a_CXXFLAGS = -DPORTABLE_DB -I../../DtMmdb -I../../DtMmdb/dti_excs \
|
||||
-I../../DtMmdb/misc
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
libschema_a_SOURCES = ../../DtMmdb/schema/desc.C \
|
||||
../../DtMmdb/schema/store_desc.C \
|
||||
../../DtMmdb/schema/object_dict.C \
|
||||
../../DtMmdb/schema/stored_object_desc.C \
|
||||
../../DtMmdb/schema/index_desc.C \
|
||||
../../DtMmdb/schema/inv_desc.C \
|
||||
../../DtMmdb/schema/agent_desc.C \
|
||||
../../DtMmdb/schema/container_desc.C \
|
||||
../../DtMmdb/schema/sheet.C \
|
||||
../../DtMmdb/schema/token.C
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libschema.la
|
||||
|
||||
libschema_la_CXXFLAGS = $(DTINFO_DEFINES) -DPORTABLE_DB -I../../DtMmdb -I../../DtMmdb/dti_excs \
|
||||
-I../../DtMmdb/misc -I$(BASE)
|
||||
|
||||
libschema_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,22 +1,21 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libstorage.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/storage
|
||||
BUILT_SOURCES = abs_storage.C chunks_index.C heap_comp_funcs.C lru.C \
|
||||
page.C page_cache.C page_rep.C page_storage.C \
|
||||
rep_cell.C rep_policy.C store_test.C \
|
||||
unixf_storage.C version.C vm_storage.C
|
||||
|
||||
libstorage_a_CXXFLAGS = -DPORTABLE_DB -I../../DtMmdb -I../../DtMmdb/dti_excs
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
libstorage_a_SOURCES = ../../DtMmdb/storage/abs_storage.C \
|
||||
../../DtMmdb/storage/chunks_index.C \
|
||||
../../DtMmdb/storage/heap_comp_funcs.C \
|
||||
../../DtMmdb/storage/lru.C \
|
||||
../../DtMmdb/storage/page.C \
|
||||
../../DtMmdb/storage/page_cache.C \
|
||||
../../DtMmdb/storage/page_rep.C \
|
||||
../../DtMmdb/storage/page_storage.C \
|
||||
../../DtMmdb/storage/rep_cell.C \
|
||||
../../DtMmdb/storage/rep_policy.C \
|
||||
../../DtMmdb/storage/store_test.C \
|
||||
../../DtMmdb/storage/unixf_storage.C \
|
||||
../../DtMmdb/storage/version.C \
|
||||
../../DtMmdb/storage/vm_storage.C
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libstorage.la
|
||||
|
||||
libstorage_la_CXXFLAGS = $(DTINFO_DEFINES) -DPORTABLE_DB \
|
||||
-I../../DtMmdb -I../../DtMmdb/dti_excs -I$(BASE)
|
||||
|
||||
libstorage_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -1,31 +1,20 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LIBRARIES = libutility.a
|
||||
include $(top_srcdir)/programs/dtinfo/dtinfo_env.mk
|
||||
|
||||
AUTOMAKE_OPTIONS = no-dependencies
|
||||
BASE = ../../DtMmdb/utility
|
||||
BUILT_SOURCES = atoi_fast.C atoi_larson.C atoi_pearson.C \
|
||||
atomic_lock.C buffer.C filter.C funcs.C mmdb_exception.C \
|
||||
ostring.C pm_random.C randomize.C rw_lock.C xtime.C
|
||||
|
||||
libutility_a_CXXFLAGS = -DPORTABLE_DB -I../../DtMmdb -I../../DtMmdb/dti_excs \
|
||||
-I../../DtMmdb/misc
|
||||
$(BUILT_SOURCES):
|
||||
$(LN_S) $(BASE)/$@ $@
|
||||
|
||||
libutility_a_SOURCES = ../../DtMmdb/utility/funcs.C \
|
||||
../../DtMmdb/utility/ostring.C \
|
||||
../../DtMmdb/utility/pm_random.C \
|
||||
../../DtMmdb/utility/atoi_pearson.C \
|
||||
../../DtMmdb/utility/xtime.C \
|
||||
../../DtMmdb/utility/buffer.C \
|
||||
../../DtMmdb/utility/atoi_larson.C \
|
||||
../../DtMmdb/utility/atomic_lock.C \
|
||||
../../DtMmdb/utility/rw_lock.C \
|
||||
../../DtMmdb/utility/atoi_fast.C \
|
||||
../../DtMmdb/utility/filter.C \
|
||||
../../DtMmdb/utility/mmdb_exception.C \
|
||||
../../DtMmdb/utility/randomize.C \
|
||||
../../DtMmdb/utility/streambuf.C \
|
||||
../../DtMmdb/utility/charbuf.C \
|
||||
../../DtMmdb/utility/filebuf.C \
|
||||
../../DtMmdb/utility/string.C \
|
||||
../../DtMmdb/utility/stringstream.C \
|
||||
../../DtMmdb/utility/iostream.C \
|
||||
../../DtMmdb/utility/fstream.C \
|
||||
../../DtMmdb/utility/stream.C \
|
||||
../../DtMmdb/utility/ios.C
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
noinst_LTLIBRARIES = libutility.la
|
||||
|
||||
libutility_la_CXXFLAGS = $(DTINFO_DEFINES) -DPORTABLE_DB \
|
||||
-I../../DtMmdb -I../../DtMmdb/dti_excs -I../../DtMmdb/misc -I$(BASE)
|
||||
|
||||
libutility_la_SOURCES = $(BUILT_SOURCES)
|
||||
|
||||
@@ -10,6 +10,8 @@ dfiles_SOURCES = dfiles.c
|
||||
|
||||
pmaker_SOURCES = pmaker.c
|
||||
|
||||
# JET - this one migth need to be regenned via the lex file someday...
|
||||
# Maybe it should always be regenned?
|
||||
msgsets_SOURCES = msgsets.C
|
||||
|
||||
treeres: treeres.src
|
||||
|
||||
@@ -705,9 +705,10 @@ ScanNLSDir(char *dirname)
|
||||
continue;
|
||||
|
||||
if (locale[0] != '.' &&
|
||||
LANGLISTSIZE > (int) (strlen(languageList)+strlen(locale)+2));
|
||||
LANGLISTSIZE > (int) (strlen(languageList)+strlen(locale)+2))
|
||||
{
|
||||
(void) sprintf(locale_path, "%s/%s", dirname, locale);
|
||||
(void) snprintf(locale_path, MAXPATHLEN, "%s/%s",
|
||||
dirname, locale);
|
||||
retval = stat(locale_path, &locale_stat);
|
||||
|
||||
if (0 == retval && S_ISDIR(locale_stat.st_mode))
|
||||
|
||||
@@ -417,9 +417,14 @@ DialogManager::forceUpdate( Widget w )
|
||||
if ( !w )
|
||||
return;
|
||||
XtAppContext cxt=XtWidgetToApplicationContext( w );
|
||||
for (diashell=w;!XtIsShell(diashell);diashell=XtParent(diashell));
|
||||
for ( topshell=diashell;XtIsTopLevelShell( topshell );
|
||||
topshell = XtParent( topshell ) );
|
||||
for (diashell=w;
|
||||
!XtIsShell(diashell);
|
||||
diashell=XtParent(diashell))
|
||||
;
|
||||
for ( topshell=diashell;
|
||||
XtIsTopLevelShell( topshell );
|
||||
topshell = XtParent( topshell ) )
|
||||
;
|
||||
|
||||
// if (XtIsRealized(diashell) && XtIsRealized(topshell)){
|
||||
dpy=XtDisplay(diashell);
|
||||
|
||||
@@ -4003,8 +4003,8 @@ VacationCmd::parseVacationMessage()
|
||||
for (hnd = env->getFirstHeader(error, &name, value);
|
||||
error.isNotSet() && hnd;
|
||||
hnd = env->getNextHeader(error, hnd, &name, value)) {
|
||||
|
||||
if (!strcmp(name, "Subject") == 0) {
|
||||
|
||||
if (strcmp(name, "Subject")) {
|
||||
continue;
|
||||
}
|
||||
else {
|
||||
|
||||
@@ -2050,8 +2050,8 @@ DtMail::MailRc::expand(char *name)
|
||||
close(pivec[1]);
|
||||
l = read(pivec[0], xname, LINESIZE);
|
||||
close(pivec[0]);
|
||||
while (wait(&s) != pid);
|
||||
;
|
||||
while (wait(&s) != pid)
|
||||
;
|
||||
s &= 0377;
|
||||
if (s != 0 && s != SIGPIPE) {
|
||||
fprintf(stderr, "Echo failed\n");
|
||||
|
||||
@@ -789,8 +789,9 @@ DtMailServer::retrieve_messages(DtMailEnv &error)
|
||||
if (ok != DTME_MailServerAccess_SocketIOError)
|
||||
if (ok == DTME_NoError)
|
||||
ok = ptrans_quit();
|
||||
else
|
||||
else {
|
||||
(void) ptrans_quit();
|
||||
}
|
||||
vtalarm_setitimer(0);
|
||||
SockClose(_sockfp);
|
||||
_sockfp = NULL;
|
||||
|
||||
@@ -984,9 +984,9 @@ MIMEBodyPart::parameterValue(
|
||||
vtok++;
|
||||
|
||||
if (isCaseSensitive)
|
||||
rtn = strncmp(vtok, parameter, sizeof(parameter));
|
||||
rtn = strncmp(vtok, parameter, strlen(vtok));
|
||||
else
|
||||
rtn = strncasecmp(vtok, parameter, sizeof(parameter));
|
||||
rtn = strncasecmp(vtok, parameter, strlen(vtok));
|
||||
|
||||
if (0 == rtn)
|
||||
{
|
||||
|
||||
@@ -280,7 +280,7 @@ PrintSetupDestroy(PrintSetup *pSetup)
|
||||
|
||||
if (pSetup->docName)
|
||||
free(pSetup->docName);
|
||||
if (pSetup->dtprintSetup);
|
||||
if (pSetup->dtprintSetup)
|
||||
_psReleasePrintSetupDialog(pSetup);
|
||||
XtFree((char*) pSetup);
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -626,7 +626,7 @@ callCancels( void )
|
||||
XtCallCallbacks(style.startupDialog, XmNcallback, &CancelBut);
|
||||
}
|
||||
|
||||
if (dialogStates)
|
||||
if (dialogStates[0])
|
||||
_DtAddToResource(style.display, dialogStates);
|
||||
|
||||
calledAlready = True;
|
||||
|
||||
@@ -234,7 +234,7 @@ BuildLockMaskSequence(void)
|
||||
* funny because we skip the case of all the
|
||||
* bits cleared.
|
||||
*/
|
||||
run = (0x1 << bit-1); /* number of consecutive masks to set
|
||||
run = (0x1 << (bit-1)); /* number of consecutive masks to set
|
||||
bits in */
|
||||
bit_on = False; /* are we setting bits or not? */
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
# process the app-defaults files...
|
||||
|
||||
#NOTYET - Dtinfo
|
||||
|
||||
|
||||
BUILT_SOURCES = Dthelpview Dtimsstart Dtlogin Dthello Dtsession \
|
||||
Dtscreen Dtwm Dtfile Dtstyle Dtpad Dticon Dtcreate Dtcalc \
|
||||
Dtcm Dtterm Dtmail Dtbuilder Dtudcfonted Dt
|
||||
Dtcm Dtterm Dtmail Dtbuilder Dtudcfonted Dt Dtinfo
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
|
||||
@@ -1,19 +1,17 @@
|
||||
# process the message files...
|
||||
|
||||
# NOTYET dtinfo.cat dtinfo_start.cat
|
||||
|
||||
# BROKEN (always has been): fmt_tbl.cat
|
||||
|
||||
BUILT_SOURCES = Xm.cat Mrm.cat Uil.cat DtHelp.cat \
|
||||
DtMail.cat DtPrint.cat DtWidget.cat MotifApp.cat \
|
||||
SUNW_TOOLTALK.cat dt.cat dtact.cat dtbuilder.cat dtcalc.cat \
|
||||
dtcm.cat dtcodegen.cat dtconfig.cat dtcopy.cat dtcreate.cat \
|
||||
dtfile.cat dthello.cat dthelpgen.cat dthelpprint.cat dticon.cat \
|
||||
dtimsstart.cat dtksh.cat \
|
||||
dtlogin.cat dtlp.cat dtmailopts.cat dtpad.cat dtpdm.cat \
|
||||
dtpdmd.cat dtprintinfo.cat dtscreen.cat dtsearch.cat \
|
||||
BUILT_SOURCES = Xm.cat Mrm.cat Uil.cat DtHelp.cat DtMail.cat \
|
||||
DtPrint.cat DtWidget.cat MotifApp.cat SUNW_TOOLTALK.cat dt.cat \
|
||||
dtact.cat dtbuilder.cat dtcalc.cat dtcm.cat dtcodegen.cat \
|
||||
dtconfig.cat dtcopy.cat dtcreate.cat dtfile.cat dthello.cat \
|
||||
dthelpgen.cat dthelpprint.cat dticon.cat dtimsstart.cat \
|
||||
dtksh.cat dtlogin.cat dtlp.cat dtmailopts.cat dtpad.cat \
|
||||
dtpdm.cat dtpdmd.cat dtprintinfo.cat dtscreen.cat dtsearch.cat \
|
||||
dtsession.cat dtstyle.cat dtterm.cat dttypes.cat dtwm.cat \
|
||||
dtudcexch.cat dtudcfonted.cat libdtcm.cat libDtMail.cat
|
||||
dtudcexch.cat dtudcfonted.cat libdtcm.cat libDtMail.cat \
|
||||
dtinfo.cat dtinfo_start.cat
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user