1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

Get tttypes installed correctly.

There is a problem with CPP_PROGRAM - using $CPP or $GENCPP (tradcpp)
always fails in tt_type_comp with the error:

"nclude ", line 8: syntax error

If I define it to /lib/cpp (previous hardcoded value) then it seems to
work fine.  Only the dtinfo and dtinfo_start ptypes use #include, and
therefore show this error.  Needs investigation.
This commit is contained in:
Jon Trulson 2019-12-02 19:59:44 -07:00
parent 0cc0766cbd
commit cdc9eae583
2 changed files with 6 additions and 1 deletions

View file

@ -12,7 +12,7 @@ mp_types_gram.h:
bin_PROGRAMS = tt_type_comp
tt_type_comp_CXXFLAGS = -I../../lib -I../../slib \
$(TT_VERSION_DEFINE) -DCPP_PROGRAM="\"$(CPP)\""
$(TT_VERSION_DEFINE) -DCPP_PROGRAM="\"$(GENCPP)\""
tt_type_comp_SOURCES = mp_type_comp.C mp_types_table.C \
frozen.mp_types_lex.C frozen.mp_types_gram.C

View file

@ -6,6 +6,8 @@ MAINTAINERCLEANFILES = Makefile.in
SUFFIXES: .ptype .done
# FIXME - dtinfo ones use #include which seems to fail with syntax error...
LOCALDEPFILES = \
dtfile.done \
dticon.done \
@ -20,6 +22,9 @@ LOCALDEPFILES = \
BUILT_SOURCES = types.xdr
CLEANFILES = *.done types.xdr .tt_lock
tttypesdir = $(CDE_INSTALLATION_TOP)/appconfig/tttypes
dist_tttypes_DATA = $(BUILT_SOURCES)
types.xdr: $(LOCALDEPFILES)
TT_TYPE_COMP = $(top_builddir)/lib/tt/bin/tt_type_comp/tt_type_comp