- pkgdata will still generate a dll (not a problem if you use files or the
mappable archive).
- because of referecences to ostream in ustring, the linker wants to resolve
these symbols, forcing us to use a C++ compiler to link C programs. That is
bad and need to be resolved.
- if you build static, then reconfigure w/o them and do make clean, the
static libraries will be left over.
Static is controlled by --enable-static. Shared libraries can be disabled
with --disable-shared.
X-SVN-Rev: 2494
!@()$#&!)@$ make will stop. Here's the short story: on Unix system returns
the status code in the *upper 8 bits* of a 16 bit value, plus some magic
values. If you don't shift the return value right 8 bits, and return that,
then the calling process won't see the error, because it will only see the
low 8 bits (which don't make sense, the data being in the upper 8 bits).
This is a common mistake people do when using system.
Don't ask how long it took me to notice that pkgdata failed
to stop the makefiles, I'm too upset right now...
X-SVN-Rev: 2156
in platform.h.in, and hardcode it to "nmake" in pwin32.h and "gmake" in
pos400.h and pos2.h. Then use U_MAKE to define the default make command in
pkgdata.c, if there is no MAKE env variable.
X-SVN-Rev: 1793