[HACK-AROUND] Re: OpenOffice build crashes the compiler
Perry Hutchison
perryh at pluto.rain.com
Tue Sep 12 12:50:39 PDT 2006
This hack presumably results in a broken slidesorter, but at least
Writer seems to work (after a fashion), and that's all I really need.
Since the *.obj are just empty sentinel files indicating that the
corresponding *.o have been built, this
# cd /usr/ports/editors/openoffice.org-2.0
# touch work/OOD680_m1/sd/unxfbsdi.pro/slo/SlideSorterView.obj
allows a rebuild to start *after* the failing compilation, instead
of reattempting it (and crashing again). The missing module results
in an undefined symbol in libsd680fi.so; to keep that from stopping
the build, apply this hack to work/OOD680_m1/solenv/bin/checkdll.sh:
*** checkdll.sh.orig Wed Apr 26 07:42:21 2006
--- checkdll.sh Wed Apr 26 07:42:21 2006
***************
*** 83,89 ****
esac
$checkdll "$*"
! if [ $? -ne 0 ]; then exit 1 ; fi
for parameter in $*; do
library=$parameter;
--- 83,90 ----
esac
$checkdll "$*"
! # message has been printed, but don't kill the build
! # if [ $? -ne 0 ]; then exit 1 ; fi
for parameter in $*; do
library=$parameter;
More information about the freebsd-questions
mailing list