Basic Installation
==================

wap11gui relies on ucd-snmp to communicate with the WAP11. Currently, the
configuration system doesn't check for a proper installation of ucd-snmp. If
the compilation fails because of missing header files in ucd-snmp/, try
installing it.

In order for wap11gui to find its MIB file (AT76C510-MIB.txt), the MIB file
must be installed where other MIB files on your system are. On a RedHat
system, that's /usr/share/snmp/mibs. Alternatively, you should be able to
put it anywhere you like, and reconfigure wap11gui using a command line like:

./configure --with-mibsdir="/home/myself/mibs"

Workarounds For Common Problems
===============================

* GCC 2.95.2 doesn't have the <sstream> include file. You can find a copy in
  the patches/ subdirectory. If your compile fails because you don't have
  a copy of sstream installed on your system, just copy patches/sstream to
  wap11gui/ and recompile.
* If your system doesn't have ucd-snmp, but has the newer net-snmp, instead,
  wap11gui won't compile as shipped. Editing wap11config.cpp, and changing
  all the ucd-snmp/ strings to net-snmp/ in the include statements is reported
  to work. You'll have to do the same in wap11config.h. I'm planning to modify
  configure so it detects which package is installed, and add its directory
  to the include path before release 1.0, but this should work for now.