I've installed it in my faculty account

The system uses Mandrake 9.2, without the devel packages, so i had to compile and install wxWidgets, curl and libcryptopp on my account (had to anyway, since wxWidgets are linked against GTK2).
For that, i added --prefix=[dir on account] to install them in the dir i wanted them, and set LD_LIBRARY_PATH for that directory.
Tried 1.2.6, 2.0 R1,R2 and R3.
Warning: R3 configure is broken, due to the changes made to process curl arguments; libcrypto* no longer gets -L from curl and so make failed. Had to add:
LIBS="$LIBS -L[dir of libcrypto]"
to the top of configure.in and run autoconf. Also, an argument given by configure if libcrypto* isnt found, "--with-crypto-lib", isnt implemented, nor in configure --help.
Question: automake fails because it cant find [config.h] in AM_CONFIG_HEADER([config.h]), couldnt translate it.
Done:
aclocal -I m4
autoconf
automake
Am i missing some step? (still learning gnu build system)