Get the binary of the WPA Supplicant daemon. If you trust me, you can download a binary I built (I downloaded wpa_supplicant-lnxt2003121400.tar.gz from Linuxant, compiled with gcc 3.3.3, linked statically against libdnet 1.7, you will need to have libpcap.so.0.7 in order to run it). If you don't trust me, you can build your own from source:
tar -xvzopf wpa_supplicant-lnxt2003121400.tar.gz
cd wpa_supplicant-lnxt2003121400
make
On Debian unstable, it is confusing to do so, because there is already a package called libdnet (for DECnet) but that is not the same libdnet the daemon needs, so you need to download and build the libdnet the daemon wants from source first:
tar -xvzopf libdnet-1.7.tar.gz
cd libdnet-1.7
./configure --prefix=/opt/libdnet-1.7 --exec-prefix=/opt/libdnet-1.7
make
su
make install
ln -s /opt/libdnet-1.7/include/dnet.h /usr/include/dnet.h
ln -s /opt/libdnet-1.7/include/dnet /usr/include/dnet
ln -s /opt/libdnet-1.7/lib/libdnet.a /usr/lib/libdnet.a
exit