Submitted by Anonymous on Wed, 01/02/2002 - 14:16. Developers
First the X11 config files have a bug.
the file
linux.cf, which when following the directions found in README.ics is
linked into $(MOTIFBUILDDIR)/config/cf/linux.cf
line 614 reads # define OptimizedCDebugFlags DefaultGcc2i386Opt
DefaultGcci386Opt is no longer defined. you need to change this to
# define OptimizedCDebugFlags -O2
This will help the build problem found in imake.o
There are two other errors which occure in OpenMotif and need to be
fixed
1)
the Imakefile file in the directory
$(MOTIFBUILDDIR)/config/Imakefile
line 9 reads
SUBDIRS = cf $(BOOTSTRAPSUBDIRS) util
line 9 should read
SUBDIRS = $(BOOTSTRAPSUBDIRS) util
2)
the Imakefile file in the directory
$(MOTIFBUILDDIR)/localized/Imakefile
Line 8 reads
ALL_DIRS = $(SUBDIRS)
C
ja_JP.dt-eucJP
it_IT.ISO8859-1
de_DE.ISO8859-1
es_ES.ISO8859-1
fr_FR.ISO8859-1
it should read
ALL_DIRS = $(SUBDIRS)
ja_JP.dt-eucJP
it_IT.ISO8859-1
de_DE.ISO8859-1
es_ES.ISO8859-1
fr_FR.ISO8859-1
Previously these bugs were reported but they didnt stop the compile, now
they do. you can skip
changing the Imakefiles`s by compiling with the -k flag "make -k World".
but that is never recomended
as other errors might be missed.
My appologies, the formating didn`t come out like i wanted.