New Code!
Postoffice has been pushed up to version 1.4.8 with the addition of a couple of fixes for Xcode on MacOS 10.5 :
- On other systems,
INT_MAX
was defined somewhere else in my maze of#include
files. 10.5 must have done a headerfile cleanup, because the old maze of headers just wasn’t doing it anymore. I fixed this by explicitly includinglimits.h
in the modules where I neededINT_MAX
. - Also, and more mysteriously, in the
AC_SUB
function, theechononl()
function (defined as$ac_echo "${@}$ac_echo_nonl"
) would, if$@
was nil, emit a^?
. No, I don’t know why, so I fixed it by havingAC_SUB
call a regularecho
directly instead ofechononl
ing out a bunch of substrings.
It’s not tested (much) yet, because it’s just a header file and a configuration tweak that generates the same output as the previous version, but it’s still New Code! for those who might want it.