I found the problem. The get_host_name() function in util.c only
returns the first portion of the hostname. That is, mine is
"Mjmh3.net.utulsa.edu", and it just returns "Mjmh3". Adding
"net.utulsa.edu" to my list of domains to search allows the app to
start. Alternatively, editing the source to replace:
ptr = strtok (hostname, ".");
with
ptr = hostname;
fixes things. Is the current behavior appropriate? Should I take this
to the Pan mailing list? (also, I'd still like to know how to set up a
debug build if anyone knows)
--Stephen