Okay -- I've got this working. Here's what it took (assuming aspell-.33.7.1):1. CHANGE lib/readonly_ws.cc as follows:
replace return sysconf (_SC_PAGESIZE);
with return getpagesize();
2. CHANGE filter/repl.cc as follows:
add:
#include "single_repl.hh"
#include "hash_repl-t.hh"
#include "substr_repl-t.hh"
#include "repl_func.hh"
replace: #include "hash_repl-p.hh"
with: //#include "hash_repl-p.hh"
3. run "configure" like this:
./configure --disable-curses
... that did it for me on Mac OS X Server 10.1.
-Clay