This is a minor issue in that turning on DEBUG does not slow XEMACS
performance so far as I can tell, but --without-debug should not break
the build.
Tracker Message-ID: <1265375405.01.0.58000002673.issue668@xemacs.org>
the staticpro_* routines are defined in src/alloc.c and wrapped in an
#ifdef XEMACS_DEBUG. If 21.5 is compiled configured with --without-
debug, the routines are never compiled into alloc.o. However, numerous
files now call staticpro_1, and one calls staticpro_nodump_1. Those
calls should be wrapped in an #ifdef, or perhaps stub routines could be
added to alloc.c for cases where XEMACS_DEBUG is not defined.
|